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

123

/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 {
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPreprocessor.h48 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);
H A DScriptPreprocessor.cpp75 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName) argument
80 return preprocessSourceCode(sourceCode, sourceName, v8::Undefined(m_scriptState->isolate()));
83 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName) argument
89 return preprocessSourceCode(sourceCode, sourceName, functionNameString);
92 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName) argument
101 v8::Handle<v8::String> sourceNameString = v8String(isolate, sourceName);
H A DScriptEventListener.h51 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceName, String& scriptId, int& lineNumber, int& columnNumber);
H A DScriptCallStackFactory.cpp54 String sourceName; local
57 sourceName = toCoreString(sourceNameValue);
66 return ScriptCallFrame(functionName, scriptId, sourceName, sourceLineNumber, sourceColumn);
H A DScriptEventListener.cpp155 bool eventListenerHandlerLocation(Document* document, EventListener* listener, String& sourceName, String& scriptId, int& lineNumber, int& columnNumber) argument
175 sourceName = toCoreString(origin.ResourceName().As<v8::String>());
177 sourceName = "";
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
H A DDocumentationCatalog.js90 * @param {string} sourceName
93 constantDescriptors: function(sourceName)
95 return [new WebInspector.DocumentationCatalog.ItemDescriptor("javascript/" + sourceName + "/", sourceName, "constants")]
125 var sourceName = tokens.length === 1 ? "window" : tokens.pop();
126 if (!sourceName)
133 var sourcePath = tokens.join("/") + "/" + (sourceName === "window" ? "" : sourceName + "/");
134 descriptors.push(new WebInspector.DocumentationCatalog.ItemDescriptor(sourcePath, sourceName, propertyName));
/external/skia/tools/
H A Dimage_expectations.h105 * @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,
H A Dimage_expectations.cpp137 void ImageResultsAndExpectations::add(const char *sourceName, const char *fileName, argument
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, argument
189 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_WholeImage];
191 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_TiledImages][*tileNumber];
/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/chromium_org/third_party/skia/tools/
H A Dimage_expectations.h171 * @param sourceName name of the source file that generated this result
176 void add(const char *sourceName, const char *fileName, ImageDigest &digest,
197 * @param sourceName name of the source file that generated this result
203 Expectation getExpectation(const char *sourceName, const int *tileNumber=NULL);
H A Dimage_expectations.cpp164 void ImageResultsAndExpectations::add(const char *sourceName, const char *fileName, argument
167 Expectation expectation = this->getExpectation(sourceName, tileNumber);
192 fActualResults[sourceName][kJsonKey_Source_WholeImage] = actualImage;
194 fActualResults[sourceName][kJsonKey_Source_TiledImages][*tileNumber] = actualImage;
206 Expectation ImageResultsAndExpectations::getExpectation(const char *sourceName, argument
214 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_WholeImage];
216 expectedImage = fExpectedResults[sourceName][kJsonKey_Source_TiledImages][*tileNumber];
/external/compiler-rt/test/BlocksRuntime/
H A Dtestfilerunner.h63 __strong char *sourceName; variable
72 @property __strong char *sourceName; variable
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DFileCheckerCallable.java57 public void warning(String message, String sourceName, int line, int lineOffset) {
62 public void error(String message, String sourceName, int line, int lineOffset) {
63 logError("at " + sourceName + ":" + line + ":" + lineOffset);
/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

Completed in 405 milliseconds

123