Searched refs:sourceName (Results 1 - 25 of 44) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenSource.as53 function get sourceName():String;
H A DIntStream.as120 function get sourceName():String;
H A DANTLRStringStream.as202 public function get sourceName():String {
206 public function set sourceName(sourceName:String):void {
207 _sourceName = sourceName;
H A DParser.as82 public override function get sourceName():String {
83 return input.sourceName;
H A DANTLRFileStream.as32 public override function get sourceName():String {
H A DCommonTokenStream.as333 public function get sourceName():String {
334 return tokenSource.sourceName;
H A DLexer.as126 public override function get sourceName():String {
127 return input.sourceName;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptPreprocessor.h49 String preprocessSourceCode(const String& sourceCode, const String& sourceName);
50 String preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName);
55 String preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName);
H A DScriptPreprocessor.cpp72 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName) argument
77 return preprocessSourceCode(sourceCode, sourceName, v8::Undefined(m_isolate));
80 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName) argument
86 return preprocessSourceCode(sourceCode, sourceName, functionNameString);
89 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName) argument
98 v8::Handle<v8::String> sourceNameString = v8String(m_isolate, sourceName);
H A DScriptEventListener.h52 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceName, String& scriptId, int& lineNumber);
H A DScriptCallStackFactory.cpp56 String sourceName; local
59 sourceName = toCoreString(sourceNameValue);
68 return ScriptCallFrame(functionName, scriptId, sourceName, sourceLineNumber, sourceColumn);
H A DScriptEventListener.cpp140 bool eventListenerHandlerLocation(Document* document, EventListener* listener, String& sourceName, String& scriptId, int& lineNumber) argument
158 sourceName = toCoreString(origin.ResourceName().As<v8::String>());
160 sourceName = "";
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRStringStream.cs85 public ANTLRStringStream(string input, string sourceName) argument
86 : this(input.ToCharArray(), input.Length, sourceName) {
94 public ANTLRStringStream(char[] data, int numberOfActualCharsInArray, string sourceName) { argument
104 this.name = sourceName;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRStringStream.cs88 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;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimStringStream.cs94 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;
/external/compiler-rt/BlocksRuntime/tests/
H A Dtestfilerunner.h63 __strong char *sourceName; variable
72 @property __strong char *sourceName; variable
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as62 public override function get sourceName():String {
63 return input.sourceName;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseRecognizer.h58 NSString *sourceName; variable
67 @property (retain, getter=getSourceName, setter=setSourceName) NSString *sourceName; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseRecognizer.h58 NSString *sourceName; variable
67 @property (retain, getter=getSourceName, setter=setSourceName) NSString *sourceName; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseRecognizer.h58 NSString *sourceName; variable
67 @property (retain, getter=getSourceName, setter=setSourceName) NSString *sourceName; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBaseRecognizer.h58 __strong NSString *sourceName; variable
177 @property (retain) NSString *sourceName; variable
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DEventListenersSidebarPane.js215 if (this.eventListener.sourceName)
216 properties.push(WebInspector.RemoteObjectProperty.fromPrimitiveValue("sourceName", this.eventListener.sourceName));
254 var url = this.eventListener.sourceName;
/external/chromium_org/third_party/icu/source/i18n/
H A Danytrans.cpp281 UnicodeString sourceName(uscript_getName(source), -1, US_INV);
282 UnicodeString id(sourceName);
290 id = sourceName;
/external/icu4c/i18n/
H A Danytrans.cpp281 UnicodeString sourceName(uscript_getName(source), -1, US_INV);
282 UnicodeString id(sourceName);
290 id = sourceName;
/external/chromium_org/third_party/WebKit/public/testing/
H A DWebTestProxy.h191 void didAddMessageToConsole(const blink::WebConsoleMessage&, const blink::WebString& sourceName, unsigned sourceLine);
505 virtual void didAddMessageToConsole(const blink::WebConsoleMessage& message, const blink::WebString& sourceName, unsigned sourceLine, const blink::WebString& stackTrace) argument
507 WebTestProxyBase::didAddMessageToConsole(message, sourceName, sourceLine);
508 Base::didAddMessageToConsole(message, sourceName, sourceLine, stackTrace);

Completed in 360 milliseconds

12