/external/iproute2/ip/ |
routef | 4 exec ip -4 ro flush scope global type unicast
|
routel | 24 scope="" 40 echo "$network $via $src $proto $scope $dev $table" 44 printf(format,"target","","gateway","source","proto","scope","dev","tbl"); 55 scope=$5; 58 printf(format,network,mask,via,src,proto,scope,dev,table);
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
MatchRequest.h | 34 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
|
FontBuilder.cpp | 93 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.set(fontDescription) [all...] |
/external/chromium_org/tools/gn/ |
functions_target.cc | 9 #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, [all...] |
import_manager.cc | 14 // Returns a newly-allocated scope on success, null on failure. 15 Scope* UncachedImport(const Settings* settings, 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 [all...] |
function_set_default_toolchain.cc | 8 #include "tools/gn/scope.h" 44 Value RunSetDefaultToolchain(Scope* scope, 48 if (!scope->IsProcessingBuildConfig()) { 56 if (!scope->IsProcessingDefaultBuildConfig()) 60 const Label& default_toolchain = ToolchainLabelForScope(scope); 70 scope->settings()->build_settings()->toolchain_manager();
|
functions.h | 20 class Scope; 30 typedef Value (*GenericBlockFunction)(Scope* scope, 41 Scope* block_scope, 45 typedef Value (*NoBlockFunction)(Scope* scope, 52 Value RunAssert(Scope* scope, 59 Value RunComponent(Scope* scope, [all...] |
function_define_rule.cc | 7 #include "tools/gn/scope.h" 16 Value RunDefineRule(Scope* scope, 32 const FunctionCallNode* existing_rule = scope->GetRule(rule_name); 40 scope->AddRule(rule_name, function);
|
function_template.cc | 8 #include "tools/gn/scope.h" 62 " # The |sources| will be inherited from the surrounding scope so\n" 84 Value RunTemplate(Scope* scope, 100 const FunctionCallNode* existing_template = scope->GetTemplate(template_name); 109 scope->AddTemplate(template_name, function);
|
functions.cc | 17 #include "tools/gn/scope.h" 33 Value RunTemplateInvocation(Scope* scope, 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, [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
CTarget.java | 81 /** Is scope in @scope::name {action} valid for this kind of grammar? 88 public boolean isValidActionScope(int grammarType, String scope) { 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.equals("header")) [all...] |
/external/skia/tools/skpdiff/ |
diff_viewer.js | 15 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.swap = function() [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
SignerStub.java | 52 * Constructor, sets given name and scope 55 * @param scope 58 public SignerStub(String name, IdentityScope scope) 60 super(name, scope);
|
IdentityScopeStub.java | 55 * @param scope 58 public IdentityScopeStub(String name, IdentityScope scope) 60 super(name, scope); 116 * Sets the system's identity scope 117 * @param scope 119 public static void mySetSystemScope(IdentityScope scope) { 121 IdentityScope.setSystemScope(scope);
|
/external/chromium_org/extensions/browser/ |
pref_names.cc | 12 bool ScopeToPrefName(ExtensionPrefsScope scope, std::string* result) { 13 switch (scope) {
|
pref_names.h | 18 // 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);
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
SignerStub.java | 53 * Constructor, sets given name and scope 56 * @param scope 59 public SignerStub(String name, IdentityScope scope) 61 super(name, scope);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
symbols.py | 14 class Scope: 88 """Return scope of name. 90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL. 123 """Force name to be global in scope. 127 variable. Now that all its enclosing scope have been 143 """Process list of free vars from nested scope. 147 the nested scope should treat them as globals. 172 class ModuleScope(Scope): 173 __super_init = Scope.__init__ 178 class FunctionScope(Scope) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
symbols.py | 14 class Scope: 88 """Return scope of name. 90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL. 123 """Force name to be global in scope. 127 variable. Now that all its enclosing scope have been 143 """Process list of free vars from nested scope. 147 the nested scope should treat them as globals. 172 class ModuleScope(Scope): 173 __super_init = Scope.__init__ 178 class FunctionScope(Scope) [all...] |
/external/libsepol/tests/ |
helpers.c | 68 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/third_party/WebKit/Source/core/dom/ |
DocumentOrderedMap.cpp | 114 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/clang/lib/Sema/ |
TargetAttributesSema.h | 14 class Scope; 22 virtual bool ProcessDeclAttribute(Scope *scope, Decl *D,
|
/external/libsepol/src/ |
avrule_block.c | 4 * or global scope) for a policy module. 70 ebitmap_init(&decl->required.scope[i]); 71 ebitmap_init(&decl->declared.scope[i]); 78 static void scope_index_destroy(scope_index_t * scope) 81 if (scope == NULL) { 85 ebitmap_destroy(scope->scope + i); 87 for (i = 0; i < scope->class_perms_len; i++) { 88 ebitmap_destroy(scope->class_perms_map + i); 90 free(scope->class_perms_map) 156 scope_datum_t *scope = local [all...] |
/frameworks/base/core/java/android/net/ |
INetworkManagementEventObserver.aidl | 63 * @param scope The address scope. 65 void addressUpdated(String address, String iface, int flags, int scope); 73 * @param scope The address scope. 75 void addressRemoved(String address, String iface, int flags, int scope);
|