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

1 2 3 4 5 67 8 91011>>

  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 36 import org.openjdk.jmh.annotations.Scope;
54 @State(Scope.Benchmark)
213 @State(Scope.Thread)
228 @State(Scope.Thread)
238 @State(Scope.Thread)
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
Binding.java 21 import android.databinding.tool.processing.Scope;
76 Scope.enter(getTarget());
77 Scope.enter(this);
83 Scope.exit();
84 Scope.exit();
BindingTarget.java 22 import android.databinding.tool.processing.Scope;
63 Scope.enter(expr);
71 Scope.exit();
179 Scope.enter(binding);
183 Scope.exit();
InverseBinding.java 23 import android.databinding.tool.processing.Scope;
83 Scope.enter(mTarget);
84 Scope.enter(this);
92 Scope.exit();
93 Scope.exit();
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 334 /// Check whether we should create a DIE for the given Scope, return true
336 bool DwarfDebug::isLexicalScopeDIENull(LexicalScope *Scope) {
337 if (Scope->isAbstractScope())
341 const SmallVectorImpl<InsnRange> &Ranges = Scope->getRanges();
359 void DwarfDebug::constructAbstractSubprogramScopeDIE(LexicalScope *Scope) {
360 assert(Scope && Scope->getScopeNode());
361 assert(Scope->isAbstractScope());
362 assert(!Scope->getInlinedAt());
364 const MDNode *SP = Scope->getScopeNode()
    [all...]
  /external/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 29 class Scope;
225 /// \param S the Scope of the identifier occurrence.
228 bool LookupUnqualified(LookupResult &R, Scope *S) override;
239 /// \brief Read the set of unused file-scope declarations known to the
242 /// The external source should append its own unused, filed-scope to the
327 int LookupKind, Scope *S, CXXScopeSpec *SS,
Template.h 173 /// variable declaration instantiations are present in this scope.
207 /// For a parameter pack, the local instantiation scope may contain a
215 /// \brief The outer scope, which contains local variable
217 /// relevant to this particular scope).
220 /// \brief Whether we have already exited this scope.
223 /// \brief Whether to combine this scope with the outer scope, such that
224 /// lookup will search our outer scope.
260 /// \brief Exit this local instantiation scope early.
272 /// \brief Clone this scope, and all outer scopes, down to the give
    [all...]
IdentifierResolver.h 1 //===- IdentifierResolver.h - Lexical Scope Name lookup ---------*- C++ -*-===//
30 class Scope;
40 /// decl with that declaration name is shadowed in some scope.
50 /// RemoveDecl - Remove the decl from the scope chain.
150 /// if 'D' is in Scope 'S', otherwise 'S' is ignored and isDeclInScope returns
154 /// declaration is in scope in a declaration that requires a prior
157 /// declaration is in scope if it's in the inline namespace set of the
159 bool isDeclInScope(Decl *D, DeclContext *Ctx, Scope *S = nullptr,
173 /// \brief Try to add the given declaration to the top level scope, if it
  /external/guice/core/src/com/google/inject/internal/
State.java 24 import com.google.inject.Scope;
67 public void putScopeBinding(Class<? extends Annotation> annotationType, ScopeBinding scope) {
137 public Map<Class<? extends Annotation>, Scope> getScopes() {
154 void putScopeBinding(Class<? extends Annotation> annotationType, ScopeBinding scope);
206 * Returns all the scope bindings at this level and parent levels.
208 Map<Class<? extends Annotation>, Scope> getScopes();
AbstractBindingBuilder.java 23 import com.google.inject.Scope;
39 = "Setting the scope is not permitted when binding to a single instance.";
40 public static final String SCOPE_ALREADY_SET = "Scope is set more than once.";
94 public void in(final Scope scope) {
95 checkNotNull(scope, "scope");
97 setBinding(getBinding().withScoping(Scoping.forInstance(scope)));
  /external/llvm/bindings/go/llvm/
IRBindings.cpp 95 unsigned Col, LLVMMetadataRef Scope,
98 DebugLoc::get(Line, Col, Scope ? unwrap<MDNode>(Scope) : nullptr,
IRBindings.h 55 unsigned Col, LLVMMetadataRef Scope,
  /external/llvm/lib/Analysis/
ScopedNoAliasAA.cpp 19 // !scope1 = metadata !{ metadata !scope1, metadata !dom0, metadata !"scope 1" }
20 // !scope2 = metadata !{ metadata !scope2, metadata !dom0, metadata !"scope 2" }
22 // Loads and stores can be tagged with an alias-analysis scope, and also, with
23 // a noalias tag for a specific scope:
25 // ... = load %ptr1, !alias.scope !{ !scope1 }
26 // ... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
82 const MDNode *AScopes = LocA.AATags.Scope, *BScopes = LocB.AATags.Scope;
101 if (!mayAliasInScopes(Loc.AATags.Scope, CS.getInstruction()->getMetadata(
145 // Collect the set of scope domains relevant to the noalias scopes
    [all...]
  /external/v8/src/debug/
debug-scopes.h 15 // The iteration proceeds from the innermost visible nested scope outwards.
16 // All scopes are backed by an actual context except the local scope,
57 // Move to the next scope.
60 // Return the type of the current scope.
63 // Return the JavaScript object with the content of the current scope.
73 // Return the context for this scope. For the local context there might not
81 // Debug print of the content of the current scope.
113 void RetrieveScopeChain(Scope* scope);
115 void CollectNonLocals(Scope* scope)
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
MethodCallExpr.java 22 import android.databinding.tool.processing.Scope;
55 Scope.enter(this);
59 Scope.exit();
  /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...]
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
SessionAuthentication.java 36 import org.eclipse.jetty.server.UserIdentity.Scope;
76 public boolean isUserInRole(Scope scope, String role)
78 return _userIdentity.isUserInRole(role, scope);
  /external/v8/src/ast/
prettyprinter.h 92 void PrintParameters(Scope* scope);
125 void PrintParameters(Scope* scope);
  /external/v8/test/fuzzer/
regexp.cc 28 v8::Isolate::Scope isolate_scope(isolate);
30 v8::Context::Scope context_scope(support->GetContext());
  /frameworks/data-binding/gradlePlugin/src/main/java/android/databinding/tool/
DataBindingExcludeGeneratedTask.java 28 import android.databinding.tool.processing.Scope;
97 Scope.assertNoError();
  /external/google-breakpad/src/processor/
cfi_frame_info_unittest.cc 163 class Scope: public CFIFixture, public Test { };
165 // There should be no value for .cfa in scope when evaluating the CFA rule.
166 TEST_F(Scope, CFALacksCFA) {
175 // There should be no value for .ra in scope when evaluating the CFA rule.
176 TEST_F(Scope, CFALacksRA) {
185 // The current frame's registers should be in scope when evaluating
187 TEST_F(Scope, CFASeesCurrentRegs) {
201 // .cfa should be in scope in the return address expression.
202 TEST_F(Scope, RASeesCFA) {
213 // There should be no value for .ra in scope when evaluating the CFA rule
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 19 #include "clang/Sema/Scope.h"
269 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope,
277 // The current scope is still active if we're the top-level class.
278 // Otherwise we'll need to push and enter a new scope.
280 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope,
296 // If this is a member template, introduce the template parameter scope.
297 ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);
306 // Introduce the parameters into scope and parse their default
308 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope
    [all...]
  /external/guice/core/src/com/google/inject/
Injector.java 247 * like {@code Singleton.class}, and the values are scope instances, such as {@code
254 Map<Class<? extends Annotation>, Scope> getScopeBindings();
  /external/jetty/src/java/org/eclipse/jetty/server/
Authentication.java 45 boolean isUserInRole(UserIdentity.Scope scope,String role);
  /external/llvm/include/llvm/IR/
DebugLoc.h 84 /// Create a new DebugLoc at the specified line/col and scope/inline. This
87 /// If \c !Scope, returns a default-constructed \a DebugLoc.
90 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
98 /// \brief Get the fully inlined-at scope for a DebugLoc.
100 /// Gets the inlined-at scope for a DebugLoc.
105 /// Walk up the scope chain of given debug loc and find line number info

Completed in 359 milliseconds

1 2 3 4 5 67 8 91011>>