HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 1 - 25 of 1418) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RegistrationOptionList.h 14 : scope("/*")
17 options.get("scope", scope);
20 String scope; member in struct:WebCore::RegistrationOptionList
  /external/iproute2/ip/
routef 4 exec ip -4 ro flush scope global type unicast
  /external/chromium_org/third_party/skia/gm/rebaseline_server/static/
loader.js 4 * them into $scope.extraColumnHeaders and $scope.imagePairs .
15 return function(scope, element, attrs) {
16 if (scope.$last) {
18 scope.resultsUpdatedCallback();
40 // than calling $scope.isValueInSet().
41 // Besides, I don't think we have access to $scope in here...
121 function($scope, $http, $filter, $location, $log, $timeout, constants) {
122 $scope.constants = constants;
123 $scope.windowTitle = "Loading GM Results..."
    [all...]
  /external/skia/gm/rebaseline_server/static/
loader.js 4 * them into $scope.extraColumnHeaders and $scope.imagePairs .
15 return function(scope, element, attrs) {
16 if (scope.$last) {
18 scope.resultsUpdatedCallback();
40 // than calling $scope.isValueInSet().
41 // Besides, I don't think we have access to $scope in here...
121 function($scope, $http, $filter, $location, $log, $timeout, constants) {
122 $scope.constants = constants;
123 $scope.windowTitle = "Loading GM Results..."
    [all...]
  /external/chromium_org/tools/gn/
function_rebase_path_unittest.cc 13 std::string RebaseOne(Scope* scope,
24 Value result = functions::RunRebasePath(scope, &function, args, &err);
36 Scope* scope = setup.scope(); local
37 scope->set_source_dir(SourceDir("//tools/gn/"));
40 EXPECT_EQ("../../tools/gn", RebaseOne(scope, ".", "//out/Debug", "."));
41 EXPECT_EQ("../../tools/gn/", RebaseOne(scope, "./", "//out/Debug", "."));
42 EXPECT_EQ("../../tools/gn/foo", RebaseOne(scope, "foo", "//out/Debug", "."))
    [all...]
template.cc 10 #include "tools/gn/scope.h"
14 Template::Template(const Scope* scope, const FunctionCallNode* def)
15 : closure_(scope->MakeClosure()),
19 Template::Template(scoped_ptr<Scope> scope, const FunctionCallNode* def)
20 : closure_(scope.Pass()),
27 Value Template::Invoke(Scope* scope,
34 if (!EnsureNotProcessingImport(invocation, scope, err)
    [all...]
group_target_generator.cc 9 Scope* scope,
12 : TargetGenerator(target, scope, function_call, err) {
function_set_default_toolchain.cc 9 #include "tools/gn/scope.h"
46 Value RunSetDefaultToolchain(Scope* scope,
50 if (!scope->IsProcessingBuildConfig()) {
58 // this key on the scope to point to the destination.
60 scope->GetProperty(Loader::kDefaultToolchainKey, NULL));
64 const SourceDir& current_dir = scope->GetSourceDir();
65 const Label& default_toolchain = ToolchainLabelForScope(scope);
value_unittest.cc 30 Scope* scope = new Scope(setup.scope()); local
31 Value scopeval(NULL, scoped_ptr<Scope>(scope));
34 scope->SetValue("a", Value(NULL, static_cast<int64>(42)), NULL);
35 scope->SetValue("b", Value(NULL, "hello, world"), NULL);
import_manager.cc 15 // Returns a newly-allocated scope on success, null on failure.
16 Scope* UncachedImport(const Settings* settings,
27 scoped_ptr<Scope> scope(new Scope(settings->base_config()));
28 scope->set_source_dir(file.GetDir());
33 ScopePerFileProvider per_file_provider(scope.get(), false);
35 scope->SetProcessingImport();
36 block->ExecuteBlockInScope(scope.get(), err);
39 scope->ClearProcessingImport()
    [all...]
functions_target.cc 10 #include "tools/gn/scope.h"
27 Scope* scope,
32 if (!EnsureNotProcessingImport(function, scope, err) ||
33 !EnsureNotProcessingBuildConfig(function, scope, err))
35 Scope block_scope(scope);
36 if (!FillTargetBlockScope(scope, function, target_type, block,
145 Value RunAction(Scope* scope,
    [all...]
function_foreach.cc 8 #include "tools/gn/scope.h"
30 " The block does not introduce a new scope, so that variable assignments\n"
35 " the loop variable will no longer be in scope, and the previous value\n"
49 Value RunForEach(Scope* scope,
73 list_value = scope->GetValue(list_identifier->value().value());
80 Scope list_exec_scope(scope);
81 value_storage_for_exec = args_vector[1]->Execute(scope, err);
97 // If the loop variable was previously defined in this scope, save it so w
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.cpp 100 FontDescriptionChangeScope scope(this);
102 scope.reset();
103 setFontFamilyToStandard(scope.fontDescription(), m_document);
104 scope.fontDescription().setKeywordSize(CSSValueMedium - CSSValueXxSmall + 1);
105 setSize(scope.fontDescription(), effectiveZoom, FontSize::fontSizeForKeyword(m_document, CSSValueMedium, false));
110 FontDescriptionChangeScope scope(this);
112 scope.set(fontDescription);
122 FontDescriptionChangeScope scope(this);
139 scope.set(fontDescription);
144 FontDescriptionChangeScope scope(this)
    [all...]
MatchRequest.h 36 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, bool elementApplyAuthorStyles = true, unsigned styleSheetIndex = 0)
39 , scope(scope)
51 RawPtrWillBeMember<const ContainerNode> scope; member in class:WebCore::MatchRequest
  /external/chromium_org/content/browser/service_worker/
service_worker_utils.cc 24 bool ServiceWorkerUtils::ScopeMatches(const GURL& scope, const GURL& url) {
25 DCHECK(!scope.has_ref());
27 const std::string& scope_spec = scope.spec();
36 bool LongestScopeMatcher::MatchLongest(const GURL& scope) {
37 if (!ServiceWorkerUtils::ScopeMatches(scope, url_))
40 match_ = scope;
45 const std::string scope_spec = scope.spec();
47 match_ = scope;
51 // If |scope| has the same length with |match_|, they are compared as strings.
58 match_ = 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/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
SignerStub.java 51 * Constructor, sets given name and scope
54 * @param scope
57 public SignerStub(String name, IdentityScope scope)
59 super(name, scope);
  /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);
  /packages/apps/Camera2/src/com/android/camera/settings/
SettingsManager.java 48 * Scope
50 * This API introduces the concept of "scope" for a setting, which is the generality
52 * entire application, have a scope of SCOPE_GLOBAL. They are stored in the default
56 * a custom scope. The specific module can define whatever scope (String) argument
57 * they want, and the settings saved with that scope can only be seen by that third
58 * party module. Scope is a general concept that helps protect settings values
106 * custom scope.
113 * Open a SharedPreferences file by custom scope.
117 protected SharedPreferences openPreferences(String scope) {
    [all...]
  /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/chromium_org/third_party/skia/tools/skpdiff/
diff_viewer.js 16 scope: true,
17 link: function(scope, elm, attrs, ctrl) {
29 image.src = scope.record.differencePath;
33 image.src = scope.record.baselinePath;
37 image.src = scope.record.testPath;
54 scope.setImgScaleFactor(1 / divisor);
57 canvas.width = image.width * scope.imgScaleFactor;
58 canvas.height = image.height * scope.imgScaleFactor;
61 if (!scope.maskSizeUpdated) {
63 scope.updateMaskCanvasSize({width: canvas.width, height: canvas.height})
    [all...]
  /external/skia/tools/skpdiff/
diff_viewer.js 16 scope: true,
17 link: function(scope, elm, attrs, ctrl) {
29 image.src = scope.record.differencePath;
33 image.src = scope.record.baselinePath;
37 image.src = scope.record.testPath;
54 scope.setImgScaleFactor(1 / divisor);
57 canvas.width = image.width * scope.imgScaleFactor;
58 canvas.height = image.height * scope.imgScaleFactor;
61 if (!scope.maskSizeUpdated) {
63 scope.updateMaskCanvasSize({width: canvas.width, height: canvas.height})
    [all...]
  /frameworks/base/core/java/android/net/
LinkAddress.java 45 * <li>Address scope: One of the {@code OsConstants.IFA_F_*} values; defines the scope in which
68 * Address scope. One of the RT_SCOPE_* constants.
70 private int scope; field in class:LinkAddress
73 * Utility function to determines the scope of a unicast address. Per RFC 4291 section 2.5 and
87 // says that they are assigned global scope.
98 private void init(InetAddress address, int prefixLength, int flags, int scope) {
110 this.scope = scope;
115 * the specified flags and scope. Flags and scope are not checked for validity
    [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];

Completed in 1363 milliseconds

1 2 3 4 5 6 7 8 91011>>