/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;
|
/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);
|
/dalvik/vm/native/ |
dalvik_system_DexFile.cpp | 133 * private static int openDexFile(String sourceName, String outputName, 138 * "sourceName" should point to the "source" jar or DEX file. 159 char* sourceName; 163 dvmThrowNullPointerException("sourceName == null"); 167 sourceName = dvmCreateCstrFromString(sourceNameObj); 194 if (dvmClassPathContains(gDvm.bootClassPath, sourceName)) { 195 ALOGW("Refusing to reopen boot DEX '%s'", sourceName); 198 free(sourceName); 208 if (hasDexExtension(sourceName) 209 && dvmRawDexFileOpen(sourceName, outputName, &pRawDexFile, false) == 0) [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
ANTLRFileStream.as | 32 public override 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;
|
TokenSource.as | 53 function get sourceName():String;
|
/external/webkit/Source/WebCore/bindings/v8/ |
ScriptCallStackFactory.cpp | 48 String sourceName; 51 sourceName = toWebCoreString(sourceNameValue); 60 return ScriptCallFrame(functionName, sourceName, sourceLineNumber, sourceColumn);
|
ScriptEventListener.h | 49 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceName, int& lineNumber);
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ShortcutsProvider.java | 101 String sourceName = shortcut.getAsString(EXTRA_SHORTCUT_SOURCE); 102 if (TextUtils.isEmpty(sourceName)) { 110 Log.d(TAG, "Ignoring shortcut from " + sourceName + 116 final ComponentName sourceComponent = ComponentName.unflattenFromString(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 {
|
Parser.cs | 99 public override string SourceName { 101 return input.SourceName;
|
UnbufferedTokenStream.cs | 72 public string SourceName { 74 return TokenSource.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
|
Parser.cs | 111 public override string SourceName 115 return input.SourceName;
|
UnbufferedTokenStream.cs | 79 public string SourceName 83 return TokenSource.SourceName;
|
ANTLRFileStream.cs | 80 public override string SourceName
|
/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTokenStream.cs | 159 public virtual string SourceName { 161 return TokenSource.SourceName;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTokenStream.cs | 189 public virtual string SourceName 193 return TokenSource.SourceName;
|
/external/compiler-rt/BlocksRuntime/tests/ |
testfilerunner.h | 63 __strong char *sourceName; 72 @property __strong char *sourceName;
|
/external/webkit/Source/WebCore/bindings/js/ |
ScriptEventListener.h | 49 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceName, int& lineNumber);
|
/libcore/dalvik/src/main/java/dalvik/system/ |
DexFile.java | 88 * @param sourceName 95 private DexFile(String sourceName, String outputName, int flags) throws IOException { 109 mCookie = openDexFile(sourceName, outputName, flags); 110 mFileName = sourceName; 272 native private static int openDexFile(String sourceName, String outputName,
|
/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;
|