Searched refs:text (Results 1 - 25 of 5442) sorted by path

1234567891011>>

/external/aac/libMpegTPDec/src/
H A Dtpdec_asc.cpp34 You must retain the complete text of this software license in redistributions of the FDK AAC Codec or
37 You must retain the complete text of this software license in the documentation and/or other materials
265 UCHAR text; local
267 text = (UCHAR)FDKreadBits(bs,8);
271 pPce->Comment[i] = text;
/external/ant-glob/
H A DNOTICE107 * (d) If the Work includes a "NOTICE" text file as part of its
112 * of the following places: within a NOTICE text file distributed
120 * or as an addendum to the NOTICE text from the Work, provided
184 * the brackets!) The text should be enclosed in the appropriate
219 1. The full text of this NOTICE in a location viewable to users of the
223 included (hypertext is preferred, text is permitted) within the body
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
H A DgUnit.g53 if ( $g2.text!=null ) {
54 grammarInfo.setGrammarName($g2.text);
55 grammarInfo.setTreeGrammarName($g1.text);
58 grammarInfo.setGrammarName($g1.text);
71 if ( $id.text.equals("TreeAdaptor") ) {
72 grammarInfo.setAdaptor($treeAdaptor.text);
75 else System.err.println("Invalid option detected: "+$text);
86 if ( (pos1=$ACTION.text.indexOf("package"))!=-1 && (pos2=$ACTION.text.indexOf(';'))!=-1 ) {
87 grammarInfo.setGrammarPackage($ACTION.text
[all...]
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
H A DANTLRv3.g164 id {$rule::name = $id.text;}
302 // in real antlr tool, text for SYN_SEMPRED is predname
389 | d='$' id -> LABEL[$d,$id.text] // reference to a label in a rewrite rule
417 -> {%{$ID.text}} // create literal template from string (done in ActionTranslator)
H A DStGUnit.g53 : 'gunit' name=id {adapter.setGrammarName($name.text);}
64 {adapter.startRule($parserRule.text);}
66 {adapter.startRule($lexerRule.text);}
81 | 'returns' RETVAL {$out = adapter.createReturnOutput($RETVAL.text);}
82 | '->' output {$out = adapter.createStdOutput($output.text);}
83 | '->' AST {$out = adapter.createAstOutput($AST.text);}
87 : STRING {$in = adapter.createStringInput($STRING.text);}
88 | ML_STRING {$in = adapter.createMultiInput($ML_STRING.text);}
99 : id {$path = $id.text;} (EXT {$path += $EXT.text;})
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DStatusBarController.java67 public void setText(String text) { argument
68 labelText.setText(text);
H A DTestCaseEditController.java446 public void setText(String text) { argument
447 textArea.setText(text);
520 public void setText(String text) { argument
521 this.textArea.setText(text);
584 public static String clamp(String text, int len) { argument
585 if(text.length() > len) {
586 return text.substring(0, len - 3).concat("...");
588 return text;
592 public static String clampAtNewLine(String text) { argument
593 int pos = text
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCaseInputMultiString.java40 public TestCaseInputMultiString(String text) { argument
41 this.script = text;
H A DTestCaseInputString.java39 public TestCaseInputString(String text) { argument
40 this.script = text;
H A DTestCaseOutputReturn.java33 public TestCaseOutputReturn(String text) { argument
34 this.script = text;
H A DTestCaseOutputStdOut.java37 public TestCaseOutputStdOut(String text) { argument
38 this.script = text;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java63 private static String trimChars(String text, int numOfChars) { argument
64 return text.substring(numOfChars, text.length() - numOfChars);
78 public static ITestCaseInput createMultiInput(String text) { argument
79 if(text == null) throw new IllegalArgumentException("null");
81 return new TestCaseInputMultiString(trimChars(text, 2));
93 public static ITestCaseOutput createStdOutput(String text) { argument
94 if(text == null) throw new IllegalArgumentException("null");
96 return new TestCaseOutputStdOut(trimChars(text, 1));
99 public static ITestCaseOutput createReturnOutput(String text) { argument
[all...]
/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/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as295 * is to display just the text, but during development you might
303 var s:String = t.text;
630 * a CommonToken of the appropriate type. The text will be the token.
706 strings.push(tokens[i].text);
H A DCommonToken.as39 /** We need to be able to change the text once in a while. If
54 public function CommonToken(type:int, text:String = null) {
56 this._text = text;
69 var token:CommonToken = new CommonToken(oldToken.type, oldToken.text);
89 public function get text():String {
100 /** Override the text for this token. getText() will return this text
105 public function set text(text:String):void {
106 _text = text;
[all...]
H A DCommonTokenStream.as357 buf += t.text;
H A DLexer.as59 state.text = null;
72 state.text = null;
141 * char buffer start..stop. If there is a text override in 'text',
142 * use that to set the token's text. Override this method to emit
148 t.text = state.text;
221 /** Return the text matched so far for the current token or any
222 * text override.
224 public function get text()
[all...]
H A DMissingTokenException.as18 return "MissingTokenException(inserted "+inserted+" at "+token.text+")";
21 return "MissingTokenException(at "+token.text+")";
H A DRecognitionException.as161 var text:String = adaptor.getText(this.node);
162 this.token = new CommonToken(type, text);
H A DRecognizerSharedState.as70 * Needed, for example, to get the text for current token. Set at
87 /** You can set the text for the current token to override what is in
90 public var text:String; variable
H A DToken.as31 /** Get the text of the token */
32 function get text():String;
33 function set text(text:String):void;
H A DTokenRewriteStream.as63 * input.insertAfter(t, "text to put after t");}
64 * input.insertAfter(u, "text after u");}
75 * tokens.insertAfter("pass1", t, "text to put after t");}
76 * tokens.insertAfter("pass2", u, "text after u");}
117 public function insertAfterToken(t:Token, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
118 insertAfter(t.tokenIndex, text, programName);
121 public function insertAfter(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
123 insertBefore(index+1, text, programName);
126 public function insertBeforeToken(t:Token, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
127 insertBefore(t.tokenIndex, text, programNam
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTree.as336 public function get text():String {
H A DBaseTreeAdaptor.as152 public function createFromToken(tokenType:int, fromToken:Token, text:String = null):Object {
155 if (text != null) {
156 fromToken.text = text;
161 public function createFromType(tokenType:int, text:String):Object {
162 var fromToken:Token = createTokenFromType(tokenType, text);
175 return Tree(t).text;
178 public function setText(t:Object, text:String):void {
221 public function createTokenFromType(tokenType:int, text:String):Token {

Completed in 304 milliseconds

1234567891011>>