Searched refs:rec (Results 1 - 25 of 515) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3defs.h593 ANTLR3_API ANTLR3_INT32 antlr3dfaspecialTransition (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s);
594 ANTLR3_API ANTLR3_INT32 antlr3dfaspecialStateTransition (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s);
595 ANTLR3_API ANTLR3_INT32 antlr3dfapredict (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA cdfa);
606 antlr3RewriteRuleTOKENStreamNewAE (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description);
608 antlr3RewriteRuleTOKENStreamNewAEE (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement);
610 antlr3RewriteRuleTOKENStreamNewAEV (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector);
613 antlr3RewriteRuleNODEStreamNewAE (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description);
615 antlr3RewriteRuleNODEStreamNewAEE (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement);
617 antlr3RewriteRuleNODEStreamNewAEV (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector);
620 antlr3RewriteRuleSubtreeStreamNewAE (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT
[all...]
H A Dantlr3lexer.h105 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_LEXER_struct
H A Dantlr3parser.h59 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_PARSER_struct
H A Dantlr3rewritestreams.h101 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
H A Dantlr3treeparser.h57 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_TREE_PARSER_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3cyclicdfa.c53 noViableAlt(pANTLR3_BASE_RECOGNIZER rec, pANTLR3_CYCLIC_DFA cdfa, ANTLR3_UINT32 s) argument
59 if (rec->state->backtracking > 0)
61 rec->state->failed = ANTLR3_TRUE;
65 rec->exConstruct(rec);
66 rec->state->exception->type = ANTLR3_NO_VIABLE_ALT_EXCEPTION;
67 rec->state->exception->message = cdfa->description;
68 rec->state->exception->decisionNum = cdfa->decisionNumber;
69 rec->state->exception->state = s;
79 antlr3dfapredict (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREA argument
[all...]
H A Dantlr3lexer.c60 static void displayRecognitionError (pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 * tokenNames);
61 static void reportError (pANTLR3_BASE_RECOGNIZER rec);
66 static void reset (pANTLR3_BASE_RECOGNIZER rec);
88 lexer->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_LEXER, sizeHint, state);
90 if (lexer->rec == NULL)
95 lexer->rec->super = lexer;
97 lexer->rec->displayRecognitionError = displayRecognitionError;
98 lexer->rec->reportError = reportError;
99 lexer->rec->reset = reset;
100 lexer->rec
175 reset(pANTLR3_BASE_RECOGNIZER rec) argument
411 reportError(pANTLR3_BASE_RECOGNIZER rec) argument
[all...]
H A Dantlr3parser.c76 parser->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_PARSER, sizeHint, state);
78 if (parser->rec == NULL)
84 parser->rec->super = parser;
88 parser->rec->exConstruct = antlr3MTExceptionNew;
124 if (parser->rec != NULL)
130 if (parser->rec->state != NULL)
132 if (parser->rec->state->following != NULL)
134 parser->rec->state->following->free(parser->rec->state->following);
135 parser->rec
[all...]
H A Dantlr3rewritestreams.c102 stream->rec->state->rStreams->add(stream->rec->state->rStreams, stream, (void(*)(void *))expungeRS);
171 stream->rec->state->rStreams->add(stream->rec->state->rStreams, stream, (void(*)(void *))expungeRS);
187 antlr3RewriteRuleElementStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
195 if (rec->state->rStreams->count > 0)
200 stream = rec->state->rStreams->remove(rec->state->rStreams, rec->state->rStreams->count - 1);
224 stream->rec
257 antlr3RewriteRuleElementStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
280 antlr3RewriteRuleElementStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
309 antlr3RewriteRuleTOKENStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
333 antlr3RewriteRuleTOKENStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
352 antlr3RewriteRuleTOKENStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
373 antlr3RewriteRuleSubtreeStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
395 antlr3RewriteRuleSubtreeStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
418 antlr3RewriteRuleSubtreeStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
442 antlr3RewriteRuleNODEStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
466 antlr3RewriteRuleNODEStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
485 antlr3RewriteRuleNODEStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
[all...]
H A Dantlr3treeparser.c67 parser->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_PARSER, sizeHint, state);
69 if (parser->rec == NULL)
78 parser->rec->super = parser;
79 parser->rec->type = ANTLR3_TYPE_TREE_PARSER;
83 parser->rec->mismatch = mismatch;
84 parser->rec->exConstruct = antlr3MTNExceptionNew;
85 parser->rec->getCurrentInputSymbol = getCurrentInputSymbol;
86 parser->rec->getMissingSymbol = getMissingSymbol;
129 if (parser->rec != NULL)
135 if (parser->rec
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DC.stg239 #define RECOGNIZER LEXER->rec
369 #define RECOGNIZER PARSER->rec
449 #define RECOGNIZER PARSER->rec
780 #define TOKENSOURCE(lxr) lxr->pLexer->rec->state->tokSource
908 {g|ctx-><g:delegateName()>->pLexer->rec->state = NULL;
999 ctx->pLexer->rec->ruleMemo = antlr3IntTrieNew(15); /* 16 bit depth is enough for 32768 rules! */
1026 {g|ctx-><g:delegateName()> = <g.recognizerName>NewSSD(instream, ctx->pLexer->rec->state, ctx<grammar.delegators:{g|, <g:delegateName()>}>);}; separator="\n">
1038 ctx->pLexer->rec->state->tokSource->nextToken = <name>NextToken;
1101 state = lexer->rec->state;
1382 {g| ctx-><g:delegateName()>-><if(TREE_PARSER)>pTreeParser<else>pParser<endif>->rec
[all...]
/external/bison/build-aux/
H A Dtexinfo.tex189 par-a-digms rath-er rec-tan-gu-lar ro-bot-ics se-vere-ly set-up spa-ces
7493 % (They're different since rec and nonrec macros end differently.)
/external/bison/
H A Dconfigure2061 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
38239 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
/external/bison/lib/
H A Dspawn_faction_addclose.c56 struct __spawn_action *rec;
59 rec = &file_actions->_actions[file_actions->_used];
60 rec->tag = spawn_do_close;
61 rec->action.open_action.fd = fd;
H A Dspawn_faction_adddup2.c56 struct __spawn_action *rec;
59 rec = &file_actions->_actions[file_actions->_used];
60 rec->tag = spawn_do_dup2;
61 rec->action.dup2_action.fd = fd;
62 rec->action.dup2_action.newfd = newfd;
H A Dspawn_faction_addopen.c57 struct __spawn_action *rec;
60 rec = &file_actions->_actions[file_actions->_used];
61 rec->tag = spawn_do_open;
62 rec->action.open_action.fd = fd;
63 rec->action.open_action.path = path;
64 rec->action.open_action.oflag = oflag;
65 rec->action.open_action.mode = mode;
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex227 device $D_{rec}$ managed by CPU $C_{rec}$ on the recorded system
/external/blktrace/btt/
H A Doutput.c419 char *rec = is_q2q ? "QSK" : "DSK"; local
422 rec, make_dev_hdr(dev_info, 15, dip, 0),
/external/bluetooth/bluedroid/bta/hh/
H A Dbta_hh_act.c290 bta_hh_update_di_info(p_cb, di_rec.rec.vendor, di_rec.rec.product, di_rec.rec.version, 0);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_dm.c1513 bt_service_record_t rec; local
1518 memset(&rec, 0, sizeof(bt_service_record_t));
1524 prop.val = (void*)&rec;
1525 prop.len = sizeof(rec);
1530 rec.channel = p_data->disc_res.result - 3;
1532 rec.name[0] = 0;
/external/bluetooth/bluedroid/stack/include/
H A Dsdp_api.h181 tSDP_DI_RECORD rec; member in struct:t_sdp_di_get_record
/external/bluetooth/bluedroid/stack/sdp/
H A Dsdp_api.c1063 SDP_AttrStringCopy( p_device_info->rec.client_executable_url, p_curr_attr,
1068 SDP_AttrStringCopy( p_device_info->rec.service_description, p_curr_attr, SDP_MAX_ATTR_LEN );
1072 SDP_AttrStringCopy( p_device_info->rec.documentation_url, p_curr_attr, SDP_MAX_ATTR_LEN );
1082 p_device_info->rec.vendor = p_curr_attr->attr_value.v.u16;
1088 p_device_info->rec.vendor_id_source = p_curr_attr->attr_value.v.u16;
1094 p_device_info->rec.product = p_curr_attr->attr_value.v.u16;
1100 p_device_info->rec.version = p_curr_attr->attr_value.v.u16;
1106 p_device_info->rec.primary_record = (BOOLEAN)p_curr_attr->attr_value.v.u8;
1318 BE_STREAM_TO_UINT16 (p_device_info->rec.vendor, p_temp);
1326 BE_STREAM_TO_UINT16 (p_device_info->rec
[all...]
/external/chromium_org/sdch/open-vcdiff/
H A Dconfigure1132 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
16119 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Ddojo-1.6.1.js2494 l = bases.length, i = 0, j, lin, base, top, proto, rec, name, refs;
2517 rec = nameMap[name];
2518 if(top && top !== rec){
2519 rec.refs.push(top);
2522 top = rec;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 3146 milliseconds

1234567891011>>