HomeSort by relevance Sort by last modified time
    Searched full:next_token (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/
queryresultset.py 26 next_token = None
29 next_token=next_token)
36 next_token = rs.next_token
37 more_results = next_token is not None
53 next_token = None
55 rs = domain.connection.select(domain, query, next_token=next_token)
62 next_token = rs.next_toke
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb 20 token = lexer.next_token
23 token = lexer.next_token
38 token = lexer.next_token
62 token = lexer.next_token
65 token = lexer.next_token
68 token = lexer.next_token
75 b = lambda { token = lexer.next_token }
100 token = lexer.next_token
103 token = lexer.next_token
106 token = lexer.next_token
    [all...]
syn-pred.rb 27 token = lexer.next_token
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 83 next_token( function
100 next_token( ctx, &token );
110 next_token( ctx, &decl->Range );
113 next_token(ctx, &decl->Dim);
117 next_token( ctx, &decl->Interp );
121 next_token( ctx, &decl->Semantic );
136 next_token(ctx, &decl->Resource);
140 next_token(ctx, &decl->SamplerView);
159 next_token(ctx, &imm->u[i].Float);
165 next_token(ctx, &imm->u[i].Uint)
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
t-error.pl 16 my $token = eval { $lexer->next_token(); };
t.pl 16 my $token = $lexer->next_token();
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
113 if (s - left >= sizeof(next_token)) {
119 memcpy(next_token, left, s - left);
120 next_token[s - left] = '\0';
134 if (next_token[0] == '\0') {
138 else if (strcmp(next_token, ".") == 0)
140 else if (strcmp(next_token, "..") == 0) {
157 resolved_len = strlcat(resolved, next_token, PATH_MAX);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_instancestatus.py 26 self.assertEqual(all_statuses.next_token, 'page-2')
38 self.assertEqual(all_statuses.next_token, 'page-2')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
query.py 25 def __init__(self, model_class, limit=None, next_token=None, manager=None):
37 self.next_token = next_token
78 return self.rs.next_token
86 next_token = property(get_next_token, set_next_token) variable in class:Query
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 16 my $token = $lexer->next_token();
  /system/core/init/
parser.h 37 int next_token(struct parse_state *state);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 11 <tt>next_token</tt> to catch RecognitionErrors and skip ahead in the input until
19 def next_token method in class:ANTLR3.FilterMode
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudhsm/
layer1.py 279 def list_hapgs(self, next_token=None):
288 :type next_token: string
289 :param next_token: The NextToken value from a previous call to
294 if next_token is not None:
295 params['NextToken'] = next_token
299 def list_hsms(self, next_token=None):
309 :type next_token: string
310 :param next_token: The NextToken value from a previous call to
315 if next_token is not None:
316 params['NextToken'] = next_token
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/codedeploy/
layer1.py 536 next_token=None):
591 :type next_token: string
592 :param next_token: An identifier that was returned from the previous
608 if next_token is not None:
609 params['nextToken'] = next_token
613 def list_applications(self, next_token=None):
617 :type next_token: string
618 :param next_token: An identifier that was returned from the previous
624 if next_token is not None:
625 params['nextToken'] = next_token
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/logs/
layer1.py 235 next_token=None, limit=None):
250 :type next_token: string
251 :param next_token: A string token used for pagination that points to
263 if next_token is not None:
264 params['nextToken'] = next_token
271 log_stream_name_prefix=None, next_token=None,
290 :type next_token: string
291 :param next_token: A string token used for pagination that points to
303 if next_token is not None:
304 params['nextToken'] = next_token
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/
__init__.py 334 def get_all_groups(self, names=None, max_records=None, next_token=None):
358 if next_token:
359 params['NextToken'] = next_token
379 :type next_token: str
380 :param next_token: If you have more results than can be returned
395 next_token = kwargs.get('next_token')
396 if next_token:
397 params['NextToken'] = next_token
402 max_records=None, next_token=None)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sns/
connection.py 108 def get_all_topics(self, next_token=None):
110 :type next_token: string
111 :param next_token: Token returned by the previous call to
116 if next_token:
117 params['NextToken'] = next_token
410 def get_all_subscriptions(self, next_token=None):
414 :type next_token: string
415 :param next_token: Token returned by the previous call to
420 if next_token:
421 params['NextToken'] = next_token
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/
lexer.t 39 while ((my $_ = $lexer->next_token())) {
66 my $token = $lexer->next_token();
118 while ((my $_ = $lexer->next_token())) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
argv_traverser.ipp 65 next_token();
95 argv_traverser::next_token()
195 next_token();
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/cloudwatch/
__init__.py 242 def list_metrics(self, next_token=None, dimensions=None,
248 :type next_token: str
249 :param next_token: A maximum of 500 metrics will be returned
251 returned will contain a non-Null next_token attribute.
277 if next_token:
278 params['NextToken'] = next_token
338 next_token=None):
362 :type next_token: string
363 :param next_token: The token returned by a previous call to
377 if next_token
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 8 requires 'next_token';
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 21 def next_token method in class:TestTokenSource.TestSource
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
volumestatus.py 182 :ivar next_token: If the response was truncated by
183 the EC2 service, the next_token attribute of the
192 self.next_token = None
204 self.next_token = value
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
resultset.py 42 :ivar str next_token: A hash used to assist in paging through very long
61 self.next_token = None
120 self.next_token = value
122 self.next_token = value
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 152 def next_token method in class:ANTLR3.AST.Wizard.PatternLexer
197 @token_type = tokenizer.next_token
215 @token_type = @tokenizer.next_token
230 @token_type = @tokenizer.next_token
237 ( @token_type = @tokenizer.next_token ) == :identifier or return nil
239 ( @token_type = @tokenizer.next_token ) == :colon or return nil
240 @token_type = @tokenizer.next_token
244 @token_type = @tokenizer.next_token
253 @token_type = @tokenizer.next_token
261 @token_type = @tokenizer.next_token
    [all...]

Completed in 819 milliseconds

1 2 3 4 5