Searched defs:Scope (Results 1 - 25 of 105) sorted by relevance

12345

/external/jsr330/src/javax/inject/
H A DScope.java50 * <li>is annotated with {@code @Scope}, {@code @Retention(RUNTIME)},
66 * &#064;javax.inject.Scope
69 * <p>Annotating scope annotations with {@code @Scope} helps the injector
79 public @interface Scope {} interface
/external/clang/lib/Basic/
H A DAttributes.cpp6 int clang::hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope, argument
/external/testng/src/test/java/test/sample/
H A DScope.java10 public class Scope { class
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRHashMap.h42 NSInteger Scope; variable
51 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRHashMap.h42 NSInteger Scope; variable
51 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRHashMap.h42 NSInteger Scope; variable
51 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
/external/guice/core/src/com/google/inject/
H A DScope.java32 public interface Scope { interface
39 * <p>Scope implementations are strongly encouraged to override
/external/v8/src/compiler/
H A Dcompiler-source-position-table.h20 class Scope final {
22 Scope(SourcePositionTable* source_positions, SourcePosition position) function in class:v8::internal::compiler::final::final
27 Scope(SourcePositionTable* source_positions, Node* node) function in class:v8::internal::compiler::final::final
32 ~Scope() { source_positions_->current_position_ = prev_position_; }
41 DISALLOW_COPY_AND_ASSIGN(Scope);
H A Dzone-stats.h21 class Scope final {
23 explicit Scope(ZoneStats* zone_stats, const char* zone_name) function in class:v8::internal::compiler::final::final
25 ~Scope() { Destroy(); }
40 DISALLOW_COPY_AND_ASSIGN(Scope);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRHashMap.h41 NSInteger Scope; variable
69 - (id)lookup:(NSString *)s Scope:(int)scope;
71 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
101 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
/external/llvm/lib/IR/
H A DDebugLoc.cpp51 const MDNode *Scope = getInlinedAtScope(); local
52 if (auto *SP = getDISubprogram(Scope))
58 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, argument
61 if (!Scope)
64 return DILocation::get(Scope->getContext(), Line, Col,
65 const_cast<MDNode *>(Scope),
90 auto *Scope = cast<DIScope>(getScope());
91 OS << Scope->getFilename();
H A DDebugInfo.cpp34 DISubprogram *llvm::getDISubprogram(const MDNode *Scope) { argument
35 if (auto *LocalScope = dyn_cast_or_null<DILocalScope>(Scope))
117 void DebugInfoFinder::processScope(DIScope *Scope) { argument
118 if (!Scope)
120 if (auto *Ty = dyn_cast<DIType>(Scope)) {
124 if (auto *CU = dyn_cast<DICompileUnit>(Scope)) {
128 if (auto *SP = dyn_cast<DISubprogram>(Scope)) {
132 if (!addScope(Scope))
134 if (auto *LB = dyn_cast<DILexicalBlockBase>(Scope)) {
136 } else if (auto *NS = dyn_cast<DINamespace>(Scope)) {
231 addScope(DIScope *Scope) argument
[all...]
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVBasicBlock.cpp82 SPIRVBasicBlock::setScope(SPIRVEntry *Scope) { argument
83 assert(Scope && Scope->getOpCode() == OpFunction && "Invalid scope");
84 setParent(static_cast<SPIRVFunction*>(Scope));
H A DSPIRVInstruction.cpp91 SPIRVInstruction::setScope(SPIRVEntry *Scope) { argument
92 assert(Scope && Scope->getOpCode() == OpLabel && "Invalid scope");
93 setParent(static_cast<SPIRVBasicBlock*>(Scope));
H A DSPIRVStream.h71 Scope(NULL){}
84 SPIRVEntry *Scope; // A function or basic block member in class:SPIRV::SPIRVDecoder
/external/v8/src/compiler-dispatcher/
H A Dcompiler-dispatcher-tracer.cc24 CompilerDispatcherTracer::Scope::Scope(CompilerDispatcherTracer* tracer, function in class:v8::internal::CompilerDispatcherTracer::Scope
30 CompilerDispatcherTracer::Scope::~Scope() {
58 const char* CompilerDispatcherTracer::Scope::Name(ScopeID scope_id) {
H A Dcompiler-dispatcher-tracer.h25 CompilerDispatcherTracer::Scope trace_scope(tracer, tracer_scope_id, num); \
27 CompilerDispatcherTracer::Scope::Name(tracer_scope_id))
44 class Scope { class in class:v8::internal::CompilerDispatcherTracer
46 Scope(CompilerDispatcherTracer* tracer, ScopeID scope_id, size_t num = 0);
47 ~Scope();
57 DISALLOW_COPY_AND_ASSIGN(Scope);
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DScope.java36 final class Scope { class
41 private static final Scope UNSCOPED = new Scope();
49 private Scope(@Nullable AnnotationMirror annotationMirror) { method in class:Scope
53 private Scope() { method in class:Scope
60 static Scope unscoped() {
68 static Scope scopeOf(Element element) {
70 return scopeAnnotation.isPresent() ? new Scope(scopeAnnotation.get()) : UNSCOPED;
96 * as according to {@link javax.inject.Scope} scope annotations are not supposed to use them.
107 * as according to {@link javax.inject.Scope} scop
[all...]
/external/dagger2/lib/
H A Djavax-inject.jarjavax/ javax/inject/ javax/inject/Qualifier.class Qualifier.java package javax.inject public abstract annotation javax ...
/external/guice/lib/
H A Djavax.inject.jarjavax/ javax/inject/ javax/inject/Inject.class Inject.java package javax.inject public abstract annotation javax ...
/external/llvm/bindings/go/llvm/
H A DIRBindings.cpp95 unsigned Col, LLVMMetadataRef Scope,
98 DebugLoc::get(Line, Col, Scope ? unwrap<MDNode>(Scope) : nullptr,
94 LLVMSetCurrentDebugLocation2(LLVMBuilderRef Bref, unsigned Line, unsigned Col, LLVMMetadataRef Scope, LLVMMetadataRef InlinedAt) argument
/external/llvm/lib/Transforms/Utils/
H A DAddDiscriminators.cpp202 auto *Scope = DIL->getScope(); local
204 Builder.createFile(DIL->getFilename(), Scope->getDirectory());
205 NewScope = Builder.createLexicalBlockFile(Scope, File, ++LDM[L]);
234 auto *Scope = CurrentDIL->getScope(); local
236 Scope->getDirectory());
237 auto *NewScope = Builder.createLexicalBlockFile(Scope, File, ++LDM[L]);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DOProfileJITEventListener.cpp75 // Holds the filename of each Scope, so that we can pass a null-terminated
81 const char *getFilename(MDNode *Scope) { argument
82 std::string &Filename = Filenames[Scope];
84 Filename = DIScope(Scope).getFilename();
/external/v8/src/inspector/
H A Dinjected-script.h102 class Scope { class in class:v8_inspector::final
113 Scope(V8InspectorImpl*, int contextGroupId);
114 virtual ~Scope();
135 class ContextScope : public Scope {
147 class ObjectScope : public Scope {
164 class CallFrameScope : public Scope {
/external/v8/src/heap/
H A Dgc-tracer.cc25 GCTracer::Scope::Scope(GCTracer* tracer, ScopeId scope) function in class:v8::internal::GCTracer::Scope
39 GCTracer::Scope::~Scope() {
49 const char* GCTracer::Scope::Name(ScopeId id) {
51 case Scope::scope: \
55 case Scope::NUMBER_OF_SCOPES:
80 for (int i = 0; i < Scope::NUMBER_OF_SCOPES; i++) {
189 for (int i = 0; i < Scope::NUMBER_OF_SCOPES; i++) {
216 for (int i = 0; i < Scope
[all...]

Completed in 916 milliseconds

12345