/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/ |
Combined__.gl | 1 lexer grammar Combined; 7 // $ANTLR src "Combined.g" 14 11 // $ANTLR src "Combined.g" 17 15 // $ANTLR src "Combined.g" 20
|
main.m | 7 NSLog(@"starting combined\n"); 21 NSLog(@"exiting combined\n");
|
Combined.g | 1 grammar Combined;
|
CombinedLexer.m | 4 * - From the grammar source file : Combined.g 40 // $ANTLR 3.2 Aug 24, 2010 10:45:57 Combined.g 2010-08-24 13:53:42 61 [ANTLRBaseRecognizer setGrammarFileName:@"Combined.g"]; 100 // Combined.g:14:5: ( ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )* ) // ruleBlockSingleAlt 101 // Combined.g:14:9: ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )* // alt 121 // Combined.g: // alt 166 // Combined.g:17:5: ( ( '0' .. '9' )+ ) // ruleBlockSingleAlt 167 // Combined.g:17:9: ( '0' .. '9' )+ // alt 169 // Combined.g:17:9: ( '0' .. '9' )+ // positiveClosureBlock 181 // Combined.g:17:10: '0' .. '9' // al [all...] |
CombinedParser.m | 4 * - From the grammar source file : Combined.g 40 // $ANTLR 3.2 Aug 24, 2010 10:45:57 Combined.g 2010-08-24 13:53:42 114 * Combined.g:7:1: stat : ( identifier )+ ; 121 // Combined.g:7:5: ( ( identifier )+ ) // ruleBlockSingleAlt 122 // Combined.g:7:7: ( identifier )+ // alt 124 // Combined.g:7:7: ( identifier )+ // positiveClosureBlock 136 // Combined.g:7:7: identifier // alt 173 * Combined.g:9:1: identifier : ID ; 180 // Combined.g:10:5: ( ID ) // ruleBlockSingleAlt 181 // Combined.g:10:7: ID // al [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/xcuserdata/acondit.xcuserdatad/xcschemes/ |
combined.xcscheme | 17 BuildableName = "combined" 18 BlueprintName = "combined" 44 BuildableName = "combined" 45 BlueprintName = "combined" 63 BuildableName = "combined" 64 BlueprintName = "combined"
|
/dalvik/dx/tests/080-dex-exception-tables/ |
info.txt | 3 ought to be combined, listing entries in a correct and sensible order,
|
/external/clang/test/CodeGenCXX/ |
2010-03-09-AnonAggregate.cpp | 4 // combined with RAUW operation.
|
/external/llvm/test/CodeGen/XCore/ |
unaligned_store_combine.ll | 3 ; Unaligned load / store pair. Should be combined into a memmove
|
/packages/inputmethods/LatinIME/native/jni/src/ |
char_utils.h | 37 * Table mapping most combined Latin, Greek, and Cyrillic characters 39 * if c is not a combined character, or the base character if it 40 * is combined.
|
/external/valgrind/main/memcheck/tests/ |
varinfo6.stdout.exp | 2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373 10 final combined CRC = 0xA212ABF8
|
origin5-bz2.stdout.exp | 3 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373 11 final combined CRC = 0xA212ABF8
|
vcpu_bz2.stdout.exp | 2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373 10 final combined CRC = 0xA212ABF8
|
/external/webkit/Source/WebCore/gyp/ |
streamline-inspector-source.sh | 15 # Remove any JavaScript files, since they will be replaced with the combined files. 19 # Copy the modified HTML file and the combined scripts.
|
/external/webrtc/src/system_wrappers/source/ |
data_log_c.cc | 32 std::string combined = webrtc::DataLog::Combine(table_name, table_id); 33 if (combined.size() >= combined_len) return NULL; 34 std::copy(combined.begin(), combined.end(), combined_name); 35 combined_name[combined.size()] = '\0';
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
grammar.rb | 45 GRAMMAR_TYPES = %w(lexer parser tree combined) 89 elsif combined? then base = name + 'Lexer' 101 elsif combined? then base = name + 'Parser' 116 @type == 'combined' || @type == 'lexer' 120 @type == 'combined' || @type == 'parser' 137 def combined? 138 @type == "combined" 264 @type = $1 || 'combined'
|
/external/svox/pico/lib/ |
picoktab.h | 199 /* returns TRUE if 'pos' is the ID of a unique (ie. non-combined) POS, 204 /* returns TRUE if the non-combined 'pos' is one of the POSes in the 205 combined POS group 'posgroup, returns FALSE otherwise. Note: if 206 'posgroup' is itself non-combined, this function returns TRUE if it 212 /* return the combined POS group ID that is a representative ID for 213 all the 'poslistlen' POSes (which can be combined themselves) in
|
/packages/apps/Browser/src/com/android/browser/provider/ |
BrowserProvider2.java | 46 import android.provider.BrowserContract.Combined; 128 bookmarkOrHistoryColumn(Combined.TITLE), 129 bookmarkOrHistoryLiteral(Combined.URL, 168 static final int COMBINED = 6000; 223 matcher.addURI(authority, "combined", COMBINED); 224 matcher.addURI(authority, "combined/#", COMBINED_ID); 328 // Combined history half 330 map.put(Combined._ID, bookmarkOrHistoryColumn(Combined._ID)) [all...] |
/packages/apps/Browser/src/com/android/browser/ |
BrowserHistoryPage.java | 42 import android.provider.BrowserContract.Combined; 89 Combined._ID, // 0 90 Combined.DATE_LAST_VISITED, // 1 91 Combined.TITLE, // 2 92 Combined.URL, // 3 93 Combined.FAVICON, // 4 94 Combined.VISITS, // 5 95 Combined.IS_BOOKMARK, // 6 115 Uri.Builder combinedBuilder = Combined.CONTENT_URI.buildUpon(); 119 String sort = Combined.DATE_LAST_VISITED + " DESC" [all...] |
/packages/apps/Email/tests/src/com/android/email/activity/ |
AccountSelectorAdapterTest.java | 47 * - Confirm that AccountsLoader adds the combined view row, iif there is more than 1 account. 57 // Only 1 account -- no combined view row. 69 // 2 accounts -- with combined view row, so returns 3 account rows. 131 // combined - no mailbox 143 // combined - all inbox
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/ |
updateBugState.xml | 32 this cargument annot be combined with bugList 44 this argument cannot be combined with bugList 47 this argument cannot be combined with bugList
|
/frameworks/wilhelm/src/android/ |
android_Effect.h | 102 * should be combined with the send level for the aux level to follow volume changes. 109 * should be combined with the send level for the aux level to follow volume changes. 117 * should be combined with the send level for the aux level to follow volume changes.
|
/development/scripts/ |
combine_sdks.sh | 97 echo "Combined SDK available at $OUTPUT" 101 echo "Unzipped combined SDK available at $OUT_DIR"
|
/external/valgrind/main/exp-sgcheck/tests/ |
hackedbz2.stdout.exp | 2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373 10 final combined CRC = 0xA212ABF8
|
/frameworks/base/media/libdrm/mobile1/include/parser/ |
parser_dm.h | 66 int32_t rightsOffset; /**< The offset of the rights object in case of combined delivery */ 67 int32_t rightsLen; /**< The length of the rights object in case of combined delivery */
|