/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2containerservice/ |
layer1.py | 289 def list_clusters(self, next_token=None, max_results=None): 293 :type next_token: string 294 :param next_token: The `nextToken` value returned from a previous 314 if next_token is not None: 315 params['nextToken'] = next_token 323 def list_container_instances(self, cluster=None, next_token=None, 333 :type next_token: string 334 :param next_token: The `nextToken` value returned from a previous 356 if next_token is not None: 357 params['nextToken'] = next_token [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cognito/identity/ |
layer1.py | 284 def list_identities(self, identity_pool_id, max_results, next_token=None): 294 :type next_token: string 295 :param next_token: A pagination token. 302 if next_token is not None: 303 params['NextToken'] = next_token 307 def list_identity_pools(self, max_results, next_token=None): 315 :type next_token: string 316 :param next_token: A pagination token. 320 if next_token is not None: 321 params['NextToken'] = next_token [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cognito/sync/ |
layer1.py | 189 def list_datasets(self, identity_pool_id, identity_id, next_token=None, 208 :type next_token: string 209 :param next_token: A pagination token for obtaining the next page of 222 if next_token is not None: 223 query_params['nextToken'] = next_token 230 def list_identity_pool_usage(self, next_token=None, max_results=None): 234 :type next_token: string 235 :param next_token: A pagination token for obtaining the next page of 247 if next_token is not None: 248 query_params['nextToken'] = next_token [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/ |
model.py | 96 def find(cls, limit=None, next_token=None, **params): 97 q = Query(cls, limit=limit, next_token=next_token) 103 def all(cls, limit=None, next_token=None): 104 return cls.find(limit=limit, next_token=next_token)
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
test-tree-wizard.rb | 18 type = lexer.next_token 26 type = lexer.next_token 34 type = lexer.next_token 42 type = lexer.next_token 50 type = lexer.next_token 58 type = lexer.next_token 66 type = lexer.next_token 74 type = lexer.next_token
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/ |
offset_token.py | 69 for prev_token, next_token in _Pairwise(tokenize_tokens): 70 token_type, string, (srow, scol), _, _ = next_token
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/ |
test_spotinstance.py | 84 self.assertEqual(response.next_token, 104 next_token='foobar')
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
ast.py | 933 next_token = GetNextToken() 936 while (next_token.token_type == tokenize.NAME or 937 (next_token.token_type == tokenize.SYNTAX and 938 next_token.name in ('::', '<'))): 941 if last_token_was_name and next_token.token_type == tokenize.NAME: [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
instancestatus.py | 189 :ivar next_token: If the response was truncated by 190 the EC2 service, the next_token attribute of the 199 self.next_token = None 211 self.next_token = value
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
argv_traverser.hpp | 54 void next_token();
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudformation/ |
connection.py | 555 def describe_stack_events(self, stack_name_or_id=None, next_token=None): 568 :type next_token: string 569 :param next_token: String that identifies the start of the next list of 577 if next_token: 578 params['NextToken'] = next_token 669 def describe_stacks(self, stack_name_or_id=None, next_token=None): 680 :type next_token: string 681 :param next_token: String that identifies the start of the next list of [all...] |
stack.py | 73 def describe_events(self, next_token=None): 76 next_token=next_token 93 def list_resources(self, next_token=None): 96 next_token=next_token
|
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
tokenutil.py | 134 next_token = token.next 135 if next_token: 136 if func(next_token): 137 return next_token 138 if end_func and end_func(next_token): 141 token = next_token 383 next_token = new_tokens[-1].next 384 while next_token: 385 next_token.line_number += 1 386 next_token = next_token.nex [all...] |
statetracker.py | [all...] |
javascriptlintrules.py | 172 next_token = token.next 173 while next_token.type == Type.STRING_TEXT: 175 next_token.string): 177 next_token = next_token.next 212 next_token = token.next 213 if (not next_token or 215 next_token.type in Type.NON_CODE_TYPES)): 221 next_token.type == Type.IDENTIFIER and 222 next_token.string in ['goog.provide', 'goog.require']) [all...] |
/external/ImageMagick/MagickCore/ |
draw.c | 1683 *next_token, local 4935 *next_token; local 5435 *next_token, local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/support/ |
layer1.py | 328 include_resolved_cases=None, next_token=None, 372 :type next_token: string 373 :param next_token: A resumption point for pagination. 401 if next_token is not None: 402 params['nextToken'] = next_token 413 after_time=None, next_token=None, 445 :type next_token: string 446 :param next_token: A resumption point for pagination. 458 if next_token is not None: 459 params['nextToken'] = next_token [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
properties.rb | 99 lexer.next_token
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/ |
connection.py | 286 def get_all_domains(self, max_domains=None, next_token=None): 295 :keyword str next_token: A token string that was returned in an 296 earlier call to this method as the ``next_token`` attribute 300 ``next_token`` value from you earlier query in this keyword to 306 if next_token: 307 params['NextToken'] = next_token 584 def select(self, domain_or_name, query='', next_token=None, 611 if next_token: 612 params['NextToken'] = next_token
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudformation/ |
test_connection.py | 294 first, second = self.service_connection.describe_stack_events('stack_name', next_token='next_token') 319 'NextToken': 'next_token', 506 next_token='next_token') 526 'NextToken': 'next_token', 553 next_token='next_token') 566 'NextToken': 'next_token',
|
/system/core/init/ |
parser.cpp | 26 int next_token(struct parse_state *state) function
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudtrail/ |
layer1.py | 199 end_time=None, max_results=None, next_token=None): 237 :type next_token: string 238 :param next_token: The token to use to get the next page of results 255 if next_token is not None: 256 params['NextToken'] = next_token
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/configservice/ |
layer1.py | 224 next_token=None): 259 :type next_token: string 260 :param next_token: An optional parameter used for pagination of the 276 if next_token is not None: 277 params['nextToken'] = next_token
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/machinelearning/ |
layer1.py | 696 next_token=None, limit=None): [all...] |
/external/ImageMagick/coders/ |
svg.c | 295 *next_token, 308 value=StringToDouble(token,&next_token); 793 *next_token, 291 *next_token, local 789 *next_token, local 3629 *next_token, local [all...] |