Searched defs:Scope (Results 1 - 25 of 122) 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/tensorflow/tensorflow/cc/framework/
H A Dscope.h39 /// A `Scope` object represents a set of related TensorFlow ops that have the
42 /// A Scope object is a container for TensorFlow Op properties. Op constructors
43 /// get a Scope object as a mandatory first argument and the constructed op
49 /// Scope root = Scope::NewRootScope();
56 /// Scope hierarchy:
58 /// The Scope class provides various With<> functions that create a new scope.
67 /// Scope root = Scope::NewRootScope();
68 /// Scope linea
95 class Scope { class in namespace:tensorflow
[all...]
H A Dscope.cc27 Scope::Scope(Impl* impl) : impl_(impl) {} function in class:tensorflow::Scope
29 Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {} function in class:tensorflow::Scope
31 Scope::~Scope() {}
33 Scope& Scope::operator=(const Scope
[all...]
/external/turbine/java/com/google/turbine/binder/lookup/
H A DScope.java22 public interface Scope { interface
/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));
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
H A DScope.java24 * <p>A {@code Scope} is a container for common properties applied to TensorFlow Ops. Normal user
25 * code initializes a {@code Scope} and provides it to Operation building classes. For example:
28 * Scope scope = new Scope(graph);
32 * <p>An Operation building class acquires a Scope, and uses it to set properties on the underlying
38 * public static Constant create(Scope scope, ...) {
48 * <p><b>Scope hierarchy:</b>
50 * <p>A {@code Scope} provides various {@code with()} methods that create a new scope. The new scope
56 * Scope root = new Scope(grap
76 public final class Scope { class
83 public Scope(Graph graph) { method in class:Scope
158 private Scope(Graph graph, NameScope nameScope) { method in class:Scope
[all...]
/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/tensorflow/tensorflow/contrib/py2tf/pyct/static_analysis/
H A Dtype_info.py31 class Scope(object): class in inherits:object
43 parent: A Scope or None.
49 return 'Scope[%s]' % self.values.keys()
52 s = Scope(self.parent)
81 self.scope = Scope(None)
85 self.scope = Scope(self.scope)
93 self.scope = Scope(self.scope)
/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]);

Completed in 1053 milliseconds

12345