HomeSort by relevance Sort by last modified time
    Searched defs:Scope (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/chromium_org/gin/
runner.cc 15 Runner::Scope::Scope(Runner* runner)
21 Runner::Scope::~Scope() {
runner.h 24 // context by creating an instance of Runner::Scope on the stack.
43 class GIN_EXPORT Scope {
45 explicit Scope(Runner* runner);
46 ~Scope();
49 v8::Isolate::Scope isolate_scope_;
51 v8::Context::Scope scope_;
53 DISALLOW_COPY_AND_ASSIGN(Scope);
57 friend class Scope;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2073.js 38 function Scope() {
48 Scope.prototype = {
81 function inc(scope) {
82 scope.counter = scope.counter + 1;
85 var $root = new Scope();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentLifecycle.cpp 40 DocumentLifecycle::Scope::Scope(DocumentLifecycle& lifecycle, State finalState)
46 DocumentLifecycle::Scope::~Scope()
DocumentLifecycle.h 71 class Scope {
72 WTF_MAKE_NONCOPYABLE(Scope);
74 Scope(DocumentLifecycle&, State finalState);
75 ~Scope();
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRHashMap.h 42 NSInteger Scope;
51 @property (getter=getScope, setter=setScope:) NSInteger Scope;
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashMap.h 42 NSInteger Scope;
51 @property (getter=getScope, setter=setScope:) NSInteger Scope;
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRHashMap.h 42 NSInteger Scope;
51 @property (getter=getScope, setter=setScope:) NSInteger Scope;
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
  /external/chromium_org/content/public/browser/
service_worker_context.h 19 // https://rawgithub.com/slightlyoff/ServiceWorker/master/spec/service_worker/index.html#url-scope:
21 typedef GURL Scope;
28 // Equivalent to calling navigator.serviceWorker.register(script_url, {scope:
39 virtual void RegisterServiceWorker(const Scope& pattern,
51 virtual void UnregisterServiceWorker(const Scope& pattern,
54 // TODO(jyasskin): Provide a way to SendMessage to a Scope.
  /external/chromium_org/v8/src/compiler/
source-position.h 48 class Scope {
50 Scope(SourcePositionTable* source_positions, SourcePosition position)
55 Scope(SourcePositionTable* source_positions, Node* node)
60 ~Scope() { source_positions_->current_position_ = prev_position_; }
71 DISALLOW_COPY_AND_ASSIGN(Scope);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRHashMap.h 41 NSInteger Scope;
69 - (id)lookup:(NSString *)s Scope:(int)scope;
71 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
101 @property (getter=getScope, setter=setScope:) NSInteger Scope;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptState.h 27 class Scope {
29 // You need to make sure that scriptState->context() is not empty before creating a Scope.
30 explicit Scope(ScriptState* scriptState)
38 ~Scope()
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 133 unsigned Scope = Attrs & LTO_SYMBOL_SCOPE_MASK;
134 if (Scope != LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN)
  /external/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 193 // Create a new lexical scope and compute a new discriminator
198 DIScope Scope = FirstDIL.getScope();
199 DIFile File = Builder.createFile(Filename, Scope.getDirectory());
202 Scope, File, LineNumber, ColumnNumber, Discriminator);
  /external/chromium_org/tools/gn/
scope.cc 5 #include "tools/gn/scope.h"
14 // FLags set in the mode_flags_ of a scope. If a bit is set, it applies
28 Scope::Scope(const Settings* settings)
36 Scope::Scope(Scope* parent)
44 Scope::Scope(const Scope* parent
    [all...]
scope.h 29 // Scope for the script execution.
31 // 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.
40 class Scope {
52 ProgrammaticProvider(Scope* scope) : scope_(scope) {
    [all...]
  /external/chromium_org/v8/src/heap/
gc-tracer.h 88 class Scope {
113 Scope(GCTracer* tracer, ScopeId scope) : tracer_(tracer), scope_(scope) {
117 ~Scope() {
128 DISALLOW_COPY_AND_ASSIGN(Scope);
235 double scopes[Scope::NUMBER_OF_SCOPES];
  /external/llvm/lib/IR/
DebugLoc.cpp 48 /// Return both the Scope and the InlinedAt values.
49 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
52 Scope = IA = nullptr;
61 Scope = Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
69 Scope = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
80 const MDNode *Scope = getScopeNode(Ctx);
81 DISubprogram SP = getDISubprogram(Scope);
95 MDNode *Scope, MDNode *InlinedAt) {
98 // If no scope is available, this is an unknown location.
99 if (!Scope) return Result
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTestCommon.h 61 llvm::MDNode* Scope;
84 Scope = DebugBuilder->createFile(getFilename(), ".");
  /external/chromium_org/chrome/browser/extensions/
extension_management.cc 32 enum Scope {
40 // sub-dictionary in extension management preference and |scope| represents
46 Scope scope,
70 if (scope != SCOPE_INDIVIDUAL) {
  /external/chromium_org/media/formats/webm/
webm_content_encodings.h 23 enum Scope {
58 Scope scope() const { return scope_; } function in class:media::ContentEncoding
59 void set_scope(Scope scope) { scope_ = scope; }
77 Scope scope_;
  /external/chromium_org/tools/usb_gadget/
hid_constants.py 22 class Scope(object):
23 """Item scope.
  /external/clang/lib/Sema/
AttributeList.cpp 141 StringRef Scope = ScopeName ? ScopeName->getName() : "";
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 102 MDNode *Scope, *IA;
103 I.getDebugLoc().getScopeAndInlinedAt(Scope, IA, I.getContext());
104 if (Scope) EnumerateMetadata(Scope);
  /external/llvm/lib/CodeGen/AsmPrinter/
WinCodeViewLineTables.cpp 26 "Unexpected scope info");
28 DIScope Scope(S);
29 StringRef Dir = Scope.getDirectory(),
30 Filename = Scope.getFilename();
84 const MDNode *Scope = DL.getScope(MF->getFunction()->getContext());
85 if (!Scope)
87 StringRef Filename = getFullFilepath(Scope);

Completed in 830 milliseconds

1 2 3