Searched refs:scope (Results 1 - 25 of 818) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-135008.js31 var scope = { x:23 };
33 with(scope) {
35 "scope.f = (function outer() {" +
45 assertSame(23, scope.f());
/external/iproute2/ip/
H A Droutef4 exec ip -4 ro flush scope global type unicast
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchRequest.h34 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, bool elementApplyAuthorStyles = true)
37 , scope(scope)
47 const ContainerNode* scope; member in class:WebCore::MatchRequest
H A DFontBuilder.cpp93 FontDescriptionChangeScope scope(this);
95 scope.reset();
96 scope.fontDescription().setGenericFamily(FontDescription::StandardFamily);
97 scope.fontDescription().setUsePrinterFont(m_document->printing());
100 scope.fontDescription().firstFamily().setFamily(standardFontFamily);
101 scope.fontDescription().firstFamily().appendFamily(0);
103 scope.fontDescription().setKeywordSize(CSSValueMedium - CSSValueXxSmall + 1);
104 setSize(scope.fontDescription(), effectiveZoom, FontSize::fontSizeForKeyword(m_document, CSSValueMedium, false));
109 FontDescriptionChangeScope scope(this);
111 scope
[all...]
/external/chromium_org/tools/gn/
H A Dfunctions_target.cc9 #include "tools/gn/scope.h"
18 Scope* scope,
23 if (!EnsureNotProcessingImport(function, scope, err) ||
24 !EnsureNotProcessingBuildConfig(function, scope, err))
26 Scope block_scope(scope);
27 if (!FillTargetBlockScope(scope, function, target_type, block,
50 Value RunComponent(Scope* scope, argument
57 const Value* component_mode_value = scope->GetValue("component_mode");
74 if (!EnsureNotProcessingImport(function, scope, err))
76 Scope block_scope(scope);
17 ExecuteGenericTarget(const char* target_type, Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
96 RunCopy(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
178 RunCustom(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
193 RunExecutable(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
223 RunGroup(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
238 RunSharedLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
253 RunStaticLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
268 RunTest(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
H A Dimport_manager.cc14 // Returns a newly-allocated scope on success, null on failure.
26 scoped_ptr<Scope> scope(new Scope(settings->base_config()));
27 scope->SetProcessingImport();
28 block->ExecuteBlockInScope(scope.get(), err);
31 scope->ClearProcessingImport();
33 return scope.release();
47 Scope* scope,
49 // See if we have a cached import, but be careful to actually do the scope
61 imported_scope = UncachedImport(scope->settings(), file,
81 return imported_scope->NonRecursiveMergeTo(scope, node_for_er
45 DoImport(const SourceFile& file, const ParseNode* node_for_err, Scope* scope, Err* err) argument
[all...]
H A Dfunction_set_default_toolchain.cc8 #include "tools/gn/scope.h"
44 Value RunSetDefaultToolchain(Scope* scope, argument
48 if (!scope->IsProcessingBuildConfig()) {
56 if (!scope->IsProcessingDefaultBuildConfig())
60 const Label& default_toolchain = ToolchainLabelForScope(scope);
70 scope->settings()->build_settings()->toolchain_manager();
H A Dfunctions.h30 typedef Value (*GenericBlockFunction)(Scope* scope,
45 typedef Value (*NoBlockFunction)(Scope* scope,
52 Value RunAssert(Scope* scope,
59 Value RunComponent(Scope* scope,
81 Value RunCustom(Scope* scope,
96 Value RunExecScript(Scope* scope,
103 Value RunExecutable(Scope* scope,
111 Value RunGroup(Scope* scope,
119 Value RunImport(Scope* scope,
126 Value RunPrint(Scope* scope,
[all...]
H A Dfunction_define_rule.cc7 #include "tools/gn/scope.h"
16 Value RunDefineRule(Scope* scope, argument
32 const FunctionCallNode* existing_rule = scope->GetRule(rule_name);
40 scope->AddRule(rule_name, function);
H A Dfunction_template.cc8 #include "tools/gn/scope.h"
62 " # The |sources| will be inherited from the surrounding scope so\n"
84 Value RunTemplate(Scope* scope, argument
100 const FunctionCallNode* existing_template = scope->GetTemplate(template_name);
109 scope->AddTemplate(template_name, function);
H A Dfunctions.cc17 #include "tools/gn/scope.h"
33 Value RunTemplateInvocation(Scope* scope, argument
39 if (!EnsureNotProcessingImport(invocation, scope, err))
41 Scope block_scope(scope);
42 if (!FillTargetBlockScope(scope, invocation,
52 // Now run the rule itself with that block as the current scope.
65 const Scope* scope,
67 if (scope->IsProcessingImport()) {
80 const Scope* scope,
82 if (scope
64 EnsureNotProcessingImport(const ParseNode* node, const Scope* scope, Err* err) argument
79 EnsureNotProcessingBuildConfig(const ParseNode* node, const Scope* scope, Err* err) argument
91 FillTargetBlockScope(const Scope* scope, const FunctionCallNode* function, const char* target_type, const BlockNode* block, const std::vector<Value>& args, Scope* block_scope, Err* err) argument
140 ToolchainLabelForScope(const Scope* scope) argument
144 MakeLabelForScope(const Scope* scope, const FunctionCallNode* function, const std::string& name) argument
160 RunAssert(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
198 RunConfig(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
241 RunDeclareArgs(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
314 RunImport(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
336 RunSetDefaults(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
378 RunSetSourcesAssignmentFilter(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
412 RunPrint(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
500 RunFunction(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCTarget.java81 /** Is scope in @scope::name {action} valid for this kind of grammar?
88 public boolean isValidActionScope(int grammarType, String scope) { argument
91 if (scope.equals("lexer")) {
94 if (scope.equals("header")) {
97 if (scope.equals("includes")) {
100 if (scope.equals("preincludes")) {
103 if (scope.equals("overrides")) {
108 if (scope.equals("parser")) {
111 if (scope
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DSignerStub.java52 * Constructor, sets given name and scope
55 * @param scope
58 public SignerStub(String name, IdentityScope scope) argument
60 super(name, scope);
H A DIdentityScopeStub.java55 * @param scope
58 public IdentityScopeStub(String name, IdentityScope scope) argument
60 super(name, scope);
116 * Sets the system's identity scope
117 * @param scope
119 public static void mySetSystemScope(IdentityScope scope) { argument
121 IdentityScope.setSystemScope(scope);
/external/chromium_org/extensions/browser/
H A Dpref_names.cc12 bool ScopeToPrefName(ExtensionPrefsScope scope, std::string* result) { argument
13 switch (scope) {
H A Dpref_names.h18 // If the given |scope| is persisted, return true and populate |result| with the
19 // appropriate pref name. If |scope| is not persisted, return false, and leave
21 bool ScopeToPrefName(ExtensionPrefsScope scope, std::string* result);
/external/skia/tools/skpdiff/
H A Ddiff_viewer.js15 scope: { // The attributes below are bound to the scope
20 link: function(scope, elm, attrs, ctrl) {
25 scope.render = function() {
27 if (scope.side == "left") {
50 if (scope.side == "left") {
51 scope.render();
60 if (scope.side == "right") {
61 scope.render();
67 scope
[all...]
/external/libsepol/tests/
H A Dhelpers.c68 scope_datum_t *scope = (scope_datum_t *) hashtab_search(p->scope[symtab].table, sym); local
70 if (scope == NULL) {
73 if (scope->scope != SCOPE_DECL) {
76 if (scope->decl_ids_len != 1) {
80 return p->decl_val_to_struct[scope->decl_ids[0] - 1];
/external/chromium_org/v8/test/mjsunit/harmony/
H A Ddebug-function-scopes.js47 // A copy of the scope types from mirror-debugger.js.
77 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
78 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure);
79 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure);
80 CheckScope(mirror.scope(3), {}, ScopeType.Global);
110 CheckScope(mirror.scope(0), { l4: 11 }, ScopeType.Block);
112 CheckScope(mirror.scope(1), { l3: 9 }, ScopeType.Block);
113 CheckScope(mirror.scope(2), { l1: 6, l2: 7 }, ScopeType.Block);
114 CheckScope(mirror.scope(3), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure);
115 CheckScope(mirror.scope(
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentOrderedMap.cpp114 inline Element* DocumentOrderedMap::get(StringImpl* key, const TreeScope* scope) const
117 ASSERT(scope);
129 for (Element* element = ElementTraversal::firstWithin(scope->rootNode()); element; element = ElementTraversal::next(element)) {
139 Element* DocumentOrderedMap::getElementById(StringImpl* key, const TreeScope* scope) const
141 return get<keyMatchesId>(key, scope);
144 Element* DocumentOrderedMap::getElementByName(StringImpl* key, const TreeScope* scope) const
146 return get<keyMatchesName>(key, scope);
149 Element* DocumentOrderedMap::getElementByMapName(StringImpl* key, const TreeScope* scope) const
151 return get<keyMatchesMapName>(key, scope);
154 Element* DocumentOrderedMap::getElementByLowercasedMapName(StringImpl* key, const TreeScope* scope) cons
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-stepout-scope-part2.js30 // Check that the ScopeIterator can properly recreate the scope at
37 // Access scope details.
40 var scope = exec_state.frame().scope(i);
41 // assertTrue(scope.isScope());
42 scope.scopeType();
43 scope.scopeObject();
46 // Do steps until we reach the global scope again.
H A Ddebug-stepout-scope-part3.js30 // Check that the ScopeIterator can properly recreate the scope at
37 // Access scope details.
40 var scope = exec_state.frame().scope(i);
41 // assertTrue(scope.isScope());
42 scope.scopeType();
43 scope.scopeObject();
46 // Do steps until we reach the global scope again.
H A Ddebug-stepout-scope-part4.js30 // Check that the ScopeIterator can properly recreate the scope at
37 // Access scope details.
40 var scope = exec_state.frame().scope(i);
41 // assertTrue(scope.isScope());
42 scope.scopeType();
43 scope.scopeObject();
46 // Do steps until we reach the global scope again.
H A Ddebug-stepout-scope-part5.js30 // Check that the ScopeIterator can properly recreate the scope at
37 // Access scope details.
40 var scope = exec_state.frame().scope(i);
41 // assertTrue(scope.isScope());
42 scope.scopeType();
43 scope.scopeObject();
46 // Do steps until we reach the global scope again.
H A Ddebug-stepout-scope-part6.js30 // Check that the ScopeIterator can properly recreate the scope at
37 // Access scope details.
40 var scope = exec_state.frame().scope(i);
41 // assertTrue(scope.isScope());
42 scope.scopeType();
43 scope.scopeObject();
46 // Do steps until we reach the global scope again.

Completed in 5137 milliseconds

1234567891011>>