/external/python/oauth2client/tests/contrib/ |
test_dictionary_storage.py | 33 id_token={ 74 self.assertEqual(returned.id_token, credentials.id_token) 90 self.assertEqual(returned.id_token, credentials.id_token)
|
test_flask_util.py | 88 id_token={ 372 credentials.id_token = {}
|
/external/google-breakpad/src/testing/gtest/scripts/ |
pump.py | 328 id_token = ParseToken(lines, found.end, ID_REGEX, 'id') 329 yield id_token 330 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) 344 id_token = ParseToken(lines, found.end, ID_REGEX, 'id') 345 yield id_token 346 pos = Skip(lines, id_token.end, WHITE_SPACE_REGEX) 351 id_token = ParseToken(lines, found.end, ID_REGEX, 'id') 352 yield id_token 353 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) 512 id_token = Pop('id' [all...] |
/external/googletest/googletest/scripts/ |
pump.py | 328 id_token = ParseToken(lines, found.end, ID_REGEX, 'id') 329 yield id_token 330 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) 344 id_token = ParseToken(lines, found.end, ID_REGEX, 'id') 345 yield id_token 346 pos = Skip(lines, id_token.end, WHITE_SPACE_REGEX) 351 id_token = ParseToken(lines, found.end, ID_REGEX, 'id') 352 yield id_token 353 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) 512 id_token = Pop('id' [all...] |
/external/python/oauth2client/oauth2client/contrib/ |
flask_util.py | 459 The email address is provided by the current credentials' id_token. 466 return self.credentials.id_token['email'] 469 'Invalid id_token {0}'.format(self.credentials.id_token)) 477 The id is provided by the current credentials' id_token. 482 return self.credentials.id_token['sub'] 485 'Invalid id_token {0}'.format(self.credentials.id_token))
|
/external/python/oauth2client/oauth2client/ |
client.py | 472 id_token=None, token_response=None, scopes=None, 490 id_token: object, The identity of the resource owner. 514 self.id_token = id_token 642 id_token=data.get('id_token', None), 809 if 'id_token' in d: 810 self.id_token = _extract_id_token(d['id_token']) 812 self.id_token = Non [all...] |
/external/ipsec-tools/src/racoon/ |
gssapi.c | 190 gss_buffer_desc id_token, cred_token; local 206 id_token.length = iph1->rmconf->proposal->gssid->l; 207 id_token.value = iph1->rmconf->proposal->gssid->v; 208 maj_stat = gss_import_name(&min_stat, &id_token, GSS_C_NO_OID,
|
/external/syzkaller/vendor/golang.org/x/oauth2/jwt/ |
jwt.go | 133 IDToken string `json:"id_token"`
|
/external/python/oauth2client/tests/ |
test_client.py | [all...] |