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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/browser/service_worker/
service_worker_utils.cc 15 bool ServiceWorkerUtils::ScopeMatches(const GURL& scope, const GURL& url) {
16 DCHECK(!scope.has_ref());
18 return StartsWithASCII(url.spec(), scope.spec(), true);
21 bool LongestScopeMatcher::MatchLongest(const GURL& scope) {
22 if (!ServiceWorkerUtils::ScopeMatches(scope, url_))
24 if (match_.is_empty() || match_.spec().size() < scope.spec().size()) {
25 match_ = scope;
  /external/iproute2/ip/
routef 4 exec ip -4 ro flush scope global type unicast
  /external/chromium_org/third_party/skia/gm/rebaseline_server/static/
live-loader.js 4 * them into $scope.extraColumnHeaders and $scope.imagePairs .
21 return function(scope, element, attrs) {
22 if (scope.$last) {
24 scope.resultsUpdatedCallback();
132 function($scope, $http, $filter, $location, $log, $timeout, constants) {
133 $scope.readyToDisplay = false;
134 $scope.constants = constants;
135 $scope.windowTitle = "Loading GM Results...";
136 $scope.setADir = $location.search().setADir
    [all...]
loader.js 4 * them into $scope.extraColumnHeaders and $scope.imagePairs .
15 return function(scope, element, attrs) {
16 if (scope.$last) {
18 scope.resultsUpdatedCallback();
126 function($scope, $http, $filter, $location, $log, $timeout, constants) {
127 $scope.readyToDisplay = false;
128 $scope.constants = constants;
129 $scope.windowTitle = "Loading GM Results...";
130 $scope.resultsToLoad = $location.search().resultsToLoad
    [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...]
functions_target.cc 10 #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,
    [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...]
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.h 20 class Scope;
31 typedef Value (*SelfEvaluatingArgsFunction)(Scope* scope,
37 typedef Value (*GenericBlockFunction)(Scope* scope,
48 Scope* block_scope,
52 typedef Value (*NoBlockFunction)(Scope* scope,
60 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(), true);
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...]
function_get_label_info.cc 84 Value RunGetLabelInfo(Scope* scope,
94 Label label = Label::Resolve(scope->GetSourceDir(),
95 ToolchainLabelForScope(scope), args[0], err);
113 GetGenDirForSourceDir(scope->settings(), label.dir()));
118 scope->settings()->default_toolchain_label() == toolchain_label;
120 GetToolchainGenDir(scope->settings()->build_settings(),
125 GetOutputDirForSourceDir(scope->settings(), label.dir()));
130 scope->settings()->default_toolchain_label() == toolchain_label;
132 GetToolchainOutputDir(scope->settings()->build_settings()
    [all...]
action_target_generator_unittest.cc 13 Scope::ItemVector items_;
14 setup.scope()->set_item_collector(&items_);
27 input_good.parsed()->Execute(setup.scope(), &err);
40 input_bad.parsed()->Execute(setup.scope(), &err);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchRequest.h 36 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, unsigned styleSheetIndex = 0)
39 , scope(scope)
50 RawPtrWillBeMember<const ContainerNode> scope; member in class:blink::MatchRequest
FontBuilder.cpp 99 FontDescriptionChangeScope scope(this);
101 scope.reset();
102 setFontFamilyToStandard(scope.fontDescription(), m_document);
103 setSize(scope.fontDescription(), FontBuilder::initialSize());
108 FontDescriptionChangeScope scope(this);
110 scope.set(fontDescription);
120 FontDescriptionChangeScope scope(this);
137 scope.set(fontDescription);
142 FontDescriptionChangeScope scope(this);
144 setFontFamilyToStandard(scope.fontDescription(), m_document)
    [all...]
ScopedStyleResolver.h 50 static PassOwnPtrWillBeRawPtr<ScopedStyleResolver> create(TreeScope& scope)
52 return adoptPtrWillBeNoop(new ScopedStyleResolver(scope));
74 explicit ScopedStyleResolver(TreeScope& scope)
75 : m_scope(scope)
  /external/chromium_org/third_party/WebKit/public/platform/
WebServiceWorkerRegistration.h 22 virtual WebURL scope() const { return WebURL(); } function in class:blink::WebServiceWorkerRegistration
  /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);
IdentityScopeStub.java 57 * @param scope
60 public IdentityScopeStub(String name, IdentityScope scope)
62 super(name, scope);
124 * Sets the system's identity scope
126 * @param scope
128 public static void mySetSystemScope(IdentityScope scope) {
130 IdentityScope.setSystemScope(scope);
  /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/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/editing/
PlainTextRange.cpp 60 PassRefPtrWillBeRawPtr<Range> PlainTextRange::createRange(const ContainerNode& scope) const
62 return createRangeFor(scope, ForGeneric);
65 PassRefPtrWillBeRawPtr<Range> PlainTextRange::createRangeForSelection(const ContainerNode& scope) const
67 return createRangeFor(scope, ForSelection);
70 PassRefPtrWillBeRawPtr<Range> PlainTextRange::createRangeFor(const ContainerNode& scope, GetRangeFor getRangeFor) const
74 RefPtrWillBeRawPtr<Range> resultRange = scope.document().createRange();
85 TextIterator it(rangeOfContents(const_cast<ContainerNode*>(&scope)).get(), behaviorFlags);
160 PlainTextRange PlainTextRange::create(const ContainerNode& scope, const Range& range)
170 if (range.startContainer() != &scope && !range.startContainer()->isDescendantOf(&scope))
    [all...]
PlainTextRange.h 51 PassRefPtrWillBeRawPtr<Range> createRange(const ContainerNode& scope) const;
52 PassRefPtrWillBeRawPtr<Range> createRangeForSelection(const ContainerNode& scope) const;
54 static PlainTextRange create(const ContainerNode& scope, const Range&);
60 PassRefPtrWillBeRawPtr<Range> createRangeFor(const ContainerNode& scope, GetRangeFor) const;

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 91011>>