Searched refs:id (Results 1 - 25 of 9147) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Dchannel.cpp274 switch (list->id[i]) {
447 } while (list->id[i] != end_of_sequence);
/external/aac/libAACenc/src/
H A Dbitenc.cpp1076 switch (list->id[i])
1268 } while (list->id[i] != end_of_sequence);
/external/aac/libFDK/include/
H A DFDK_tools_rom.h253 const rbd_id_t *id; member in struct:element_list
/external/android-clat/
H A Ddump.c51 printf("id = %x\n",ntohs(header->id));
107 printf("icmp.un.echo.id = %x\n",ntohs(icmp->un.echo.id));
H A Dtranslate.c109 * proto - ethernet protocol id: ETH_P_IP(ipv4) or ETH_P_IPV6(ipv6)
132 ip->id = 0;
194 frag_hdr->ip6f_ident = htonl(ntohs(old_header->id));
213 ip_targ->id = htons(ntohl(frag_hdr->ip6f_ident) & 0xffff);
257 icmp6_targ->icmp6_id = icmp->un.echo.id;
303 icmp_targ->un.echo.id = icmp6->icmp6_id;
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
H A DgUnit.g51 gUnitDef: 'gunit' g1=id ('walks' g2=id)? ';'
69 option : id '=' treeAdaptor
71 if ( $id.text.equals("TreeAdaptor") ) {
80 : id EXT*
172 : id EXT? {$line = $id.line;}
175 id returns [int line]
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
H A DANTLRv3.g101 g='grammar' id ';' optionsSpec? tokensSpec? attrScope* action*
105 id DOC_COMMENT? optionsSpec? tokensSpec? attrScope* action* rule+
122 : 'scope' id ACTION -> ^('scope' id ACTION)
127 : '@' (actionScopeName '::')? id ACTION -> ^('@' actionScopeName? id ACTION)
134 : id
144 : id '=' optionValue -> ^('=' id optionValue)
148 : id
[all...]
H A DStGUnit.g53 : 'gunit' name=id {adapter.setGrammarName($name.text);}
54 ('walks' id)? ';'
99 : id {$path = $id.text;} (EXT {$path += $EXT.text;})?
102 id : TOKEN_REF
/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.as433 * http://portal.acm.org/citation.cfm?id=947902.947905
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTreeAdaptor.cs259 int id;
260 if (treeToUniqueIDMap.TryGetValue(node, out id))
261 return id;
263 id = uniqueNodeID;
264 treeToUniqueIDMap[node] = id;
266 return id;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTreeAdaptor.cs347 int id;
348 if ( treeToUniqueIDMap.TryGetValue( node, out id ) )
349 return id;
351 id = uniqueNodeID;
352 treeToUniqueIDMap[node] = id;
354 return id;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas2225 * http://portal.acm.org/citation.cfm?id=947902.947905
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseMapElement.h41 + (id) newANTLRBaseMapElement;
42 + (id) newANTLRBaseMapElementWithIndex:(NSNumber *)anIdx;
43 - (id) init;
44 - (id) initWithAnIndex:(NSNumber *)anIdx;
46 - (id) copyWithZone:(NSZone *)aZone;
H A DANTLRBaseRecognizer.h80 - (id) init;
81 - (id) initWithLen:(NSInteger)aLen;
82 - (id) initWithState:(ANTLRRecognizerSharedState *)aState;
108 - (id) getInput;
113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
114 - (void) matchAny:(id<ANTLRIntStream>)anInput;
115 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
116 - (BOOL) mismatchIsMissingToken:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)follow;
124 - (NSString *)getTokenErrorDisplay:(id<ANTLRToke
[all...]
H A DANTLRBaseStack.h52 - (id)init;
53 - (id)initWithLen:(NSInteger)cnt;
57 - (id) copyWithZone:(NSZone *)aZone;
H A DANTLRBaseTree.h33 + (id<ANTLRBaseTree>) newANTLRBaseTree;
34 + (id<ANTLRBaseTree>) newANTLRBaseTree:(id<ANTLRBaseTree>)node;
36 - (id<ANTLRBaseTree>) init;
37 - (id<ANTLRBaseTree>) initWith:(id<ANTLRTree>)node;
39 - (id<ANTLRBaseTree>) getChild:(NSUInteger)i;
42 - (id<ANTLRBaseTree>)getFirstChildWithType:(NSInteger)type;
48 - (void) addChild:(id<ANTLRTree>) tree;
52 - (void) setChild:(NSInteger) i With:(id<ANTLRTre
[all...]
H A DANTLRBaseTreeAdaptor.h40 + (id<ANTLRTreeAdaptor>) newEmptyTree;
42 - (id) init;
44 - (id) copyWithZone:(NSZone *)aZone;
46 - (id) emptyNode;
65 - (id) errorNode:(id<ANTLRTokenStream>)anInput
66 From:(id<ANTLRToken>)startToken
67 To:(id<ANTLRToken>)stopToken
70 - (BOOL) isNil:(id<ANTLRTree>) aTree;
72 - (id<ANTLRTre
[all...]
H A DANTLRBitSet.h88 - (id) mutableCopyWithZone:(NSZone *) theZone;
H A DANTLRBufferedTokenStream.h34 id<ANTLRTokenSource> tokenSource;
56 @property (retain, getter=getTokenSource,setter=setTokenSource) id<ANTLRTokenSource> tokenSource;
63 + (ANTLRBufferedTokenStream *) newANTLRBufferedTokenStreamWith:(id<ANTLRTokenSource>)aSource;
64 - (id) initWithSource:(id<ANTLRTokenSource>)aSource;
65 - (id) copyWithZone:(NSZone *)aZone;
80 - (id<ANTLRToken>) getToken:(NSInteger) i;
83 - (id<ANTLRToken>) LT:(NSInteger) k;
84 - (id<ANTLRToken>) LB:(NSInteger) k;
86 - (id<ANTLRTokenSourc
[all...]
H A DANTLRBufferedTreeNodeStream.h51 + (id) newANTLRStreamIterator:(ANTLRBufferedTreeNodeStream *) theStream;
53 - (id) initWithStream:(ANTLRBufferedTreeNodeStream *) theStream;
56 - (id) next;
63 id<ANTLRTree> up;
64 id<ANTLRTree> down;
65 id<ANTLRTree> eof;
69 id<ANTLRTree> root; // root
71 id<ANTLRTokenStream> tokens;
80 id currentSymbol;
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTre
[all...]
H A DANTLRCharStreamState.h47 - (id) init;
H A DANTLRCommonErrorNode.h40 id<ANTLRIntStream> input;
41 id<ANTLRToken> startToken;
42 id<ANTLRToken> stopToken;
46 + (id) newANTLRCommonErrorNode:(id<ANTLRTokenStream>)anInput
47 From:(id<ANTLRToken>)startToken
48 To:(id<ANTLRToken>)stopToken
51 - (id) initWithInput:(id<ANTLRTokenStream>)anInput
52 From:(id<ANTLRToke
[all...]
H A DANTLRCommonToken.h47 id<ANTLRCharStream> input;
58 @property (retain, getter=getInput, setter=setInput:) id<ANTLRCharStream> input;
62 + (ANTLRCommonToken *) newANTLRCommonToken:(id<ANTLRCharStream>)anInput
68 + (id<ANTLRToken>) newANTLRCommonToken:(NSInteger)tokenType Text:(NSString *)tokenText;
69 + (id<ANTLRToken>) newANTLRCommonTokenWithToken:(id<ANTLRToken>)fromToken;
70 + (id<ANTLRToken>) eofToken;
71 + (id<ANTLRToken>) skipToken;
72 + (id<ANTLRToken>) invalidToken;
77 - (ANTLRCommonToken *) initWithInput:(id<ANTLRCharStrea
[all...]

Completed in 8006 milliseconds

1234567891011>>