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

<<11121314151617181920>>

  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
DrawableUtils.java 37 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
ViewStubCompat.java 32 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProvider.java 29 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
49 * A media route provider may be used privately within the scope of a single
  /frameworks/support/v7/preference/src/android/support/v7/preference/
SwitchPreferenceCompat.java 30 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
TwoStatePreference.java 29 import static android.support.annotation.RestrictTo.Scope.GROUP_ID;
  /external/v8/src/parsing/
parser.cc 182 bool call_super, Scope* scope,
192 Scope* function_scope = NewScope(scope, FUNCTION_SCOPE, kind);
630 Expression* ParserTraits::ThisExpression(Scope* scope, AstNodeFactory* factory,
632 return scope->NewUnresolved(factory,
638 Expression* ParserTraits::SuperPropertyReference(Scope* scope,
642 VariableProxy* this_function_proxy = scope->NewUnresolved
915 Scope* scope = NewScope(scope_, SCRIPT_SCOPE); local
1076 Scope* scope = NewScope(scope_, SCRIPT_SCOPE); local
1105 Scope* scope = local
1936 Scope* scope = local
4183 Scope* scope = NewScope(scope_, FUNCTION_SCOPE, kind); local
6045 auto scope = parser_->scope_; local
6609 auto scope = parser_->scope_; local
6728 auto scope = parser_->scope_; local
6905 auto scope = parser_->scope_; local
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 179 // break/continue statement that would resume outside the current scope.
180 // We do not handle the case for goto statements that leave a local scope.
189 // corresponding loop scope.
    [all...]
  /external/clang/lib/Frontend/
ChainedIncludesSource.cpp 72 bool LookupUnqualified(LookupResult &R, Scope *S) override;
295 bool ChainedIncludesSource::LookupUnqualified(LookupResult &R, Scope *S) {
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 301 unsigned Scope = Attrs & LTO_SYMBOL_SCOPE_MASK;
302 if (Scope != LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN)
  /external/pdfium/fpdfsdk/src/javascript/
JS_Context.cpp 35 v8::Isolate::Scope isolate_scope(m_pRuntime->GetIsolate());
41 v8::Context::Scope context_scope(context);
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.cc 31 int num_variables = 1 + info()->scope()->num_parameters() +
32 info()->scope()->num_stack_slots();
298 loop_stack_.back()->Add(GetVariableIndex(info()->scope(), var));
303 int ALAA::GetVariableIndex(Scope* scope, Variable* var) {
307 return 1 + scope->num_parameters() + var->index();
311 int LoopAssignmentAnalysis::GetAssignmentCountForTesting(Scope* scope,
314 int var_index = AstLoopAssignmentAnalyzer::GetVariableIndex(scope, var);
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/1.5.0/
transform-api-1.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/2.0.0-alpha1/
transform-api-2.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/2.0.0-alpha3/
transform-api-2.0.0-alpha3.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/build/transform-api/1.5.0/
transform-api-1.5.0.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/build/transform-api/1.5.0/
transform-api-1.5.0.jar 
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 200 v8::HandleScope scope(isolate);
368 v8::Isolate::Scope isolate_scope(isolate_);
377 v8::Isolate::Scope isolate_scope(isolate_);
378 v8::HandleScope scope(isolate_);
382 v8::Context::Scope function_scope(context);
428 v8::Isolate::Scope isolate_scope(isolate_);
429 v8::HandleScope scope(isolate_);
478 v8::Context::Scope ctx(context);
509 v8::Isolate::Scope isolate_scope(isolate_);
  /external/clang/lib/Parse/
ParseTemplate.cpp 22 #include "clang/Sema/Scope.h"
68 // Enter template-parameter scope.
69 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
77 // parameter scope, e.g.,
167 /// declaration. Will be AS_none for namespace-scope declarations.
247 // Function definitions are only allowed at file scope and in C++ classes.
249 // need to handle the file scope definition case.
535 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
536 // we introduce the type parameter into the local scope.
568 ParseScope TemplateParmScope(this, Scope::TemplateParamScope)
    [all...]
ParseObjc.cpp 21 #include "clang/Sema/Scope.h"
97 /// Class to handle popping type parameters when leaving the scope.
100 Scope *S;
103 ObjCTypeParamListScope(Sema &Actions, Scope *S)
447 ObjCTypeParamListScope &Scope, SourceLocation &lAngleLoc,
594 // Form the type parameter list and enter its scope.
600 Scope.enter(list);
615 ObjCTypeParamListScope Scope(Actions, getCurScope());
616 return parseObjCTypeParamListOrProtocolRefs(Scope, lAngleLoc, protocolIdents,
    [all...]
  /external/guice/core/test/com/google/inject/util/
OverrideModuleTest.java 41 import com.google.inject.Scope;
247 final SingleUseScope scope = new SingleUseScope(); local
251 bindScope(TestScopeAnnotation.class, scope);
255 assertFalse(scope.used);
258 assertTrue(scope.used);
279 final Scope scope = new Scope() { local
280 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) {
289 bindScope(TestScopeAnnotation.class, scope);
306 final Scope scope = new Scope() { local
505 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { method in class:OverrideModuleTest.SingleUseScope
    [all...]
  /external/llvm/include/llvm/IR/
Metadata.h 551 : TBAA(T), Scope(S), NoAlias(N) {}
554 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
559 explicit operator bool() const { return TBAA || Scope || NoAlias; }
564 /// \brief The tag for alias scope specification (used with noalias).
565 MDNode *Scope;
567 /// \brief The tag specifying the noalias scope.
584 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
    [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 290 CodeGenFunction::RunCleanupsScope Scope(CGF);
    [all...]
  /external/v8/test/cctest/
test-cpu-profiler.cc 146 i::HandleScope scope(isolate);
218 i::HandleScope scope(isolate);
292 i::HandleScope scope(isolate);
380 v8::HandleScope scope(env->GetIsolate());
419 v8::HandleScope scope(env->GetIsolate());
564 v8::HandleScope scope(env->GetIsolate());
621 v8::HandleScope scope(env->GetIsolate());
644 v8::HandleScope scope(env->GetIsolate());
697 v8::HandleScope scope(env->GetIsolate());
779 v8::HandleScope scope(isolate)
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp 42 #include "clang/Sema/Scope.h"
233 /// \brief If the identifier refers to a type name within this scope,
237 /// within the given scope, with optional C++ scope specifier SS, to
242 Scope *S, CXXScopeSpec *SS,
307 // looked up in the scope of class C. At least one of the lookups shall
426 // constructor or destructor name (in such a case, the scope specifier
471 llvm_unreachable("something isn't in TU scope?");
506 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
507 // Do a tag name lookup in this scope
    [all...]
SemaExprMember.cpp 22 #include "clang/Sema/Scope.h"
238 const Scope *S) {
709 const Scope *S,
    [all...]

Completed in 2063 milliseconds

<<11121314151617181920>>