OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_sourcepath
(Results
1 - 4
of
4
) sorted by null
/external/emma/core/java12/com/vladium/emma/report/
SourcePathCache.java
50
m_sourcepath
= new File [_sourcepath.size ()];
51
_sourcepath.toArray (
m_sourcepath
);
72
m_sourcepath
= new File [_sourcepath.size ()];
73
_sourcepath.toArray (
m_sourcepath
);
86
if (
m_sourcepath
.length == 0) return null;
92
entry = new CacheEntry (
m_sourcepath
.length);
102
listing = faultListing (
m_sourcepath
[p], packageVMName);
111
return new File (
m_sourcepath
[p], relativeFile.getPath ()).getAbsoluteFile ();
217
private final File []
m_sourcepath
; // never null
field in class:SourcePathCache
ReportProcessor.java
67
m_sourcePath
= null;
69
m_sourcePath
= Files.pathToFiles (path, true); // always canonicalize source path
105
// [
m_sourcePath
can be null]
136
if ((
m_sourcePath
== null) || (
m_sourcePath
.length == 0))
144
for (int p = 0; p <
m_sourcePath
.length; ++ p)
146
final File f =
m_sourcePath
[p];
243
if (
m_sourcePath
!= null) srcpathCache = new SourcePathCache (
m_sourcePath
, true); // ignore non-existent source dirs
321
private File []
m_sourcePath
; // can be null/empty for run(
[
all
...]
/external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java
135
m_sourcePath
= null;
137
m_sourcePath
= Files.pathToFiles (path, true); // always canonicalize source path
259
// [
m_sourcePath
can be null/empty]
286
if ((
m_sourcePath
== null) || (
m_sourcePath
.length == 0))
294
for (int p = 0; p <
m_sourcePath
.length; ++ p)
296
final File f =
m_sourcePath
[p];
358
if (
m_sourcePath
!= null) srcpathCache = new SourcePathCache (
m_sourcePath
, true); // ignore non-existent source dirs
[
all
...]
/external/emma/lib/
emma.jar
Completed in 1293 milliseconds