HomeSort by relevance Sort by last modified time
    Searched refs:sourceName (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java 31 private final String sourceName;
33 public JavaSource(String sourceName, String sourceCode) {
34 super(URI.create("string:///" + sourceName.replace(".", "/") + ".java"),
36 this.sourceName = sourceName;
42 return sourceName;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenSource.as 53 function get sourceName():String;
IntStream.as 120 function get sourceName():String;
ANTLRStringStream.as 202 public function get sourceName():String {
206 public function set sourceName(sourceName:String):void {
207 _sourceName = sourceName;
Parser.as 82 public override function get sourceName():String {
83 return input.sourceName;
ANTLRFileStream.as 32 public override function get sourceName():String {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPreprocessor.h 48 String preprocessSourceCode(const String& sourceCode, const String& sourceName);
49 String preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName);
54 String preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName);
ScriptPreprocessor.cpp 74 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName)
79 return preprocessSourceCode(sourceCode, sourceName, v8::Undefined(m_scriptState->isolate()));
82 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName)
88 return preprocessSourceCode(sourceCode, sourceName, functionNameString);
91 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName)
100 v8::Handle<v8::String> sourceNameString = v8String(isolate, sourceName);
ScriptEventListener.h 51 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceName, String& scriptId, int& lineNumber);
ScriptCallStackFactory.cpp 54 String sourceName;
57 sourceName = toCoreString(sourceNameValue);
66 return ScriptCallFrame(functionName, scriptId, sourceName, sourceLineNumber, sourceColumn);
  /external/chromium_org/third_party/skia/tools/
image_expectations.h 105 * @param sourceName name of the source file that generated this result
110 void add(const char *sourceName, const char *fileName, const ImageDigest &digest,
117 * @param sourceName name of the source file that generated this result
121 bool matchesExpectation(const char *sourceName, const ImageDigest &digest,
image_expectations.cpp 137 void ImageResultsAndExpectations::add(const char *sourceName, const char *fileName,
143 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_WholeImage];
145 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_TiledImages]
174 fActualResults[sourceName][kJsonKey_Source_WholeImage] = actualImage;
176 fActualResults[sourceName][kJsonKey_Source_TiledImages][*tileNumber] = actualImage;
180 bool ImageResultsAndExpectations::matchesExpectation(const char *sourceName,
189 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_WholeImage];
191 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_TiledImages][*tileNumber];
  /external/skia/tools/
image_expectations.h 105 * @param sourceName name of the source file that generated this result
110 void add(const char *sourceName, const char *fileName, const ImageDigest &digest,
117 * @param sourceName name of the source file that generated this result
121 bool matchesExpectation(const char *sourceName, const ImageDigest &digest,
image_expectations.cpp 137 void ImageResultsAndExpectations::add(const char *sourceName, const char *fileName,
143 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_WholeImage];
145 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_TiledImages]
174 fActualResults[sourceName][kJsonKey_Source_WholeImage] = actualImage;
176 fActualResults[sourceName][kJsonKey_Source_TiledImages][*tileNumber] = actualImage;
180 bool ImageResultsAndExpectations::matchesExpectation(const char *sourceName,
189 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_WholeImage];
191 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_TiledImages][*tileNumber];
  /libcore/dalvik/src/main/java/dalvik/system/
DexFile.java 90 * @param sourceName
97 private DexFile(String sourceName, String outputName, int flags) throws IOException {
111 mCookie = openDexFile(sourceName, outputName, flags);
112 mFileName = sourceName;
114 //System.out.println("DEX FILE cookie is " + mCookie + " sourceName=" + sourceName + " outputName=" + outputName);
293 private static long openDexFile(String sourceName, String outputName, int flags) throws IOException {
295 return openDexFileNative(new File(sourceName).getAbsolutePath(),
308 private static native long openDexFileNative(String sourceName, String outputName, int flags);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 94 public SlimStringStream( string input, string sourceName )
95 : this( input.ToCharArray(), input.Length, sourceName )
105 public SlimStringStream( char[] data, int numberOfActualCharsInArray, string sourceName )
111 this.name = sourceName;
326 public string SourceName
  /external/compiler-rt/test/BlocksRuntime/
testfilerunner.h 63 __strong char *sourceName;
72 @property __strong char *sourceName;
  /packages/apps/Dialer/src/com/android/dialer/list/
RegularSearchListAdapter.java 59 final String sourceName = partition.getLabel();
61 cacheInfo.setExtendedSource(sourceName, directoryId);
63 cacheInfo.setDirectorySource(sourceName, directoryId);
  /build/tools/atree/
files.h 25 string sourceName;
files.cpp 116 const string& sourceName, const string& outName)
122 rec.sourceName = sourceName;
345 string full = path_append(*it, rec->sourceName);
359 rec->listFile.c_str(), rec->listLine, rec->sourceName.c_str());
399 r.sourceName = path_append(rec.sourceName, entry);
400 r.sourcePath = path_append(rec.sourceBase, r.sourceName);
430 string full = path_append(rec.sourceBase, rec.sourceName);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRStringStream.cs 85 public ANTLRStringStream(string input, string sourceName)
86 : this(input.ToCharArray(), input.Length, sourceName) {
94 public ANTLRStringStream(char[] data, int numberOfActualCharsInArray, string sourceName) {
104 this.name = sourceName;
275 public virtual string SourceName {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRStringStream.cs 88 public ANTLRStringStream( string input, string sourceName )
89 : this( input.ToCharArray(), input.Length, sourceName )
99 public ANTLRStringStream( char[] data, int numberOfActualCharsInArray, string sourceName )
110 this.name = sourceName;
314 public virtual string SourceName
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 62 public override function get sourceName():String {
63 return input.sourceName;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseRecognizer.h 58 NSString *sourceName;
67 @property (retain, getter=getSourceName, setter=setSourceName) NSString *sourceName;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseRecognizer.h 58 NSString *sourceName;
67 @property (retain, getter=getSourceName, setter=setSourceName) NSString *sourceName;

Completed in 1246 milliseconds

1 2 3 4