HomeSort by relevance Sort by last modified time
    Searched refs:Follow (Results 1 - 25 of 50) sorted by null

1 2

  /external/flatbuffers/rust/flatbuffers/src/
follow.rs 19 /// Follow is a trait that allows us to access FlatBuffers in a declarative,
21 /// optimizations). Conceptually, Follow lifts the offset-based access
24 /// all other data. At this time, Follow is not utilized much on the write
27 /// Writing a new Follow implementation primarily involves deciding whether
30 pub trait Follow<'a> {
32 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner;
35 /// Execute a follow as a top-level function.
38 pub fn lifted_follow<'a, T: Follow<'a>>(buf: &'a [u8], loc: usize) -> T::Inner {
39 T::follow(buf, loc)
42 /// FollowStart wraps a Follow impl in a struct type. This can make certai
    [all...]
vtable.rs 18 use follow::Follow;
90 impl<'a> Follow<'a> for VTable<'a> {
92 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
vector.rs 23 use follow::Follow;
45 impl<'a, T: Follow<'a> + 'a> Vector<'a, T> {
51 T::follow(self.0, self.1 as usize + SIZE_UOFFSET + sz * idx)
97 impl<'a> Follow<'a> for &'a str {
99 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
119 impl<'a, T: EndianScalar> Follow<'a> for &'a [T] {
121 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
126 /// Implement Follow for all possible Vectors that have Follow-able elements
    [all...]
table.rs 17 use follow::Follow;
34 <BackwardsSOffset<VTable<'a>>>::follow(self.buf, self.loc)
37 pub fn get<T: Follow<'a> + 'a>(
46 Some(<T>::follow(self.buf, self.loc + o))
50 impl<'a> Follow<'a> for Table<'a> {
53 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
59 pub fn get_root<'a, T: Follow<'a> + 'a>(data: &'a [u8]) -> T::Inner {
60 <ForwardsUOffset<T>>::follow(data, 0)
63 pub fn get_size_prefixed_root<'a, T: Follow<'a> + 'a>(data: &'a [u8]) -> T::Inner
    [all...]
lib.rs 33 mod follow;
43 pub use follow::{Follow, FollowStart};
primitives.rs 22 use follow::Follow;
145 /// ForwardsUOffset is used by Follow to traverse a FlatBuffer: the pointer
156 impl<'a, T: Follow<'a>> Follow<'a> for ForwardsUOffset<T> {
159 fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
162 T::follow(buf, loc + off)
166 /// ForwardsVOffset is used by Follow to traverse a FlatBuffer: the pointer
177 impl<'a, T: Follow<'a>> Follow<'a> for ForwardsVOffset<T>
    [all...]
  /external/antlr/runtime/ObjC/Framework/
MismatchedNotSetException.h 44 Follow:(NSString *)expecting;
47 - (id) initWithStream:(id<IntStream>)anInput Follow:(NSString *)expecting;
BaseRecognizer.h 104 - (id) match:(id<IntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
107 - (BOOL) mismatchIsMissingToken:(id<IntStream>)anInput Follow:(ANTLRBitSet *)follow;
131 Follow:(ANTLRBitSet *)follow;
135 Follow:(ANTLRBitSet *)follow;
141 Follow:(ANTLRBitSet *)follow;
    [all...]
MismatchedTokenException.h 51 Follow:(ANTLRBitSet *)follow;
TreeParser.h 60 BitSet:(ANTLRBitSet *)follow;
74 Follow:(ANTLRBitSet *)follow;
  /external/droiddriver/
contributing_aosp.md 5 Follow instructions at https://source.android.com/source/downloading.html except those noted below. You need to set up authentication to be able to submit changes.
  /external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.m 398 [self match:input TokenType:FUNC_DECL Follow:FOLLOW_FUNC_DECL_in_declaration87];
400 [self match:input TokenType:DOWN Follow:nil];
410 [self match:input TokenType:UP Follow:nil];
420 [self match:input TokenType:FUNC_DEF Follow:FOLLOW_FUNC_DEF_in_declaration101];
422 [self match:input TokenType:DOWN Follow:nil];
440 [self match:input TokenType:UP Follow:nil];
482 [self match:input TokenType:VAR_DEF Follow:FOLLOW_VAR_DEF_in_variable126];
484 [self match:input TokenType:DOWN Follow:nil];
502 [self match:input TokenType:UP Follow:nil];
541 [self match:input TokenType:K_ID Follow:FOLLOW_K_ID_in_declarator150];
    [all...]
SimpleCWalker.m 398 [self match:input TokenType:FUNC_DECL Follow:FOLLOW_FUNC_DECL_in_declaration87];
400 [self match:input TokenType:DOWN Follow:nil];
410 [self match:input TokenType:UP Follow:nil];
420 [self match:input TokenType:FUNC_DEF Follow:FOLLOW_FUNC_DEF_in_declaration101];
422 [self match:input TokenType:DOWN Follow:nil];
440 [self match:input TokenType:UP Follow:nil];
482 [self match:input TokenType:VAR_DEF Follow:FOLLOW_VAR_DEF_in_variable126];
484 [self match:input TokenType:DOWN Follow:nil];
502 [self match:input TokenType:UP Follow:nil];
541 [self match:input TokenType:K_ID Follow:FOLLOW_K_ID_in_declarator150];
    [all...]
  /external/antlr/runtime/ObjC/Framework/examples/polydiff/
PolyPrinter.m 241 [self match:input TokenType:8 Follow:FOLLOW_8_in_poly43];
243 [self match:input TokenType:DOWN Follow:nil];
259 [self match:input TokenType:UP Follow:nil];
275 [self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly74];
277 [self match:input TokenType:DOWN Follow:nil];
293 [self match:input TokenType:UP Follow:nil];
309 [self match:input TokenType:9 Follow:FOLLOW_9_in_poly104];
311 [self match:input TokenType:DOWN Follow:nil];
327 [self match:input TokenType:UP Follow:nil];
343 INT1=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly134];
    [all...]
Simplifier.m 571 char_literal1=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly52]; if ( state.failed ) return retval;
575 [self match:input TokenType:TokenTypeDOWN Follow:nil]; if ( state.failed ) return retval;
579 a=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly56]; if ( state.failed ) return retval;
585 b=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly60]; if ( state.failed ) return retval;
589 [self match:input TokenType:TokenTypeUP Follow:nil]; if ( state.failed ) return retval;
640 char_literal2=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly73]; if ( state.failed ) return retval;
644 [self match:input TokenType:TokenTypeDOWN Follow:nil]; if ( state.failed ) return retval;
655 char_literal3=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly76]; if ( state.failed ) return retval;
659 [self match:input TokenType:TokenTypeDOWN Follow:nil]; if ( state.failed ) return retval;
663 a=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly80]; if ( state.failed ) return retval;
    [all...]
