HomeSort by relevance Sort by last modified time
    Searched refs:ACTION (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 452 ( ACTION )?
479 : (action)+
483 action
484 : AMPERSAND^ (actionScopeName COLON! COLON!)? id ACTION
488 * ids for action scopes.
547 : 'scope'^ id ruleActions? ACTION
614 : AMPERSAND^ id ACTION
622 : ( 'scope' ruleActions? ACTION )?
624 -> ^(SCOPE[$start,"scope"] ruleActions? ACTION? idList*)
665 // linear approx LL(2) issue. COLON ACTION
    [all...]
ActionTranslator.g 82 * represent the translated action.
85 // System.out.println("###\naction="+action);
106 public List translateAction(String action) {
114 new CommonToken(ANTLRParser.ACTION,action),outerAltNum);
334 // supercomplicated because I can't exec the above action.
363 // supercomplicated because I can't exec the above action.
668 String action = getText().substring(1,getText().length());
677 action);
686 : '%' '(' ACTION ')' '(' ( WS? ARG (',' WS? ARG)* WS? )? ')
    [all...]
TreeToNFAConverter.g 197 : ^( 'scope' ID ( ^(AMPERSAND .*) )* ACTION )
277 : ^( 'scope' ( ^(AMPERSAND .*) )* (ACTION)? ( ID )* )
326 : ^('catch' ARG_ACTION ACTION)
330 : ^('finally' ACTION)
367 | ACTION {$g = factory.build_Action($ACTION);}
CodeGenTreeWalker.g 339 : ^( 'scope' ID ( ^(AMPERSAND .*) )* ACTION )
526 : ^( 'scope' ( ^(AMPERSAND .*) )* (ACTION)? ( ID )* )
660 : ^('catch' ARG_ACTION ACTION)
662 List chunks = generator.translateAction(currentRuleName,$ACTION);
663 $ruleST.addAggr("exceptions.{decl,action}",$ARG_ACTION.text,chunks);
668 : ^('finally' ACTION)
670 List chunks = generator.translateAction(currentRuleName,$ACTION);
779 : act=ACTION
782 $code.add("action", generator.translateAction(currentRuleName,$act));
787 $code.add("action", generator.translateAction(currentRuleName,$act2))
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.h 868 default debugging output method then executes an action and jumps to a label.
875 #define require_noerr_action_string( ERR, LABEL, ACTION, STR ) \
884 { ACTION; } \
919 @abstract Require that an error code is noErr (0) with an action to execute otherwise.
924 function name, etc.) using the default debugging output method then executes an action and jumps to a label.
931 #define require_noerr_action( ERR, LABEL, ACTION ) \
940 { ACTION; } \
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTemplates.java 49 String action = "x = %foo(name={$ID.text});"; local
61 "a : ID {"+action+"}\n" +
72 new CommonToken(ANTLRParser.ACTION,action),1);
87 String action = "x = %foo();"; local
98 "a : ID {"+action+"}\n" +
109 new CommonToken(ANTLRParser.ACTION,action),1);
124 String action = "x = %({\"foo\"})(name={$ID.text});"; local
136 "a : ID {"+action+"}\n"
161 String action = "x = %{$ID.text};"; local
196 String action = "%x.y = z;"; local
232 String action = "%{foo($ID.text).getST()}.y = z;"; local
290 String action = "%x .y = z;"; local
318 String action = "%x. y = z;"; local
    [all...]
TestMessages.java 48 String action = "$other.tree = null;"; local
57 " : other=otherrule {" + action +"}\n" +
65 new CommonToken(ANTLRParser.ACTION,action),1);
  /external/chromium/base/
