HomeSort by relevance Sort by last modified time
    Searched refs:Scope (Results 126 - 150 of 2145) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/support/wear/src/main/java/androidx/wear/internal/widget/
ResourcesUtil.java 23 import androidx.annotation.RestrictTo.Scope;
30 @RestrictTo(Scope.LIBRARY)
  /frameworks/support/wear/src/main/java/androidx/wear/widget/
SimpleAnimatorListener.java 24 import androidx.annotation.RestrictTo.Scope;
33 @RestrictTo(Scope.LIBRARY)
  /frameworks/support/webkit/src/main/java/androidx/webkit/
WebMessagePortCompat.java 78 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
117 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
  /external/clang/lib/Sema/
Scope.cpp 1 //===- Scope.cpp - Lexical scope information --------------------*- C++ -*-===//
10 // This file implements the Scope class, which is used for recording
11 // information about a lexical scope.
15 #include "clang/Sema/Scope.h"
21 void Scope::setFlags(Scope *parent, unsigned flags) {
57 // If this scope is a function or contains breaks/continues, remember it.
71 // If this is a prototype scope, record that.
88 void Scope::Init(Scope *parent, unsigned flags)
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/core/
ConstantTest.java 35 import org.tensorflow.op.Scope;
48 Scope scope = new Scope(g); local
49 Constant<Integer> op = Constant.create(scope, shape, IntBuffer.wrap(ints));
64 Scope scope = new Scope(g); local
65 Constant<Float> op = Constant.create(scope, shape, FloatBuffer.wrap(floats));
79 Scope scope = new Scope(g) local
94 Scope scope = new Scope(g); local
    [all...]
  /external/tensorflow/tensorflow/cc/ops/
const_op_test.cc 52 Scope root = Scope::NewRootScope();
60 Scope root = Scope::NewRootScope();
68 Scope root = Scope::NewRootScope();
91 Scope root = Scope::NewRootScope();
104 Scope root = Scope::NewRootScope()
    [all...]
  /external/clang/lib/Basic/
Attributes.cpp 6 int clang::hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope,
  /external/jsr330/src/javax/inject/
Scope.java 26 * Identifies scope annotations. A scope annotation applies to a class
28 * instances of the type. By default, if no scope annotation is present, the
30 * the instance for one injection, and then forgets it. If a scope annotation
33 * implementation should be thread safe. The implementation of the scope
36 * <p>In the following example, the scope annotation {@code @Singleton} ensures
45 * <p>The injector generates an error if it encounters more than one scope
46 * annotation on the same class or a scope annotation it doesn't support.
48 * <p>A scope annotation:
50 * <li>is annotated with {@code @Scope}, {@code @Retention(RUNTIME)}
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 34 DISubprogram *llvm::getDISubprogram(const MDNode *Scope) {
35 if (auto *LocalScope = dyn_cast_or_null<DILocalScope>(Scope))
117 void DebugInfoFinder::processScope(DIScope *Scope) {
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)) {
    [all...]
  /external/skia/src/gpu/ccpr/
GrCCCubicShader.h 31 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
33 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) = 0;
44 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
53 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
GrCCQuadraticShader.h 30 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
32 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) {}
51 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
63 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
  /external/skqp/src/gpu/ccpr/
GrCCCubicShader.h 31 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
33 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) = 0;
44 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
53 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
GrCCQuadraticShader.h 30 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
32 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) {}
51 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
63 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
  /external/tensorflow/tensorflow/cc/framework/
testutil.cc 27 void GetTensors(const Scope& scope, OutputList tensors,
29 ClientSession session(scope);
33 void GetTensor(const Scope& scope, Output tensor, Tensor* out) {
35 GetTensors(scope, {std::move(tensor)}, &outputs);
39 void GetTensors(const Scope& scope, const std::vector<Output>& assign_vars,
41 ClientSession session(scope);
46 void GetTensor(const Scope& scope, const std::vector<Output>& assign_vars
    [all...]
  /external/testng/src/test/java/test/sample/
Scope.java 10 public class Scope {
  /external/v8/src/compiler/
zone-stats.h 21 class Scope final {
23 explicit Scope(ZoneStats* zone_stats, const char* zone_name)
25 ~Scope() { Destroy(); }
40 DISALLOW_COPY_AND_ASSIGN(Scope);
  /external/v8/src/parsing/
rewriter.h 16 class Scope;
30 // to the closure scope of the do-expression, which matches the closure scope
31 // of the outer scope (the do-expression itself runs in a block scope, not a
32 // closure scope). This closure scope needs to be passed in since the
33 // do-expression could have dropped its own block scope.
  /frameworks/support/compat/src/main/java/androidx/core/graphics/drawable/
WrappedDrawable.java 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
  /frameworks/support/leanback/common/androidx/leanback/transition/
TransitionListener.java 16 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
FocusHighlightHandler.java 16 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
  /frameworks/support/paging/runtime/src/main/java/androidx/paging/
LivePagedListProvider.java 30 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
AutoScroller.java 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
  /frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
BundleUtil.java 26 @RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/menu/
ShowableListMenu.java 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
FitWindowsViewGroup.java 19 import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;

Completed in 4108 milliseconds

1 2 3 4 56 7 8 91011>>