HomeSort by relevance Sort by last modified time
    Searched refs:Scope (Results 451 - 475 of 867) sorted by null

<<11121314151617181920>>

  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceDialogFragmentCompat.java 40 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
PreferenceGroup.java 33 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
PreferenceManager.java 26 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
  /system/connectivity/shill/
scope_logger_unittest.cc 44 for (int scope = 0; scope < ScopeLogger::kNumScopes; ++scope) {
47 static_cast<ScopeLogger::Scope>(scope), verbose_level));
203 // Call for a scope other than registered-for.
  /external/v8/src/compiler/
pipeline.cc 96 PhaseScope scope(pipeline_statistics, "init pipeline data");
316 ZonePool::Scope graph_zone_scope_;
333 ZonePool::Scope instruction_zone_scope_;
341 ZonePool::Scope register_allocation_zone_scope_;
445 SourcePositionTable::Scope pos_scope(source_positions_, start_position_);
451 SourcePositionTable::Scope pos(source_positions_, \
472 SourcePositionTable::Scope position(table_, pos);
519 ZonePool::Scope zone_scope_;
692 PipelineRunScope scope(this->data_, Phase::phase_name());
694 phase.Run(this->data_, scope.zone())
    [all...]
  /external/v8/test/cctest/
test-assembler-ppc.cc 52 HandleScope scope(isolate);
80 HandleScope scope(isolate);
118 HandleScope scope(isolate);
169 HandleScope scope(isolate);
249 HandleScope scope(isolate);
274 CpuFeatures::Scope scope(VFP3);
384 HandleScope scope(isolate);
389 CpuFeatures::Scope scope(ARMv7)
    [all...]
test-log.cc 107 v8::Isolate::Scope isolate_scope_;
183 v8::HandleScope scope;
187 v8::Context::Scope context_scope(context);
309 v8::HandleScope scope(CcTest::isolate());
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 37 #include "clang/Sema/Scope.h"
93 // argument expression are in scope and can hide namespace and
436 Scope *S) {
439 // The declaration context corresponding to the scope is the semantic
461 // the same scope and this is not an out-of-line definition of
469 // they're in the same scope. (If both are local, the scope check is
470 // sufficent, and if neither is local, then they are in the same scope.)
481 // scope. Declarations in different scopes have completely
    [all...]
SemaObjCProperty.cpp 178 Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
410 Sema::HandlePropertyInClassExtension(Scope *S,
555 ObjCPropertyDecl *Sema::CreatePropertyDecl(Scope *S,
    [all...]
SemaDeclObjC.cpp 26 #include "clang/Sema/Scope.h"
301 void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) {
313 // Create Decl objects for each parameter, entrring them in the scope for
326 // Introduce all of the other parameters into this scope.
466 ActOnSuperClassOfClassInterface(Scope *S,
475 // Check if a different kind of symbol declared in this scope.
591 DeclResult Sema::actOnObjCTypeParam(Scope *S,
694 ObjCTypeParamList *Sema::actOnObjCTypeParamList(Scope *S,
706 // scope until later (after the instance variable block), but we want the
720 // Push the type parameter into scope
    [all...]
SemaCUDA.cpp 23 ExprResult Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc,
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 92 // Construct a location that has a valid scope, but no line info.
128 // If we've changed files in the middle of a lexical scope go ahead
129 // and create a new lexical scope with file node if it's different
130 // from the one in the scope.
135 auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back());
138 if (PCLoc.isInvalid() || Scope->getFilename() == PCLoc.getFilename())
141 if (auto *LBF = dyn_cast<llvm::DILexicalBlockFile>(Scope)) {
145 } else if (isa<llvm::DILexicalBlock>(Scope) ||
146 isa<llvm::DISubprogram>(Scope)) {
149 DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc)))
3274 auto *scope = cast<llvm::DILocalScope>(LexicalBlockStack.back()); local
    [all...]
CGDeclCXX.cpp 531 RunCleanupsScope Scope(*this);
544 Scope.ForceCleanup();
  /external/guice/core/src/com/google/inject/spi/
Elements.java 35 import com.google.inject.Scope;
234 public void bindScope(Class<? extends Annotation> annotationType, Scope scope) {
235 elements.add(new ScopeBinding(getElementSource(), annotationType, scope));
  /external/guice/core/test/com/google/inject/
BinderTest.java 495 bind(Scope.class).annotatedWith(red).toProvider(Providers.<Scope>of(null));
535 "Binding to core guice framework type is not allowed: Scope.",
DuplicateBindingsTest.java 443 private final Scope scope; field in class:DuplicateBindingsTest.ScopedModule
445 ScopedModule(Scope scope, FooImpl foo, Provider<Foo> pFoo,
449 this.scope = scope;
454 bind(Foo.class).annotatedWith(named("pInstance")).toProvider(pFoo).in(scope);
457 bind(Foo.class).annotatedWith(named("pKey")).toProvider(pclFoo).in(scope);
460 bind(Foo.class).annotatedWith(named("linkedKey")).to(clFoo).in(scope);
463 bind(FooImpl.class).in(scope);
471 private final Class<? extends Annotation> scope; field in class:DuplicateBindingsTest.AnnotatedScopeModule
    [all...]
ScopesTest.java 160 "but scope annotations are not supported for abstract types.",
192 "but scope annotations are not supported for abstract types.",
208 "but scope annotations are not supported for abstract types.",
232 "1) No scope is bound to " + CustomScoped.class.getName(),
234 "2) No scope is bound to " + CustomScoped.class.getName(),
275 final RememberProviderScope scope = new RememberProviderScope(); local
279 bindScope(CustomScoped.class, scope);
285 Provider<?> listProvider = scope.providers.get(Key.get(List.class));
288 // passed to Scope.scope() don't work outside of the scope() method
418 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { method in class:ScopesTest.RememberProviderScope
534 public <T> Provider<T> scope(Key<T> key, final Provider<T> unscoped) { method in class:ScopesTest.ProviderGetScope
    [all...]
  /external/guice/core/test/com/google/inject/internal/
WeakKeySetTest.java 35 import com.google.inject.Scope;
454 public void putScopeBinding(Class<? extends Annotation> annotationType, ScopeBinding scope) {
524 public Map<Class<? extends Annotation>, Scope> getScopes() {
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 438 ScopeType *Scope = new ScopeType(VNT);
439 ScopeMap[MBB] = Scope;
653 /// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
662 // Pop scope.
  /external/opencv3/3rdparty/jinja2/
ext.py 418 node = nodes.Scope(lineno=next(parser.stream).lineno)
435 """Changes auto escape rules for a scope."""
445 return nodes.Scope([node])
  /external/v8/test/cctest/interpreter/
generate-bytecode-expectations.cc 441 v8::Isolate::Scope isolate_scope(platform.isolate());
444 v8::Context::Scope context_scope(context);
  /prebuilts/misc/common/json/
json-prebuilt.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAnnotation.java 35 import com.android.tools.lint.detector.api.Scope;
349 Scope.CLASS_FILE);
  /external/guice/core/src/com/google/inject/internal/
Annotations.java 180 /** Returns the scope annotation on {@code type}, or null if none is specified. */
206 // TODO(user): Should we scope this down to dagger.Component?
253 Arrays.asList(ScopeAnnotation.class, javax.inject.Scope.class));
  /external/libchrome/base/memory/
scoped_vector_unittest.cc 210 TEST(ScopedVectorTest, Scope) {
308 // Start scope for ScopedVector.

Completed in 1071 milliseconds

<<11121314151617181920>>