gmock_unittest.cc 56 ACTION(ReturnVal) {
60 ACTION(ReturnSecond) {
108 // Test a mock of the ReturnSecond behavior using an action that provides an
124 // Alternate implemention of ReturnSecond using a more general custom action,
  /external/chromium/chrome/browser/policy/
asynchronous_policy_loader_unittest.cc 42 ACTION(CreateTestDictionary) {
52 ACTION(RescheduleImmediatePolicyReload) {
  /external/chromium/chrome/browser/sync/
profile_sync_test_util.h 32 ACTION(QuitUIMessageLoop) {
test_profile_sync_service.h 22 ACTION(ReturnNewDataTypeManager) {
  /external/ipsec-tools/src/libipsec/
policy_parse.y 142 %token ACTION PROTOCOL MODE LEVEL LEVEL_SPECIFY IPADDRESS PORT
145 %type <num> DIR PRIORITY ACTION PROTOCOL MODE LEVEL
150 : DIR ACTION
165 | DIR PRIORITY PRIO_OFFSET ACTION
184 | DIR PRIORITY HYPHEN PRIO_OFFSET ACTION
206 | DIR PRIORITY PRIO_BASE ACTION
217 | DIR PRIORITY PRIO_BASE PLUS PRIO_OFFSET ACTION
239 | DIR PRIORITY PRIO_BASE HYPHEN PRIO_OFFSET ACTION
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 93 public static final String ACTION = "action";
Contact.java 62 public static final String ACTION = ParameterNames.ACTION;
  /external/webkit/Tools/android/flex-2.5.4a/
scan.l 72 %x FIRSTCCL CCL ACTION RECOVER COMMENT ACTION_STRING PERCENT_BRACE_ACTION
356 BEGIN(ACTION);
368 BEGIN(ACTION);
381 BEGIN(ACTION);
382 unput( '\n' ); /* so <ACTION> sees it */
566 <ACTION>"/*" ACTION_ECHO; yy_push_state( COMMENT );
568 <CODEBLOCK,ACTION>{
597 <ACTION>{
623 \" ACTION_ECHO; BEGIN(ACTION);
627 <COMMENT,ACTION,ACTION_STRING><<EOF>>
    [all...]
initscan.c 89 /* Action number for EOF rule of a given start state. */
92 /* Special action meaning "start processing a new file". */
277 * corresponding action - sets up yytext.
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 40 /** A basic action stripper. */
76 wiz.visit(t, ANTLRv3Parser.ACTION,
78 public void visit(Object t) { ACTION(tokens, (CommonTree)t); }
81 wiz.visit(t, ANTLRv3Parser.AT, // ^('@' id ACTION) rule actions
85 CommonTree action = null;
86 if ( a.getChildCount()==2 ) action = (CommonTree)a.getChild(1);
87 else if ( a.getChildCount()==3 ) action = (CommonTree)a.getChild(2);
88 if ( action.getType()==ANTLRv3Parser.ACTION ) {
91 killTrailingNewline(tokens, action.getTokenStopIndex())
    [all...]
GrammarSanity.java 286 case ANTLRParser.ACTION : // skip past actions
316 while ( t.getType()==ANTLRParser.ACTION ||
  /external/chromium/testing/gmock/test/
gmock-generated-actions_test.cc 54 using testing::Action;
171 Action<int(int, int(*)())> a = InvokeArgument<1>(); // NOLINT
177 Action<int(UnaryFunctor)> a = InvokeArgument<0>(true); // NOLINT
183 Action<int(int(*)(int, int, int, int, int))> a = // NOLINT
190 Action<int(SumOf5Functor)> a = // NOLINT
197 Action<int(int(*)(int, int, int, int, int, int))> a = // NOLINT
204 Action<int(SumOf6Functor)> a = // NOLINT
211 Action<string(string(*)(const char*, const char*, const char*,
220 Action<string(string(*)(const char*, const char*, const char*,
229 Action<string(string(*)(const char*, const char*, const char*
458 Action<int(int*, int*, char*, char*)> action = \/\/ NOLINT local
475 Action<int(int*, int*, char*, char*, char*)> action = \/\/ NOLINT local
494 Action<int(int*, int*, char*, char*, char*, char*)> action = \/\/ NOLINT local
516 char*)> action = local
540 char*, char*)> action = local
567 char*, char*, char*)> action = local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 196 if ( ts.testSuites.get(input).getType()== gUnitParser.ACTION && ruleWithReturn.containsKey(ts.getRuleName()) ) {
221 if ( ts.testSuites.get(input).getType()==gUnitParser.ACTION ) { // trim ';' at the end of ACTION if there is...
246 if ( ts.testSuites.get(input).getType()== gUnitParser.ACTION && ruleWithReturn.containsKey(ts.getTreeRuleName()) ) {
267 if ( ts.testSuites.get(input).getType()==gUnitParser.ACTION ) { // trim ';' at the end of ACTION if there is...
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
mlmeBuilder.c 177 case ACTION:
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
spectrumMngmntMgr.c 345 return mlmeBuilder_sendFrame(pMeasurementMgr->hMlme,ACTION,(TI_UINT8*)&measurementReport,8,0);
438 status = mlmeBuilder_sendFrame(pMeasurementMgr->hMlme,ACTION,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 43 public static final int ACTION = -6;
  /external/webkit/Tools/android/flex-2.5.4a/MISC/MVS/
initscan-mvs.c 135 /* action number for EOF rule of a given start state */
138 /* special action meaning "start processing a new file" */
241 #define ACTION 12
254 * corresponding action - sets up yytext
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_default_unittest.cc 138 ACTION(STLDeleteElements0) {
142 ACTION(QuitUIMessageLoop) {
168 "http://foo.example.com/action",
215 "http://foo.example.com/action",
225 "http://bar.example.com/action",
235 "http://baz.example.com/action",
247 "http://blacklisted.example.com/action",
257 "http://blacklisted2.example.com/action",
376 "http://bar.example.com/action",
445 "http://bar.example.com/action",
    [all...]

Completed in 4464 milliseconds

12 3 4