Searched defs:scope (Results 126 - 150 of 313) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerContainerTest.cpp172 void testRegisterRejected(const String& scriptURL, const String& scope, const ScriptValueTest& valueTest) argument
181 options->setScope(scope);
228 ExpectDOMException("SecurityError", "The scope must match the current origin."));
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBDatabase.h52 virtual void createTransaction(long long id, WebIDBDatabaseCallbacks*, const WebVector<long long>& scope, WebIDBTransactionMode) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/tools/gn/
H A Dfunction_exec_script.cc291 Value RunExecScript(Scope* scope, argument
301 const Settings* settings = scope->settings();
303 const SourceDir& cur_dir = scope->GetSourceDir();
413 return ConvertInputToValue(scope->settings(), output, function,
H A Dfunction_toolchain.cc12 #include "tools/gn/scope.h"
24 // the toolchain property on a scope.
27 bool ReadBool(Scope* scope, argument
32 const Value* v = scope->GetValue(var, true);
42 // Reads the given string from the scope (if present) and puts the result into
44 bool ReadString(Scope* scope, argument
49 const Value* v = scope->GetValue(var, true);
77 bool ReadPattern(Scope* scope, argument
83 const Value* value = scope->GetValue(name, true);
99 bool ReadOutputExtension(Scope* scope, Too argument
118 ReadDepsFormat(Scope* scope, Tool* tool, Err* err) argument
136 ReadOutputs(Scope* scope, const FunctionCallNode* tool_function, bool (*validate)(SubstitutionType), Tool* tool, Err* err) argument
282 RunToolchain(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
719 RunTool(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
886 RunToolchainArgs(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
H A Dfunctions_target.cc10 #include "tools/gn/scope.h"
28 Scope* scope,
33 if (!EnsureNotProcessingImport(function, scope, err) ||
34 !EnsureNotProcessingBuildConfig(function, scope, err))
36 Scope block_scope(scope);
37 if (!FillTargetBlockScope(scope, function, target_type, block,
146 Value RunAction(Scope* scope, argument
151 return ExecuteGenericTarget(functions::kAction, scope, function, args,
226 Value RunActionForEach(Scope* scope, argument
231 return ExecuteGenericTarget(functions::kActionForEach, scope, functio
27 ExecuteGenericTarget(const char* target_type, Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
279 RunCopy(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
305 RunExecutable(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
345 RunGroup(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
374 RunSharedLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
421 RunSourceSet(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
451 RunStaticLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
H A Doperators.cc10 #include "tools/gn/scope.h"
18 // Applies the sources assignment filter from the given scope to each element
21 void AppendFilteredSourcesToValue(const Scope* scope, argument
24 const PatternList* filter = scope->GetSourcesAssignmentFilter();
59 Scope* scope,
61 Value value = node->Execute(scope, err);
120 Value ExecuteEquals(Scope* scope, argument
125 const Value* old_value = scope->GetValue(left.value(), false);
157 Value* set_value = scope->SetValue(left.value(),
160 AppendFilteredSourcesToValue(scope, righ
56 GetValueOrFillError(const BinaryOpNode* op_node, const ParseNode* node, const char* name, Scope* scope, Err* err) argument
178 ValuePlusEquals(const Scope* scope, const BinaryOpNode* op_node, const Token& left_token, Value* left, const Value& right, bool allow_type_conversion, Err* err) argument
251 ExecutePlusEquals(Scope* scope, const BinaryOpNode* op_node, const Token& left, const Value& right, Err* err) argument
314 ExecuteMinusEquals(Scope* scope, const BinaryOpNode* op_node, const Token& left, const Value& right, Err* err) argument
334 ExecutePlus(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
345 ExecuteMinus(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
358 ExecuteEqualsEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
368 ExecuteNotEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
390 ExecuteLessEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
400 ExecuteGreaterEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
410 ExecuteGreater(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
420 ExecuteLess(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
432 ExecuteOr(Scope* scope, const BinaryOpNode* op_node, const ParseNode* left_node, const ParseNode* right_node, Err* err) argument
462 ExecuteAnd(Scope* scope, const BinaryOpNode* op_node, const ParseNode* left_node, const ParseNode* right_node, Err* err) argument
531 ExecuteUnaryOperator(Scope* scope, const UnaryOpNode* op_node, const Value& expr, Err* err) argument
547 ExecuteBinaryOperator(Scope* scope, const BinaryOpNode* op_node, const ParseNode* left, const ParseNode* right, Err* err) argument
[all...]
H A Dscope.h31 // Scopes are nested. Writing goes into the toplevel scope, reading checks
35 // A containing scope can be const or non-const. The const containing scope is
37 // many invocations. A const containing scope, however, prevents us from
39 // variables. So you should use a non-const containing scope whenever possible.
52 ProgrammaticProvider(Scope* scope) : scope_(scope) { argument
68 // Options for configuring scope merges.
77 // When set, all existing avlues in the destination scope will be
80 // When false, it will be an error to merge a variable into another scope
[all...]
/external/chromium_org/v8/src/heap/
H A Dgc-tracer.h113 Scope(GCTracer* tracer, ScopeId scope) : tracer_(tracer), scope_(scope) { argument
/external/chromium_org/v8/src/
H A Dvariables.h45 // the context object on the heap, starting at 0. scope() is the
46 // corresponding scope.
55 Variable(Scope* scope, const AstRawString* name, VariableMode mode,
66 // in an outer scope about which we don't know anything (it may not
67 // be the global scope). scope() is NULL in that case. Currently the
68 // scope is only used to follow the context chain length.
69 Scope* scope() const { return scope_; } function in class:v8::internal::Variable
149 // sloppy 'eval' calls between the reference scope (inclusive) and the
150 // binding scope (exclusiv
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-codegen-deopt.cc42 explicit DeoptCodegenTester(HandleAndZoneScope* scope, const char* src) argument
43 : scope_(scope),
45 info(function, scope->main_zone()),
111 explicit TrivialDeoptCodegenTester(HandleAndZoneScope* scope) argument
112 : DeoptCodegenTester(scope,
181 HandleAndZoneScope scope; local
187 TrivialDeoptCodegenTester t(&scope);
202 HandleAndZoneScope scope; local
208 TrivialDeoptCodegenTester t(&scope);
214 Isolate* isolate = scope
227 TrivialRuntimeDeoptCodegenTester(HandleAndZoneScope* scope) argument
291 HandleAndZoneScope scope; local
[all...]
H A Dtest-graph-reducer.cc485 HandleAndZoneScope scope; local
/external/doclava/src/com/google/doclava/
H A DMemberInfo.java115 public String scope() { method in class:MemberInfo
125 throw new RuntimeException("invalid scope for object " + this);
/external/libnl/lib/fib_lookup/
H A Dlookup.c44 unsigned char scope; member in struct:fib_result_nl
106 res->fr_scope = fr->scope;
133 nl_dump(p, "scope %s error %s (%d)\n",
214 int tos, scope, table; local
219 scope = flnl_request_get_scope(req);
224 fr.fl_scope = scope >= 0 ? scope : RT_SCOPE_UNIVERSE;
/external/libsepol/tests/
H A Dtest-common.c31 scope_datum_t *scope; local
39 /* make sure its scope is correct */
40 scope = hashtab_search(p->scope[sym_type].table, id);
41 CU_ASSERT_FATAL(scope != NULL);
42 CU_ASSERT(scope->scope == scope_type);
43 CU_ASSERT(scope->decl_ids_len == len);
44 if (scope->decl_ids_len != len)
45 fprintf(stderr, "sym %s has %d decls, %d expected\n", id, scope
[all...]
/external/lldb/source/Symbol/
H A DTypeList.cpp187 GetTypeScopeAndBasename(const char* name_cstr, std::string &scope, std::string &basename, bool *exact_ptr) argument
207 scope.assign (name_cstr, basename_cstr - name_cstr);
208 if (scope.size() >= 2 && scope[0] == ':' && scope[1] == ':')
215 scope.erase(0,2);
295 // Our match scope ends with the type scope we were lookikng for,
297 // type scope is a namepace boundary in case we are trying to match:
321 // is no type scope
[all...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp163 MDNode *scope = I->Loc.getScope( local
166 Filenames.getFullPath(scope));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/chrome/browser/extensions/api/tabs/
H A Dtabs_test.cc611 bool RunSetZoomSettings(int tab_id, const char* mode, const char* scope);
616 std::string* scope);
625 const char* scope);
675 const char* scope) {
681 if (scope) {
682 args = base::StringPrintf("[%u, {\"mode\": \"%s\", \"scope\": \"%s\"}]",
683 tab_id, mode, scope);
697 std::string* scope) {
699 DCHECK(scope);
715 *scope
673 RunSetZoomSettings(int tab_id, const char* mode, const char* scope) argument
694 RunGetZoomSettings( int tab_id, std::string* mode, std::string* scope) argument
733 RunSetZoomSettingsExpectError( int tab_id, const char* mode, const char* scope) argument
876 std::string scope; local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_management.cc40 // sub-dictionary in extension management preference and |scope| represents
46 Scope scope,
70 if (scope != SCOPE_INDIVIDUAL) {
44 ParseIndividualSettings( const base::DictionaryValue* dict, Scope scope, ExtensionManagement::IndividualSettings* settings) argument
/external/chromium_org/chrome/browser/signin/
H A Dandroid_profile_oauth2_token_service.cc79 std::string scope = CombineScopes(scopes); local
83 ConvertUTF8ToJavaString(env, scope);
121 std::string scope; local
124 if (!scope.empty())
125 scope += " ";
126 scope += *it;
128 return scope;
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_internals_ui.cc112 const GURL& scope,
118 base::Bind(UnregisterWithScope, context, scope, callback));
122 context->context()->UnregisterServiceWorker(scope, callback);
149 const GURL& scope,
155 base::Bind(FindRegistrationForPattern, context, scope, callback));
159 context->context()->storage()->FindRegistrationForPattern(scope, callback);
215 registration_info->SetString("scope", registration.pattern.spec());
646 !cmd_args->GetString("scope", &scope_string)) {
666 !cmd_args->GetString("scope", &scope_string)) {
110 UnregisterWithScope( scoped_refptr<ServiceWorkerContextWrapper> context, const GURL& scope, const ServiceWorkerInternalsUI::StatusCallback& callback) argument
147 FindRegistrationForPattern( scoped_refptr<ServiceWorkerContextWrapper> context, const GURL& scope, const ServiceWorkerStorage::FindRegistrationCallback callback) argument
H A Dservice_worker_version.h105 const GURL& scope() const { return scope_; } function in class:content::ServiceWorkerVersion
/external/chromium_org/content/common/service_worker/
H A Dservice_worker_types.h124 GURL scope; member in struct:content::ServiceWorkerObjectInfo
132 GURL scope; member in struct:content::ServiceWorkerRegistrationObjectInfo
/external/chromium_org/content/renderer/service_worker/
H A Dembedded_worker_context_client.cc131 blink::WebURL EmbeddedWorkerContextClient::scope() const { function in class:content::EmbeddedWorkerContextClient
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_operation_runner.cc50 BeginOperationScoper scope; local
51 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
72 BeginOperationScoper scope; local
73 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
95 BeginOperationScoper scope; local
96 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
122 BeginOperationScoper scope; local
123 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
143 BeginOperationScoper scope; local
144 OperationHandle handle = BeginOperation(operation, scope
163 BeginOperationScoper scope; local
183 BeginOperationScoper scope; local
203 BeginOperationScoper scope; local
224 BeginOperationScoper scope; local
248 BeginOperationScoper scope; local
288 BeginOperationScoper scope; local
327 BeginOperationScoper scope; local
348 BeginOperationScoper scope; local
377 BeginOperationScoper scope; local
399 BeginOperationScoper scope; local
419 BeginOperationScoper scope; local
439 BeginOperationScoper scope; local
462 BeginOperationScoper scope; local
485 BeginOperationScoper scope; local
654 BeginOperation( FileSystemOperation* operation, base::WeakPtr<BeginOperationScoper> scope) argument
[all...]

Completed in 4594 milliseconds

1234567891011>>