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

<<11121314151617181920>>

  /developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
FitDistanceWatchFaceConfigActivity.java 9 import com.google.android.gms.common.api.Scope;
82 .addScope(new Scope(Scopes.FITNESS_LOCATION_READ_WRITE))
  /development/samples/browseable/WatchFace/Application/src/com.example.android.wearable.watchface/
FitDistanceWatchFaceConfigActivity.java 9 import com.google.android.gms.common.api.Scope;
82 .addScope(new Scope(Scopes.FITNESS_LOCATION_READ_WRITE))
  /external/clang/lib/Sema/
Android.mk 34 Scope.cpp \
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...]
SemaPseudoObject.cpp 213 ExprResult buildAssignmentOperation(Scope *Sc,
217 ExprResult buildIncDecOperation(Scope *Sc, SourceLocation opLoc,
283 ExprResult buildAssignmentOperation(Scope *Sc,
287 ExprResult buildIncDecOperation(Scope *Sc, SourceLocation opLoc,
323 ExprResult buildAssignmentOperation(Scope *Sc,
422 PseudoOpBuilder::buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc,
486 PseudoOpBuilder::buildIncDecOperation(Scope *Sc, SourceLocation opcLoc,
    [all...]
SemaLookup.cpp 34 #include "clang/Sema/Scope.h"
105 void visitScopeChain(Scope *S, Scope *InnermostFileScope) {
115 // A using-directive shall not appear in class scope, but may
116 // appear in namespace scope or in block scope.
176 // The using-directive is transitive: if a scope contains a
344 /// will have the same context if they were found within the same scope.
443 // C++ [basic.scope.declarative]p4:
449 // C++ [basic.scope.hiding]p2
    [all...]
SemaTemplateInstantiateDecl.cpp 446 // Create a local instantiation scope for this type alias template, which
448 LocalInstantiationScope Scope(SemaRef);
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Binding.java 229 * The scope of this binding.
231 Scope scope() { method in class:Binding
232 return Scope.unscoped();
BindingGraphValidator.java 568 Scope scope = descriptor.scope(); local
570 if (scope.isPresent()) {
571 // Dagger 1.x scope compatibility requires this be suppress-able.
573 && scope.isSingleton()) {
587 StringBuilder message = new StringBuilder(scope.getReadableSource())
597 // Dagger 1.x scope compatibility requires this be suppress-able.
601 new ArrayDeque<Scope>(),
674 Deque<Scope> scopeStack
676 Scope scope = Scope.scopeOf(componentType); local
    [all...]
  /external/guice/core/src/com/google/inject/internal/
InternalInjectorCreator.java 27 import com.google.inject.Scope;
276 public Map<Class<? extends Annotation>, Scope> getScopeBindings() {
SingletonScope.java 13 import com.google.inject.Scope;
35 * Anyway, why is it so complex? Singleton scope does not seem to be that unique.
39 * scope is The exception.
42 * it is expected to be done by Guice. Singleton scope needs to be
44 * therefore Singleton scope needs to be able to create these proxies.
47 * And Scope does not have access to this information by design,
48 * the only real action that Scope can do is to call or not to call a creator.
67 * @see #scope(Key, Provider)
72 public class SingletonScope implements Scope {
91 * Provides singleton scope with the following properties
102 public <T> Provider<T> scope(final Key<T> key, final Provider<T> creator) { method in class:SingletonScope
    [all...]
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Indexer.java 22 import com.google.inject.Scope;
61 final Object scope; field in class:Indexer.IndexedBinding
65 IndexedBinding(Binding<?> binding, BindingType type, Object scope, Object extraEquality) {
66 this.scope = scope;
81 && Objects.equal(scope, o.scope)
89 return Objects.hashCode(type, scope, typeLiteral, annotationType, annotationName,
104 private Object scope(Binding<?> binding) { method in class:Indexer
109 return new Indexer.IndexedBinding(binding, BindingType.CONSTRUCTOR, scope(binding)
    [all...]
  /external/skia/experimental/SkV8Example/
Global.cpp 135 // Create a handle scope to keep the temporary object references.
142 v8::Context::Scope contextScope(context);
194 // Create a stack-allocated handle scope.
212 // Create a stack-allocated handle scope.
218 // Enter the scope so all operations take place in the scope.
219 v8::Context::Scope contextScope(context);
  /external/v8/src/debug/
liveedit.h 20 // in order to analyze, whether the function changed its outer scope
37 // The primary interest of the Tracker is to record function scope structures
56 void FunctionDone(Handle<SharedFunctionInfo> shared, Scope* scope);
57 Handle<Object> SerializeFunctionScope(Scope* scope);
  /external/v8/test/cctest/
test-date.cc 123 v8::HandleScope scope(isolate);
180 v8::HandleScope scope(CcTest::isolate());
200 v8::Isolate::Scope isolate_scope(isolate);
201 v8::HandleScope scope(isolate);
203 v8::Context::Scope context_scope(context);
test-parsing.cc 209 v8::Context::Scope context_scope(context);
268 v8::Context::Scope context_scope(context);
391 v8::Context::Scope context_scope(context);
678 v8::Context::Scope context_scope(context);
838 i::HandleScope scope(CcTest::i_isolate());
1083 i::Scope* scope = script_scope->inner_scopes()->at(0); local
1395 i::Scope* scope = info.literal()->scope(); local
3535 i::Scope* scope = info.literal()->scope(); local
    [all...]
  /external/v8/tools/
parser-shell.cc 176 v8::Isolate::Scope isolate_scope(isolate);
182 v8::Context::Scope scope(context);
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
ScopedException.java 34 * An exception that contains scope information.
49 mScopedErrorReport = Scope.createReport();
50 mScopeLog = L.isDebugEnabled() ? Scope.produceScopeLog() : null;
  /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();
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 467 N.Scope = MDNode::getMostGenericAliasScope(
468 N.Scope, getMetadata(LLVMContext::MD_alias_scope));
470 N.Scope = getMetadata(LLVMContext::MD_alias_scope);
  /libcore/json/src/main/java/org/json/
JSONObject.java 765 stringer.open(JSONStringer.Scope.NULL, "");
767 stringer.close(JSONStringer.Scope.NULL, JSONStringer.Scope.NULL, "");
  /external/v8/src/parsing/
parser-base.h 113 explicit FormalParametersBase(Scope* scope) : scope(scope) {}
114 Scope* scope; member in struct:v8::internal::ParseFunctionFlags::MethodKind::FormalParametersBase
144 // typedef Scope;
250 // FunctionState and BlockState together implement the parser's scope stack.
251 // The parser's current scope is in scope_. BlockState and FunctionState
252 // constructors push on the scope stack and the destructors pop. They are als
273 Scope* scope; member in struct:v8::internal::ParseFunctionFlags::MethodKind::ParserBase::DestructuringAssignment
439 V8_INLINE Scope* scope() { return *scope_stack_; } function in class:v8::internal::ParseFunctionFlags::MethodKind::ParserBase::BASE_EMBEDDED
2280 Scope* scope = this->NewScope(scope_, FUNCTION_SCOPE, local
3039 Scope* scope = scope_->ReceiverScope(); local
    [all...]
  /external/gemmlowp/meta/generators/
cc_emitter.py 153 def Scope(self, scope, value):
154 return '%s::%s' % (scope, value)
  /external/guice/core/src/com/google/inject/
AbstractModule.java 83 * @see Binder#bindScope(Class, Scope)
86 Scope scope) {
87 binder().bindScope(scopeAnnotation, scope);
PrivateModule.java 73 * <p>The scope of a binding is constrained to its environment. A singleton bound in a private
146 * @see Binder#bindScope(Class, Scope)
148 protected final void bindScope(Class<? extends Annotation> scopeAnnotation, Scope scope) {
149 binder().bindScope(scopeAnnotation, scope);

Completed in 668 milliseconds

<<11121314151617181920>>