Searched refs:scopes (Results 1 - 25 of 201) sorted by relevance

123456789

/external/chromium_org/chrome/browser/extensions/api/identity/
H A Dextension_token_key.cc11 const std::set<std::string>& scopes)
12 : extension_id(extension_id), account_id(account_id), scopes(scopes) {}
27 return scopes < rhs.scopes;
9 ExtensionTokenKey(const std::string& extension_id, const std::string& account_id, const std::set<std::string>& scopes) argument
H A Dextension_token_key.h16 const std::set<std::string>& scopes);
21 std::set<std::string> scopes; member in struct:extensions::ExtensionTokenKey
/external/chromium_org/content/public/browser/
H A Dservice_worker_usage_info.cc10 const std::vector<GURL>& scopes)
11 : origin(origin), scopes(scopes) {
9 ServiceWorkerUsageInfo(const GURL& origin, const std::vector<GURL>& scopes) argument
H A Dservice_worker_usage_info.h18 ServiceWorkerUsageInfo(const GURL& origin, const std::vector<GURL>& scopes);
28 std::vector<GURL> scopes; member in class:content::ServiceWorkerUsageInfo
/external/chromium_org/chrome/browser/ui/webui/
H A Didentity_internals_ui_browsertest.cc31 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
45 AddTokenToCache( const std::string token_id, const std::string extension_id, const std::vector<std::string>& scopes, int time_to_live) argument
[all...]
H A Didentity_internals_ui_browsertest.js98 * Gets the token scopes displayed on the page for a given entry.
100 * @return {string[]} Token scopes of the token.
144 var scopes = this.getScopes(tokenListEntries[0]);
145 expectEquals(3, scopes.length);
146 expectEquals('store_scope1', scopes[0]);
147 expectEquals('store_scope2', scopes[1]);
148 expectEquals('', scopes[2]);
172 var scopes = tokenListEntries[0].querySelector('.scope-list')
175 expectEquals(scopes.length, actualScopes.length);
176 for (var i = 0; i < scopes
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_getscopes_die.c63 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) argument
93 *scopes = info;
H A Ddwarf_getscopes.c63 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;
205 dwarf_getscopes(Dwarf_Die *cudie, Dwarf_Addr pc, Dwarf_Die **scopes) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
H A DCombinedLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
H A DTestLexer.h13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
H A DTestLexerLexer.h14 #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/
H A DTestLexer.h13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
H A DTestLexerLexer.h13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
H A DTreeRewriteLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/chromium_org/sync/internal_api/attachments/
H A Dattachment_downloader.cc22 const OAuth2TokenService::ScopeSet scopes,
29 scopes,
17 Create( const GURL& sync_service_url, const scoped_refptr<net::URLRequestContextGetter>& url_request_context_getter, const std::string& account_id, const OAuth2TokenService::ScopeSet scopes, const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>& token_service_provider) argument
/external/chromium_org/google_apis/gaia/
H A Doauth2_api_call_flow_unittest.cc51 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) {}
113 void SetupAccessTokenFetcher(const std::vector<std::string>& scopes) { argument
117 scopes)).Times(1);
141 const std::vector<std::string>& scopes) {
89 MockApiCallFlow(net::URLRequestContextGetter* context, const std::string& refresh_token, const std::string& access_token, const std::vector<std::string>& scopes) argument
139 CreateFlow(const std::string& refresh_token, const std::string& access_token, const std::vector<std::string>& scopes) argument
[all...]
H A Dubertoken_fetcher.cc68 OAuth2TokenService::ScopeSet scopes; local
69 scopes.insert(GaiaConstants::kOAuth1LoginScope);
70 token_service_->InvalidateToken(account_id_, scopes, access_token_);
105 OAuth2TokenService::ScopeSet scopes; local
106 scopes.insert(GaiaConstants::kOAuth1LoginScope);
108 token_service_->StartRequest(account_id_, scopes, this);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
H A DTreeRewriteLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_service_worker_helper_unittest.cc33 std::vector<GURL> scopes; local
34 scopes.push_back(GURL("https://host1:1/*"));
40 helper->AddServiceWorker(origin, scopes);
70 const std::vector<GURL> scopes; local
76 helper->AddServiceWorker(origin1, scopes);
78 helper->AddServiceWorker(origin2, scopes);
/external/chromium_org/v8/test/mjsunit/es6/
H A Dgenerators-debug-scopes.js56 function CheckFastAllScopes(scopes, exec_state) {
59 assertTrue(scopes.length >= length);
60 for (var i = 0; i < scopes.length && i < length; i++) {
63 assertEquals(scopes[scopes.length - i - 1], scope.scopeType());
67 // Check that the scope chain contains the expected types of scopes.
68 function CheckScopeChain(scopes, exec_state) {
70 assertEquals(scopes.length, exec_state.frame().scopeCount());
71 assertEquals(scopes.length, all_scopes.length, "FrameMirror.allScopes length");
72 for (var i = 0; i < scopes
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
H A DSymbolTableLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/chromium_org/v8/test/mjsunit/bugs/harmony/
H A Ddebug-blockscopes.js80 // Check that the scope chain contains the expected types of scopes.
81 function CheckScopeChain(scopes, exec_state) {
82 assertEquals(scopes.length, exec_state.frame().scopeCount());
83 for (var i = 0; i < scopes.length; i++) {
86 assertEquals(scopes[i], scope.scopeType());
89 if (scopes[i] == debug.ScopeType.Global) {
99 // Send a scopes request and check the result.
101 var request_json = '{"seq":0,"type":"request","command":"scopes"}';
104 assertEquals(scopes.length, response.body.scopes
[all...]
/external/chromium_org/chrome/browser/chromeos/policy/
H A Duser_cloud_policy_token_forwarder.cc91 OAuth2TokenService::ScopeSet scopes; local
92 scopes.insert(GaiaConstants::kDeviceManagementServiceOAuth);
93 scopes.insert(GaiaConstants::kOAuthWrapBridgeUserInfoScope);
95 signin_manager_->GetAuthenticatedAccountId(), scopes, this);

Completed in 414 milliseconds

123456789