Searched refs:scope (Results 101 - 125 of 818) sorted by relevance

1234567891011>>

/external/chromium_org/remoting/webapp/
H A Dthird_party_token_fetcher.js32 * @param {string} scope OAuth scope to request the token for.
38 tokenUrl, hostPublicKey, scope, tokenUrlPatterns,
41 this.tokenScope_ = scope;
138 'scope': this.tokenScope_,
/external/clang/test/CodeGenCXX/
H A Dblocks.cpp49 struct scope { int x; ~scope(); }; struct in namespace:test1
51 const scope obj = { 5 };
/external/chromium_org/chrome/browser/extensions/api/preference/
H A Dpreference_helpers.h23 extensions::ExtensionPrefsScope* scope);
/external/chromium_org/remoting/client/plugin/
H A Dpepper_token_fetcher.h26 const std::string& scope,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContextLifecycleNotifier.cpp69 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverActiveDOMObjects);
80 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverActiveDOMObjects);
91 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverActiveDOMObjects);
102 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverActiveDOMObjects);
H A DDocumentLifecycleObserver.h71 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDocumentObservers);
78 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDocumentObservers);
/external/chromium_org/tools/gn/
H A Dconfig_values_generator.h22 Scope* scope,
H A Dfunction_process_file_template.cc54 Value RunProcessFileTemplate(Scope* scope, argument
H A Dtarget_generator.h28 Scope* scope,
39 static void GenerateTarget(Scope* scope,
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-962.js30 function L(scope) { this.s = new Object(); }
/external/v8/test/cctest/
H A Dtest-deoptimization.cc116 v8::HandleScope scope; local
154 v8::HandleScope scope; local
193 v8::HandleScope scope; local
218 v8::HandleScope scope; local
245 v8::HandleScope scope; local
273 v8::HandleScope scope; local
311 v8::HandleScope scope; local
340 v8::HandleScope scope; local
430 v8::HandleScope scope; local
442 v8::HandleScope scope; local
454 v8::HandleScope scope; local
466 v8::HandleScope scope; local
478 v8::HandleScope scope; local
490 v8::HandleScope scope; local
533 v8::HandleScope scope; local
613 v8::HandleScope scope; local
[all...]
H A Dtest-compiler.cc70 v8::HandleScope scope; local
92 v8::HandleScope scope; local
97 v8::HandleScope scope; local
150 v8::HandleScope scope; local
171 v8::HandleScope scope; local
191 v8::HandleScope scope; local
212 v8::HandleScope scope; local
219 v8::HandleScope scope; local
234 v8::HandleScope scope; local
266 v8::HandleScope scope; local
288 v8::HandleScope scope; local
321 v8::HandleScope scope; local
333 v8::HandleScope scope; local
393 v8::HandleScope scope; local
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-962.js30 function L(scope) { this.s = new Object(); }
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dscopes.rb16 scope {
46 scope aScope {
61 scope aScope;
69 scope {x}
86 scope {
110 scope {
137 /* recursive rule scopes, access bottom-most scope */
140 scope {
154 scope {
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_api.cc71 ExtensionPrefsScope scope = kExtensionPrefsScopeRegular; local
73 if (params->details.scope ==
75 scope = kExtensionPrefsScopeIncognitoSessionOnly;
93 store->ClearContentSettingsForExtension(extension_id(), scope); local
214 ExtensionPrefsScope scope = kExtensionPrefsScopeRegular; local
216 if (params->details.scope ==
218 scope = kExtensionPrefsScopeIncognitoSessionOnly;
237 if (scope == kExtensionPrefsScopeIncognitoSessionOnly &&
247 resource_identifier, setting, scope); local
H A Dcontent_settings_store.cc100 ExtensionPrefsScope scope) {
103 OriginIdentifierValueMap* map = GetValueMap(ext_id, scope);
117 scope != kExtensionPrefsScopeRegular);
182 ExtensionPrefsScope scope) {
185 switch (scope) {
203 ExtensionPrefsScope scope) const {
208 switch (scope) {
227 ExtensionPrefsScope scope) {
231 OriginIdentifierValueMap* map = GetValueMap(ext_id, scope);
241 NotifyOfContentSettingChanged(ext_id, scope !
93 SetExtensionContentSetting( const std::string& ext_id, const ContentSettingsPattern& primary_pattern, const ContentSettingsPattern& secondary_pattern, ContentSettingsType type, const content_settings::ResourceIdentifier& identifier, ContentSetting setting, ExtensionPrefsScope scope) argument
180 GetValueMap( const std::string& ext_id, ExtensionPrefsScope scope) argument
225 ClearContentSettingsForExtension( const std::string& ext_id, ExtensionPrefsScope scope) argument
282 SetExtensionContentSettingFromList( const std::string& extension_id, const base::ListValue* list, ExtensionPrefsScope scope) argument
[all...]
/external/chromium_org/v8/src/
H A Dscopes.cc68 Scope* scope,
80 p->value = new(zone()) Variable(scope,
122 // The outermost scope must be a global scope.
194 // Inherit the strict mode from the parent scope.
219 // Reconstruct the outer scope chain from a closure's context chain.
283 Scope* scope = info->function()->scope(); local
284 Scope* top = scope;
286 // Traverse the scope tre
67 Declare( Scope* scope, Handle<String> name, VariableMode mode, bool is_valid_lhs, Variable::Kind kind, InitializationFlag initialization_flag, Interface* interface) argument
725 ContextChainLength(Scope* scope) argument
739 Scope* scope = this; local
748 Scope* scope = this; local
770 Scope* scope = inner_scopes_[i]; local
[all...]
H A Dscopeinfo.cc41 Handle<ScopeInfo> ScopeInfo::Create(Scope* scope, Zone* zone) { argument
43 ZoneList<Variable*> stack_locals(scope->StackLocalCount(), zone);
44 ZoneList<Variable*> context_locals(scope->ContextLocalCount(), zone);
45 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
49 ASSERT(scope->StackLocalCount() == stack_local_count);
50 ASSERT(scope->ContextLocalCount() == context_local_count);
55 if (scope->is_function_scope() && scope->function() != NULL) {
56 Variable* var = scope->function()->proxy()->var();
72 const int parameter_count = scope
538 Create( Isolate* isolate, Interface* interface, Scope* scope) argument
[all...]
H A Dvariables.cc58 Variable::Variable(Scope* scope, argument
65 : scope_(scope),
/external/v8/src/
H A Dscopes.cc65 Scope* scope,
76 p->value = new Variable(scope,
116 // eval scopes (by walking the stack and reading the scope info).
184 // Inherit the strict mode from the parent scope.
204 // Reconstruct the outer scope chain from a closure's context chain.
252 Scope* scope = info->function()->scope(); local
253 Scope* top = scope;
255 // Traverse the scope tree up to the first unresolved scope o
64 Declare( Scope* scope, Handle<String> name, VariableMode mode, bool is_valid_lhs, Variable::Kind kind, InitializationFlag initialization_flag, Interface* interface) argument
672 ContextChainLength(Scope* scope) argument
683 Scope* scope = this; local
705 Scope* scope = inner_scopes_[i]; local
[all...]
H A Dvariables.cc57 Variable::Variable(Scope* scope, argument
64 : scope_(scope),
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
H A DT.g28 scope {
/external/chromium_org/chrome/renderer/extensions/
H A Dbinding_generating_native_handler.cc21 v8::HandleScope scope; local
40 return scope.Close(object);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableCellElement.idl34 [Reflect] attribute DOMString scope;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageLifecycleNotifier.h63 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverPageObservers);
70 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverPageObservers);

Completed in 902 milliseconds

1234567891011>>