Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
4k views

Camera.Parameters.FLASH_MODE_TORCH replacement for Android 2.1

I am trying to write an app that requires the LED flash to go into torch mode. The problem is, Android 2.1 does not support this mode and therefore I cannot support the platform yet. Wouldn't be an ...
3
votes
2answers
338 views

Eclipse IDE - Background color

As you all probably know, the default is plain white or should I say, glowing-eye-killer-white. I'm looking for a color scheme to make it more eye friendly, does anyone know one? (Yes tried Google ...
3
votes
1answer
336 views

How do I get code coverage of Perl CGI script when executed by Selenium?

I'm using Eclipse EPIC IDE to write some Perl CGI scripts which call some Perl modules that I have also written. The EPIC IDE lets me configure a Perl CGI "run configuration" which runs my CGI ...
3
votes
1answer
467 views

Why does the EPIC eclipse plugin not show any info in “Explain Errors/Warnings”?

I use the "EPIC" plugin to Eclipse for Perl development, but in the "Explain Errors/Warnings" view there's no info at all, even though I have some compilation errors. Do I need to do anything special ...
2
votes
1answer
104 views

Eclipse EPIC Plug-in and auto-completion/content assist on passed complex objects?

SO community, Is there a best practice coding standard on how to consistently get the auto-completion / content assist working on methods of a Perl Module when passed into a method. For example: sub ...
2
votes
1answer
131 views

Unable to view locals in Eclipse + EPIC

I just installed the Perl EPIC plugin for Eclipse 3.7. The debugger itself is working fine and I can step through my code. However I am unable to see any variables. Eclipse is reporting this error in ...
2
votes
1answer
205 views

Why is E-P-I-C unable to detect PadWalker?

I have Eclipse (3.5-32) on my Unix machine. I have installed E-P-I-C updates for the stable 0.5.x and PadWalker (1.5). Since I am a local user with no sudo rights I have installed PadWalker in a ...
2
votes
1answer
237 views

LLVM compiler infrastructure for VLIW architectures

Do you know how strong VLIW architectures support exists in LLVM compiler infrastructure? Are there good documents/slides materials on this?
2
votes
2answers
795 views

How can I run Perl test cases in Eclipse using EPIC?

I am using eclipse EPIC (Perl plug-in) to run my Perl scripts. The scripts are running fine. but I want group my scripts and run together at a go. How can I do this? The scripts I am running are test ...
2
votes
4answers
1k views

Are there any decent Perl plugins for Eclipse?

I'm using EPIC, but it seems to have some drawbacks. Are there any other Perl plugins for Eclipse?
1
vote
2answers
311 views

Why does my Perl unit test fail in EPIC but work in the debugger?

Has anyone ever experienced a unit test that fails and when they tried to debug it to find out where the failure was occurring, the unit test succeeds when running the code in the debugger? I'm ...
1
vote
3answers
1k views

How do I enable all EPIC projects to use Perl's @INC?

I have a set of intra-dependent Perl projects and would like to use EPIC to work on them. I created one Epic (Eclipse) project for each of my projects and I set dependencies among them using ...
0
votes
0answers
14 views

How to operate the Perl debugger in Eclipse/EPIC

I have installed ActivePerl, and I would like to debug a Perl program using Eclipse and EPIC. I have installed Eclipse and EPIC, they look OK. (It's doing basic syntax checking on an example Perl ...
0
votes
0answers
28 views

How to make (EPIC perl) plugin on eclipse do syntax coloring for a file that does not have .pl extension

I have to work on a file that for a variety of reasons cannot be renamed to have a .pl extension. So far I have worked by creating a private version, changing its name to have a .pl extension and then ...
0
votes
1answer
51 views

Run Eclipse EPIC Perl Plugin on Remote Project/Files

I recently started a new job, where all development is done on a remote dev server. I really like Eclipse as a centralized development environment for all the different stuff I'm working on, and am ...
0
votes
0answers
28 views

trasnferring data from epic 4g w/o working screen to computer [closed]

My epic 4g served me well for 10 months before the screen died out on me. I bought a new one and would like to transfer data from my old phone to my new phone, however, it seems impossible when the ...
0
votes
0answers
88 views

How do I “collapse all” folds using Perl EPIC

I see there's an option to set the hot keys for "Collapse All" in the Eclipse Preferences, but that doesn't seem to do anything. The only way I can get code to fold, other than manually, is by ...
0
votes
2answers
118 views

Eclipse + Perl: Why can't I see output from warn?

I'm new in Eclipse version Helios. Perl script: use strict; warn "Not work\n"; print STDERR "Yes it work" In the console view, I can't see the warn output. How can I fix it?
0
votes
0answers
59 views

New to IDE's — Eclipse — Have master script with many calls to sub-scripts, can IDE give me flat display of all?

Have master script with many calls to sub-scripts, can the IDE give me a flat display of all the code from the calls in the master file? This is using Perl with EPIC on Eclipse Classic on Windows. ...
0
votes
0answers
66 views

Discrepancy between AVD emulator and phone deployment — Tiling mode for bitmaps

I am using: android:tileMode="repeat" To tile a bitmap for a background on an Android application I am writing. It works perfectly in the emulation devices on my computer (2.1 update 1, 2.2, all ...
0
votes
2answers
360 views

Why can't I get Eclipse / EPIC to display line numbers?

I installed EPIC, but I cannot see the line number even I enable line number, any idea?
0
votes
1answer
1k views

How do I get Perl::Critic to work with E.P.I.C and eclipse?

I'm running eclipse Galileo with EPIC 0.5.46 and ActiveState ActivePerl 5.10.0, on WinXP SP3. I just downloaded Perl::Critic using the package manager, and integrated it to eclipse using the ...
0
votes
1answer
133 views

Excluding code sections from EPIC/tidyperl source formatting

I in a large codebase of an application written in perl there is a lot of HTML and JS written inline in the perl file. $html_str = qq^ <A LOT OF HTML> ^; All the code development in done ...