PolyDifferentiator.m 344 char_literal1=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly44];
351 [self match:input TokenType:TokenTypeDOWN Follow:nil];
377 [self match:input TokenType:TokenTypeUP Follow:nil];
400 MULT4=(CommonTree *)[self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly55];
404 [self match:input TokenType:TokenTypeDOWN Follow:nil];
408 INT5=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly57];
414 ID6=(CommonTree *)[self match:input TokenType:ID Follow:FOLLOW_ID_in_poly59];
418 [self match:input TokenType:TokenTypeUP Follow:nil];
467 MULT7=(CommonTree *)[self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly71];
471 [self match:input TokenType:TokenTypeDOWN Follow:nil];
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 152 PushFollow(Follow._stat_in_prog48);
278 PushFollow(Follow._expr_in_stat63);
297 Match(input,17,Follow._17_in_stat98);
301 ID2=(CommonTree)Match(input,ID,Follow._ID_in_stat100);
303 PushFollow(Follow._expr_in_stat102);
322 Match(input,FUNC,Follow._FUNC_in_stat128);
520 Match(input,16,Follow._16_in_expr172);
524 PushFollow(Follow._expr_in_expr176);
530 PushFollow(Follow._expr_in_expr180);
549 Match(input,10,Follow._10_in_expr200);
    [all...]
