Searched defs:name (Results 1 - 25 of 7863) sorted by path

1234567891011>>

/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
H A DOs.java32 System.getProperty("os.name").toLowerCase(Locale.ENGLISH);
47 private String name; field in class:Os
149 * Sets the desired OS name
151 * @param name The OS name
153 public void setName(String name) { argument
154 this.name = name.toLowerCase(Locale.ENGLISH);
184 return isOs(family, name, arch, version);
200 * given OS name
206 isName(String name) argument
245 isOs(String family, String name, String arch, String version) argument
[all...]
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
H A DANTLR3.java80 /** name of output style for messages */
163 public void setMessageformat(String name) { argument
164 log("Setting message-format to: " + name, Project.MSG_VERBOSE);
165 this.messageFormatName = name;
376 * getResource doesn't contain the name of the archive.</p>
693 // is either " : " or ": " trim is invoked for the first file name of a line
700 String name = lhs.getName();
701 String[] parts = splitRightHandSide(name, "\\u002E");
714 for (String name : names) {
715 File bFile = new File(name);
[all...]
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
H A Dantlr3.jar ... libDirectoryFile public void setMessageformat (java.lang.String) String name public void setGlib (java.io.File) java. ...
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitExecutor.java14 3. The name of the author may not be used to endorse or promote products
106 protected final Class classForName(String name) throws ClassNotFoundException { argument
107 return getGrammarClassLoader().loadClass( name );
630 // set up the cause of exception or the exception name into a gUnitTestResult instance
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DImageFactory.java40 private ImageIcon getImage(String name) { argument
41 name = IMG_DIR + name;
44 final InputStream in = loader.getResourceAsStream(name);
50 System.err.println("Can't load image file: " + name);
53 System.err.println("Can't load image file: " + name);
H A DStatusBarController.java14 3. The name of the author may not be used to endorse or promote products
71 public void setRule(String name) { argument
72 this.labelRuleName.setText(name);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DRule.java14 3. The name of the author may not be used to endorse or promote products
42 private String name; field in class:Rule
44 public Rule(String name) { argument
45 this.name = name;
48 public String getName() { return name; }
56 return this.name;
H A DTestSuite.java14 3. The name of the author may not be used to endorse or promote products
47 /* Get the gUnit test suite file name. */
57 // test rule name
78 public void setGrammarName(String name) { grammarName = name;} argument
88 public Rule getRule(String name) { argument
90 if(rule.getName().equals(name)) {
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DParserLoader.java14 3. The name of the author may not be used to endorse or promote products
89 public synchronized Class loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
90 //System.out.print("loading: " + name);
91 if(name.startsWith(grammar)) {
92 if(classList.containsKey(name)) {
94 return classList.get(name);
97 throw new ClassNotFoundException(name);
101 final Class c = findSystemClass(name);
114 protected ClassFilenameFilter(String name) { argument
115 grammarName = name;
118 accept(File dir, String name) argument
[all...]
H A DTestSuiteAdapter.java14 3. The name of the author may not be used to endorse or promote products
45 public void setGrammarName(String name) { argument
46 model.setGrammarName(name);
49 public void startRule(String name) { argument
50 currentRule = new Rule(name);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3exception.h23 // 3. The name of the author may not be used to endorse or promote products
117 /** The string name of the exception
119 void * name; member in struct:ANTLR3_EXCEPTION_struct
187 /** Rule name for failed predicate exception
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c26 // 3. The name of the author may not be used to endorse or promote products
70 static pANTLR3_STACK getRuleInvocationStackNamed (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_UINT8 name);
262 recognizer->state->exception->name = ANTLR3_MISMATCHED_EX_NAME;
679 recognizer->state->exception->name = ANTLR3_UNWANTED_TOKEN_EXCEPTION_NAME;
693 recognizer->state->exception->name = ANTLR3_MISSING_TOKEN_EXCEPTION_NAME;
1824 getRuleInvocationStackNamed (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_UINT8 name) argument
H A Dantlr3exception.c21 // 3. The name of the author may not be used to endorse or promote products
72 antlr3ExceptionNew(ANTLR3_UINT32 exception, void * name, void * message, ANTLR3_BOOLEAN freeMessage) argument
87 ex->name = name; /* Install exception name */
H A Dantlr3filestream.c33 // 3. The name of the author may not be used to endorse or promote products
79 // Now we can set up the file name
89 antlr3StringStreamNew(pANTLR3_UINT8 data, ANTLR3_UINT32 encoding, ANTLR3_UINT32 size, pANTLR3_UINT8 name) argument
117 // Now we can set up the file name
119 input->istream->streamName = input->strFactory->newStr8(input->strFactory, name);
H A Dantlr3inputstream.c20 // 3. The name of the author may not be used to endorse or promote products
57 static void antlr38BitReuse (pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 inString, ANTLR3_UINT32 size, pANTLR3_UINT8 name);
288 antlr38BitReuse(pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 inString, ANTLR3_UINT32 size, pANTLR3_UINT8 name) argument
294 // Now we can set up the file name. As we are reusing the stream, there may already
299 input->istream->streamName = input->strFactory->newStr(input->strFactory, name == NULL ? (pANTLR3_UINT8)"-memory-" : name);
304 input->istream->streamName->set(input->istream->streamName, (name == NULL ? (const char *)"-memory-" : (const char *)name));
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DProfiler.cs20 * 3. The name of the author may not be used to endorse or promote products
476 stats.name = parser.GetType().Name;
497 buf.Append("parser name ");
498 buf.Append(stats.name);
666 public string name; field in class:Antlr.Runtime.Debug.Profiler.ProfileStats
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRStringStream.cs18 * 3. The name of the author may not be used to endorse or promote products
77 /** <summary>What is name or source of this char stream?</summary> */
78 public string name; field in class:Antlr.Runtime.ANTLRStringStream
104 this.name = sourceName;
277 return name;
H A DGrammarRuleAttribute.cs18 * 3. The name of the author may not be used to endorse or promote products
42 public GrammarRuleAttribute(string name) { argument
43 this._name = name;
H A DTokenRewriteStream.cs18 * 3. The name of the author may not be used to endorse or promote products
80 * rewrites from a single pass over the input. Just name the instruction
81 * streams and use that name again when printing the buffer. This could be
179 * Maps String (name) -> rewrite (List)
184 /** <summary>Map String (program name) -> Integer index</summary> */
348 protected virtual IList<RewriteOperation> GetProgram(string name) { argument
350 if (!programs.TryGetValue(name, out @is) || @is == null) {
351 @is = InitializeProgram(name);
356 private IList<RewriteOperation> InitializeProgram(string name) { argument
358 programs[name]
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DProfiler.cs18 * 3. The name of the author may not be used to endorse or promote products
523 stats.name = parser.GetType().Name;
548 buf.Append("parser name ");
549 buf.Append(stats.name);
728 public string name; field in class:Antlr.Runtime.Debug.Profiler.ProfileStats
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammarHelper.cs18 * 3. The name of the author may not be used to endorse or promote products
74 /** Find matching function definition for a function name and parameter
75 * value. The first definition is returned where (a) the name matches
78 private CommonTree findFunction( string name, BigInteger paramValue ) argument
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
93 // Parameter (value for INT formal arg) as well as fct name agrees!
100 /** Get value of name up call stack. */
101 internal BigInteger getValue( string name )
104 if ( localMemory.TryGetValue( name, out value ) && value != null )
108 if ( globalMemory.TryGetValue( name, ou
[all...]
H A DProfileTreeGrammarHelper.cs18 * 3. The name of the author may not be used to endorse or promote products
74 /** Find matching function definition for a function name and parameter
75 * value. The first definition is returned where (a) the name matches
78 private CommonTree findFunction( string name, BigInteger paramValue ) argument
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
93 // Parameter (value for INT formal arg) as well as fct name agrees!
100 /** Get value of name up call stack. */
101 public BigInteger getValue( string name )
104 if ( localMemory.TryGetValue( name, out value ) && value != null )
108 if ( globalMemory.TryGetValue( name, ou
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimStringStream.cs18 * 3. The name of the author may not be used to endorse or promote products
81 /** <summary>What is name or source of this char stream?</summary> */
82 public string name; field in class:Antlr.Runtime.SlimStringStream
111 this.name = sourceName;
330 return name;

Completed in 6566 milliseconds

1234567891011>>