HomeSort by relevance Sort by last modified time
    Searched defs:ttype (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreePatternParser.h 40 NSInteger ttype; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreePatternParser.h 40 NSInteger ttype; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreePatternParser.h 40 NSInteger ttype; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreePatternParser.h 40 NSInteger ttype; variable
60 @property NSInteger ttype; variable
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternParser.cs 38 protected int ttype; field in class:Antlr.Runtime.Tree.TreePatternParser
46 ttype = tokenizer.NextToken(); // kickstart
50 if (ttype == TreePatternLexer.BEGIN) {
52 } else if (ttype == TreePatternLexer.ID) {
54 if (ttype == TreePatternLexer.EOF) {
63 if (ttype != TreePatternLexer.BEGIN)
66 ttype = tokenizer.NextToken();
71 while (ttype == TreePatternLexer.BEGIN ||
72 ttype == TreePatternLexer.ID ||
73 ttype == TreePatternLexer.PERCENT |
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternParser.cs 40 protected int ttype; field in class:Antlr.Runtime.Tree.TreePatternParser
49 ttype = tokenizer.NextToken(); // kickstart
54 if ( ttype == TreePatternLexer.Begin )
58 else if ( ttype == TreePatternLexer.Id )
61 if ( ttype == CharStreamConstants.EndOfFile )
72 if ( ttype != TreePatternLexer.Begin )
75 ttype = tokenizer.NextToken();
81 while ( ttype == TreePatternLexer.Begin ||
82 ttype == TreePatternLexer.Id ||
83 ttype == TreePatternLexer.Percent |
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternParser.java 35 protected int ttype; field in class:TreePatternParser
43 ttype = tokenizer.nextToken(); // kickstart
47 if ( ttype==TreePatternLexer.BEGIN ) {
50 else if ( ttype==TreePatternLexer.ID ) {
52 if ( ttype==TreePatternLexer.EOF ) {
61 if ( ttype != TreePatternLexer.BEGIN ) {
64 ttype = tokenizer.nextToken();
69 while ( ttype==TreePatternLexer.BEGIN ||
70 ttype==TreePatternLexer.ID ||
71 ttype==TreePatternLexer.PERCENT |
    [all...]
TreeWizard.java 148 for (int ttype = Token.MIN_TOKEN_TYPE; ttype < tokenNames.length; ttype++) {
149 String name = tokenNames[ttype];
150 m.put(name, new Integer(ttype));
185 int ttype = adaptor.getType(t); local
186 List elements = (List)m.get(new Integer(ttype));
189 m.put(new Integer(ttype), elements);
199 /** Return a List of tree nodes with token type ttype */
200 public List find(Object t, int ttype) {
    [all...]
  /external/ltp/testcases/kernel/syscalls/clock_nanosleep/
clock_nanosleep01.c 39 #define TYPE_NAME(x) .ttype = x, .desc = #x
43 int ttype; /* test type (enum) */ member in struct:test_case
105 if (tc->ttype == SEND_SIGINT)
115 if (tc->ttype == SEND_SIGINT) {
  /system/sepolicy/tools/sepolicy-analyze/
dups.c 21 struct type_datum *stype, *ttype, *stype2, *ttype2; local
36 ttype = policydb->type_val_to_struct[k->target_type - 1];
37 attrib1 = stype->flavor || ttype->flavor;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 163 int ttype = g.getTokenType(t.getText()); local
164 out.writeShort(ttype);
176 int ttype = g.getTokenType(t.getText()); local
177 out.writeShort(ttype);
AssignTokenTypesBehavior.java 239 int ttype = grammar.getTokenType(literal);
240 grammar.defineLexerRuleForStringLiteral(literal, ttype);
304 int ttype = ((Integer)tokens.get(tokenID)).intValue(); local
305 root.defineToken(tokenID, ttype);
310 int ttype = ((Integer)stringLiterals.get(lit)).intValue(); local
311 root.defineToken(lit, ttype);
RandomPhrase.java 201 int ttype = ttypeI.intValue(); local
202 String ttypeDisplayName = parser.getTokenDisplayName(ttype);
LeftRecursiveRuleAnalyzer.java 62 int ttype = g.getTokenType(t.getText()); local
63 tokenToPrec.put(ttype, alt);
  /external/ltp/testcases/kernel/syscalls/get_mempolicy/
get_mempolicy01.c 89 int ttype; member in struct:test_case
109 .ttype = DEFAULT,
116 .ttype = DEFAULT,
123 .ttype = DEFAULT,
130 .ttype = DEFAULT,
137 .ttype = DEFAULT,
144 .ttype = ADDR,
151 .ttype = ADDR,
158 .ttype = ADDR,
165 .ttype = ADDR
    [all...]
  /external/selinux/python/audit2allow/
sepolgen-ifgen-attr-helper.c 90 char *stype, *ttype, *tclass; local
92 ttype = p->p_type_val_to_name[key->target_type - 1];
94 if (stype && ttype) {
95 fprintf(fp, "%s,%s,%s", stype, ttype, tclass);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_send.c 259 int n, ttype, tclass; local
267 ttype = ns_get16(cp); cp += INT16SZ;
269 if (ttype == type &&
314 int n, ttype, tclass; local
322 ttype = ns_get16(cp); cp += INT16SZ;
324 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2))
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 78 int ttype; field in class:SerializedGrammar.TokenRef
79 public TokenRef(int ttype) { this.ttype = ttype; }
80 public String toString() { return String.valueOf(ttype); }
153 int ttype = in.readShort(); local
154 alt.add(new TokenRef(ttype));
155 //System.out.println("read token "+gr.getTokenDisplayName(ttype));
  /external/clang/test/CodeGen/
2008-03-24-BitField-And-Alloca.c 40 unsigned int ttype : 3; member in struct:_Key::__anon15780
69 (iospec.key_io.ttype != G_VS) &&
70 (iospec.key_io.ttype != G_GS) &&
71 (iospec.key_io.ttype != G_FS)) ||
  /external/ltp/testcases/kernel/syscalls/ppoll/
ppoll01.c 39 #define TYPE_NAME(x) .ttype = x, .desc = #x
42 int ttype; /* test type (enum) */ member in struct:test_case
  /external/selinux/checkpolicy/test/
dispol.c 65 char *stype, *ttype, *tclass; local
67 ttype = p->p_type_val_to_name[key->target_type - 1];
69 if (stype && ttype)
70 fprintf(fp, "%s %s : %s ", stype, ttype, tclass);
73 else if (ttype)
74 fprintf(fp, "%u %s : %s ", key->source_type, ttype, tclass);
349 display_id(p, fp, SYM_TYPES, ft->ttype - 1, "");
  /libcore/ojluni/src/main/java/java/io/
StreamTokenizer.java 128 public int ttype = TT_NOTHING; field in class:StreamTokenizer
151 * initializing ttype. FIXME This could be made public and
163 * {@code ttype} field is {@code TT_WORD}. The current token is
164 * a quoted string token when the value of the {@code ttype} field is
171 * @see java.io.StreamTokenizer#ttype
178 * the {@code ttype} field is {@code TT_NUMBER}.
183 * @see java.io.StreamTokenizer#ttype
330 * single-character token and sets {@code ttype} field to the
339 * @see java.io.StreamTokenizer#ttype
365 * constant, the {@code ttype} field is set to the strin
    [all...]
  /system/bt/stack/hid/
hidh_conn.cc 784 uint8_t ttype, param, rep_type, evt; local
802 ttype = HID_GET_TRANS_FROM_HDR(*p_data);
811 switch (ttype) {
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 54 static void * match (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
56 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
57 static ANTLR3_BOOLEAN mismatchIsUnwantedToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype);
64 static void * recoverFromMismatchedToken (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
405 /// Match current input symbol against ttype. Upon error, do one token
416 ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow)
453 if (is->_LA(is, 1) == ttype)
478 matchedSymbol = recognizer->recoverFromMismatchedToken(recognizer, ttype, follow);
529 mismatchIsUnwantedToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype)
535 if (nextt == ttype)
1718 ANTLR3_UINT32 ttype; local
1768 ANTLR3_UINT32 ttype; local
    [all...]
  /bionic/libc/dns/resolv/
res_send.c 294 int n, ttype, tclass; local
302 ttype = ns_get16(cp); cp += INT16SZ;
304 if (ttype == type && tclass == class &&
344 int n, ttype, tclass; local
352 ttype = ns_get16(cp); cp += INT16SZ;
354 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2))
    [all...]

Completed in 885 milliseconds

1 2 3 4 5