ProfileTreeGrammar.cs 157 PushFollow(Follow._stat_in_prog48);
283 PushFollow(Follow._expr_in_stat63);
302 Match(input,17,Follow._17_in_stat98);
306 ID2=(CommonTree)Match(input,ID,Follow._ID_in_stat100);
308 PushFollow(Follow._expr_in_stat102);
327 Match(input,FUNC,Follow._FUNC_in_stat128);
525 Match(input,16,Follow._16_in_expr172);
529 PushFollow(Follow._expr_in_expr176);
535 PushFollow(Follow._expr_in_expr180);
554 Match(input,10,Follow._10_in_expr200);
    [all...]
DebugGrammarParser.cs 195 PushFollow(Follow._stat_in_prog53);
333 PushFollow(Follow._expr_in_stat70);
340 NEWLINE3=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat72);
375 ID4=(IToken)Match(input,ID,Follow._ID_in_stat105);
379 char_literal5=(IToken)Match(input,17,Follow._17_in_stat107);
383 PushFollow(Follow._expr_in_stat109);
390 NEWLINE7=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat111);
437 PushFollow(Follow._func_in_stat143);
444 NEWLINE9=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat145);
479 NEWLINE10=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat178);
    [all...]
ProfileGrammarParser.cs 199 PushFollow(Follow._stat_in_prog53);
337 PushFollow(Follow._expr_in_stat70);
344 NEWLINE3=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat72);
379 ID4=(IToken)Match(input,ID,Follow._ID_in_stat105);
383 char_literal5=(IToken)Match(input,17,Follow._17_in_stat107);
387 PushFollow(Follow._expr_in_stat109);
394 NEWLINE7=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat111);
441 PushFollow(Follow._func_in_stat143);
448 NEWLINE9=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat145);
483 NEWLINE10=(IToken)Match(input,NEWLINE,Follow._NEWLINE_in_stat178);
    [all...]
  /external/antlr/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.m 136 [self match:input TokenType:DECL Follow:FOLLOW_DECL_in_decl45];
138 [self match:input TokenType:DOWN Follow:nil];
156 [self match:input TokenType:UP Follow:nil];
199 [self match:input TokenType:INTTYPE Follow:FOLLOW_INTTYPE_in_type81];
240 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator95];
  /external/antlr/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.m 492 [self match:input TokenType:11 Follow:FOLLOW_11_in_declaration62];
580 [self match:input TokenType:11 Follow:FOLLOW_11_in_variable103];
618 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator122];
669 ID3=(CommonToken *)[self match:input TokenType:ID Follow:FOLLOW_ID_in_functionHeader153];
671 [self match:input TokenType:7 Follow:FOLLOW_7_in_functionHeader155];
707 [self match:input TokenType:10 Follow:FOLLOW_10_in_functionHeader163];
733 [self match:input TokenType:8 Follow:FOLLOW_8_in_functionHeader173];
    [all...]
  /external/antlr/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.m 355 [self match:input TokenType:12 Follow:FOLLOW_12_in_method116];
357 [self match:input TokenType:ID Follow:FOLLOW_ID_in_method118];
359 [self match:input TokenType:7 Follow:FOLLOW_7_in_method120];
361 [self match:input TokenType:8 Follow:FOLLOW_8_in_method122];
412 [self match:input TokenType:13 Follow:FOLLOW_13_in_block153];
478 [self match:input TokenType:14 Follow:FOLLOW_14_in_block165];
541 [self match:input TokenType:ID Follow:FOLLOW_ID_in_stat189];
543 [self match:input TokenType:10 Follow:FOLLOW_10_in_stat191];
545 [self match:input TokenType:INT Follow:FOLLOW_INT_in_stat193];
547 [self match:input TokenType:9 Follow:FOLLOW_9_in_stat195];
    [all...]
  /external/curl/docs/cmdline-opts/
location.d 3 Help: Follow redirects
13 this. You can limit the amount of redirects to follow by using the
  /external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.m 245 [self match:input TokenType:ID Follow:FOLLOW_ID_in_identifier66];
303 [self match:input TokenType:7 Follow:FOLLOW_7_in_enumAsKeyword89];
345 [self match:input TokenType:7 Follow:FOLLOW_7_in_enumAsID100];

Completed in 3535 milliseconds

1 2