HomeSort by relevance Sort by last modified time
    Searched defs:Scope (Results 76 - 100 of 623) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/protobuf/src/google/protobuf/util/
message_differencer.h 354 enum Scope {
388 // If the scope of comparison is set to PARTIAL, then in addition to what's
520 // Sets the scope of the comparison (as defined in the Scope enumeration
523 void set_scope(Scope scope);
525 // Returns the current scope used by this differencer.
526 Scope scope();
657 Scope fields1_scope
    [all...]
  /external/python/cpython2/Lib/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/skia/src/gpu/glsl/
GrGLSLVarying.h 21 enum class Scope {
28 GrGLSLVarying(GrSLType type, Scope scope = Scope::kVertToFrag) : fType(type), fScope(scope) {}
30 void reset(GrSLType type, Scope scope = Scope::kVertToFrag) {
33 fScope = scope;
37 Scope scope() const { return fScope; function in class:GrGLSLVarying
    [all...]
  /external/skia/src/utils/
SkJSONWriter.h 55 fScopeStack.push_back(Scope::kNone);
85 SkASSERT(Scope::kObject == this->scope());
109 fScopeStack.push_back(Scope::kObject);
118 SkASSERT(Scope::kObject == this->scope());
141 fScopeStack.push_back(Scope::kArray);
150 SkASSERT(Scope::kArray == this->scope());
252 enum class Scope {
317 Scope scope() const { function in class:SkJSONWriter
    [all...]
  /external/skqp/src/gpu/glsl/
GrGLSLVarying.h 21 enum class Scope {
28 GrGLSLVarying(GrSLType type, Scope scope = Scope::kVertToFrag) : fType(type), fScope(scope) {}
30 void reset(GrSLType type, Scope scope = Scope::kVertToFrag) {
33 fScope = scope;
37 Scope scope() const { return fScope; function in class:GrGLSLVarying
    [all...]
  /external/skqp/src/utils/
SkJSONWriter.h 55 fScopeStack.push_back(Scope::kNone);
85 SkASSERT(Scope::kObject == this->scope());
109 fScopeStack.push_back(Scope::kObject);
118 SkASSERT(Scope::kObject == this->scope());
141 fScopeStack.push_back(Scope::kArray);
150 SkASSERT(Scope::kArray == this->scope());
252 enum class Scope {
317 Scope scope() const { function in class:SkJSONWriter
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LexicalScopes.cpp 1 //===- LexicalScopes.cpp - Collecting lexical scope info ------------------===//
12 // This pass collects lexical scope information and maps machine instructions
42 /// initialize - Scan machine function and constuct lexical scope nest.
78 // If scope has not changed then skip this instruction.
90 // current instruction scope does not match scope of first instruction
114 /// findLexicalScope - Find lexical scope, either regular or inlined, for the
117 MDNode *Scope = NULL;
119 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext());
120 if (!Scope) return NULL
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
BindingTarget.java 22 import android.databinding.tool.processing.Scope;
151 Scope.enter(binding);
154 Scope.exit();
162 Scope.enter(binding);
165 Scope.exit();
173 Scope.enter(binding);
176 Scope.exit();
196 Scope.enter(binding);
200 Scope.exit();
DataBinder.java 19 import android.databinding.tool.processing.Scope;
54 Scope.defer(ex);
72 Scope.enter(layoutBinder);
85 Scope.defer(ex);
87 Scope.exit();
96 Scope.enter(layoutBinder);
103 Scope.defer(ex);
105 Scope.exit();
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
CallbackExprModel.java 20 import android.databinding.tool.processing.Scope;
107 Scope.enter(added);
114 Scope.exit();
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
DataBindingBuilder.java 21 import android.databinding.tool.processing.Scope;
121 Scope.assertNoError();
  /libcore/json/src/main/java/org/json/
JSONStringer.java 71 enum Scope {
114 private final List<Scope> stack = new ArrayList<Scope>();
139 return open(Scope.EMPTY_ARRAY, "[");
148 return close(Scope.EMPTY_ARRAY, Scope.NONEMPTY_ARRAY, "]");
158 return open(Scope.EMPTY_OBJECT, "{");
167 return close(Scope.EMPTY_OBJECT, Scope.NONEMPTY_OBJECT, "}");
171 * Enters a new scope by appending any necessary whitespace and the give
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pnrpdef.h 70 PNRP_SCOPE Scope;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/go/darwin-x86/src/go/types/
object.go 20 Parent() *Scope // scope in which this object is declared; nil for methods and struct fields
22 Pkg() *Package // package to which this object belongs; nil for labels and objects in the Universe scope
40 // setParent sets the parent scope of the object.
41 setParent(*Scope)
46 // scopePos returns the start position of the scope of this Object
49 // setScopePos sets the start position of the scope for this Object.
65 // pkg is nil for objects in Universe scope and possibly types
75 parent *Scope
84 func (obj *object) Parent() *Scope { return obj.parent
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
object.go 20 Parent() *Scope // scope in which this object is declared; nil for methods and struct fields
22 Pkg() *Package // package to which this object belongs; nil for labels and objects in the Universe scope
40 // setParent sets the parent scope of the object.
41 setParent(*Scope)
46 // scopePos returns the start position of the scope of this Object
49 // setScopePos sets the start position of the scope for this Object.
65 // pkg is nil for objects in Universe scope and possibly types
75 parent *Scope
84 func (obj *object) Parent() *Scope { return obj.parent
    [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...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
message_differencer.h 354 enum Scope {
388 // If the scope of comparison is set to PARTIAL, then in addition to what's
520 // Sets the scope of the comparison (as defined in the Scope enumeration
523 void set_scope(Scope scope);
525 // Returns the current scope used by this differencer.
526 Scope scope();
657 Scope fields1_scope
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
LayoutFileParser.java 21 import android.databinding.tool.processing.Scope;
78 Scope.enter(new FileScopeProvider() {
88 Scope.exit();
95 Scope.enter(new FileScopeProvider() {
129 Scope.exit();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StringDB.h 87 WCHAR *Scope; //
149 WCHAR *Scope,
158 WCHAR *Scope
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckHiiLib/
VarCheckHiiGen.c 139 DEBUG ((EFI_D_INFO, " IfrOpCodeHeader->Scope - 0x%02x\n", IfrOpCodeHeader->Scope));
151 DEBUG ((EFI_D_INFO, " IfrOpCodeHeader->Scope - 0x02%x\n", IfrOpCodeHeader->Scope));
166 DEBUG ((EFI_D_INFO, " IfrOpCodeHeader->Scope - 0x02%x\n", IfrOpCodeHeader->Scope));
244 if (IfrOpCodeHeader->Scope != 0) {
245 UINTN Scope;
249 Scope = 1;
250 while (Scope != 0) {
    [all...]
  /external/clang/include/clang/Analysis/
AnalysisContext.h 216 enum ContextKind { StackFrame, Scope, Block };
328 : LocationContext(Scope, ctx, parent), Enter(s) {}
337 ProfileCommon(ID, Scope, ctx, parent, s);
341 return Ctx->getKind() == Scope;
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 1 //===--- JumpDiagnostics.cpp - Protected scope jump analysis ------*- C++ -*-=//
11 // jumps that enter a protected scope in an invalid way.
36 /// are taken to handle incomplete scope information.
40 /// scopes that are introduced by VLAs and other things that scope jumps like
41 /// gotos. This scope tree has nothing to do with the source scope tree,
45 /// ParentScope - The index in ScopeMap of the parent scope. This is 0 for
46 /// the parent scope is the function body.
49 /// InDiag - The note to emit if there is a jump into this scope.
53 /// of this scope. Direct jumps always clean up their current scop
    [all...]

Completed in 881 milliseconds

1 2 34 5 6 7 8 91011>>