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

1 2 3 4 5 6 7 8

  /external/chromium_org/chrome/browser/extensions/api/identity/
extension_token_key.cc 11 const std::set<std::string> scopes)
12 : extension_id(extension_id), account_id(account_id), scopes(scopes) {}
27 return scopes < rhs.scopes;
extension_token_key.h 16 const std::set<std::string> scopes);
21 std::set<std::string> scopes; member in struct:extensions::ExtensionTokenKey
  /external/chromium_org/chrome/browser/ui/webui/
identity_internals_ui_browsertest.cc 31 std::vector<std::string> scopes; local
32 scopes.push_back(std::string("scope_1_") + token_number);
33 scopes.push_back(std::string("scope_2_") + token_number);
34 AddTokenToCache(token_id, extension_id, scopes, kOneHour);
39 std::vector<std::string> scopes; local
40 scopes.push_back(std::string("store_scope1"));
41 scopes.push_back(std::string("store_scope2"));
42 AddTokenToCache("store_token", kChromeWebStoreId, scopes, kOneHour);
48 const std::vector<std::string>& scopes,
56 std::set<std::string>(scopes.begin(), scopes.end()))
    [all...]
identity_internals_ui_browsertest.h 26 const std::vector<std::string>& scopes,
  /external/elfutils/libdw/
dwarf_getscopes_die.c 63 Dwarf_Die *scopes = malloc (depth * sizeof scopes[0]);
64 if (scopes == NULL)
73 scopes[i++] = die->die;
79 *(void **) arg = scopes;
84 dwarf_getscopes_die (Dwarf_Die *die, Dwarf_Die **scopes)
93 *scopes = info;
dwarf_getscopes.c 63 Dwarf_Die *scopes; member in struct:args
74 if (a->scopes != NULL)
115 function of which A->scopes[A->nscopes - 1] is a concrete instance.
119 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]); local
120 if (scopes == NULL)
122 free (a->scopes);
127 a->scopes = scopes;
    [all...]
  /art/compiler/utils/
scoped_hashtable.h 29 explicit ScopedHashtable():scopes() {
33 scopes.push_front(std::map<K, V>());
39 for (typename std::list<std::map<K, V> >::const_iterator scopes_it = scopes.begin();
40 scopes_it != scopes.end(); scopes_it++) {
51 scopes.front().erase(k);
52 scopes.front().insert(std::pair< K, V >(k, v));
58 // when removing scope and the list of scopes is empty.
59 if (scopes.size() > 0) {
60 scopes.pop_front();
67 std::list<std::map<K, V> > scopes; member in class:utils::ScopedHashtable
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
TestLexerLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
TestLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
TestLexerLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/chromium_org/google_apis/gaia/
oauth2_api_call_flow_unittest.cc 51 std::vector<std::string> scopes; local
52 scopes.push_back("scope1");
53 scopes.push_back("scope2");
54 return scopes;
84 const std::vector<std::string>& scopes));
92 const std::vector<std::string>& scopes)
93 : OAuth2ApiCallFlow(context, refresh_token, access_token, scopes) {}
114 const std::string& rt, const std::vector<std::string>& scopes) {
118 rt, scopes))
143 const std::vector<std::string>& scopes) {
    [all...]
oauth2_token_service.cc 25 const ScopeSet& scopes)
28 scopes(scopes) {
46 return scopes < p.scopes;
75 // Class that fetches an OAuth2 access token for a given set of scopes and
78 // Class that fetches OAuth2 access tokens for given scopes and refresh token.
108 // |refresh_token| and |scopes| in the request context obtained by |getter|.
116 const ScopeSet& scopes,
150 const OAuth2TokenService::ScopeSet& scopes,
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/chromium_org/chrome/browser/signin/
fake_profile_oauth2_token_service.h 37 // ScopeSet scopes;
38 // scopes.insert(GaiaConstants::kYourServiceScope);
39 // IssueTokenForScope(scopes, "access_token", base::Time()::Max());
42 // IssueErrorForScope(scopes, GoogleServiceAuthError(INVALID_GAIA_CREDENTIALS));
58 ScopeSet scopes; member in struct:FakeProfileOAuth2TokenService::PendingRequest
90 void IssueTokenForScope(const ScopeSet& scopes,
94 void IssueErrorForScope(const ScopeSet& scopes,
113 const ScopeSet& scopes) OVERRIDE;
117 const ScopeSet& scopes,
130 // matching |scopes| are completed
    [all...]
profile_oauth2_token_service_request.h 17 // OAuth2 access token for a given set of |scopes| by calling |profile|'s
27 // Creates and starts a request for |account_id| and |scopes|.
32 const OAuth2TokenService::ScopeSet& scopes,
46 const OAuth2TokenService::ScopeSet& scopes,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_token_forwarder.cc 88 OAuth2TokenService::ScopeSet scopes; local
89 scopes.insert(GaiaConstants::kDeviceManagementServiceOAuth);
90 scopes.insert(GaiaUrls::GetInstance()->oauth_wrap_bridge_user_info_scope());
92 token_service_->GetPrimaryAccountId(), scopes, this);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.h 1 // $ANTLR 3.2 Aug 19, 2010 17:16:04 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g 2010-08-19 17:16:47
21 #pragma mark Rule return scopes start
22 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end

Completed in 264 milliseconds

1 2 3 4 5 6 7 8