HomeSort by relevance Sort by last modified time
    Searched defs:Named (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/jsr330/src/javax/inject/
Named.java 30 * &#064;Inject <b>@Named("driver")</b> Seat driverSeat;
31 * &#064;Inject <b>@Named("passenger")</b> Seat passengerSeat;
38 public @interface Named {
  /system/libvintf/include/vintf/
Named.h 23 struct Named {
27 Named() = default;
28 Named(const std::string& n, const T& o) : name(n), object(o) {}
29 Named(std::string&& n, T&& o) : name(std::move(n)), object(std::move(o)) {}
  /external/guice/core/src/com/google/inject/name/
Named.java 28 * Annotates named things.
35 public @interface Named {
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
ExtractGV.cpp 27 SetVector<GlobalValue *> Named;
37 : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {}
46 // referenced by the Named set, and which GlobalValues in the rest of
54 if (deleteStuff == (bool)Named.count(I) && !I->isDeclaration()) {
70 if (deleteStuff == (bool)Named.count(I) && !I->isDeclaration()) {
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/java8/
Named.java 17 public interface Named {
22 /** Base class defining {@link #name} without implementing {@link Named}. */
36 public static class ExplicitName extends ExplicitNameBase implements Named {
42 /** Class that explicitly defers to the default method in {@link Named}. */
43 public static class DefaultName extends ExplicitNameBase implements Named {
50 return Named.super.name() + "-once";
71 public abstract static class AbstractName extends AbstractNameBase implements Named {}
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 58 SetVector<GlobalValue *> Named;
68 : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {}
80 // referenced by the Named set, and which GlobalValues in the rest of
89 deleteStuff == (bool)Named.count(&*I) && !I->isDeclaration();
109 deleteStuff == (bool)Named.count(&F) && !F.isDeclaration();
130 bool Delete = deleteStuff == (bool)Named.count(&*CurI);
  /art/test/utils/python/testgen/
mixins.py 25 class Named(metaclass=abc.ABCMeta):
71 Named.register(FExt)
115 Named.register(NameComparableMixin)
  /external/pdfium/core/fpdfdoc/
cpdf_action.h 29 Named,
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
dwarf_test.go 346 mains := ex.Named("main.main")
517 // DIEs such as params/variables. For example, asking for all DIEs named
519 func (ex *examiner) Named(name string) []*dwarf.Entry {
583 mains := ex.Named("main.main")
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
dwarf_test.go 346 mains := ex.Named("main.main")
517 // DIEs such as params/variables. For example, asking for all DIEs named
519 func (ex *examiner) Named(name string) []*dwarf.Entry {
583 mains := ex.Named("main.main")
  /external/dagger2/lib/
javax-inject.jar 
  /external/guice/lib/
javax.inject.jar 
  /prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/
javax.inject-1.jar 
  /external/flatbuffers/include/flatbuffers/
minireflect.h 315 template<typename T> void Named(T x, const char *name) {
319 void UType(uint8_t x, const char *name) { Named(x, name); }
321 void Char(int8_t x, const char *name) { Named(x, name); }
322 void UChar(uint8_t x, const char *name) { Named(x, name); }
323 void Short(int16_t x, const char *name) { Named(x, name); }
324 void UShort(uint16_t x, const char *name) { Named(x, name); }
325 void Int(int32_t x, const char *name) { Named(x, name); }
326 void UInt(uint32_t x, const char *name) { Named(x, name); }
  /external/llvm/lib/Target/AMDGPU/
SIInsertWaits.cpp 41 } Named;
181 return WaitedOn.Named.LGKM != LastIssued.Named.LGKM;
188 Result.Named.VM = !!(TSFlags & SIInstrFlags::VM_CNT);
191 Result.Named.EXP = !!(TSFlags & SIInstrFlags::EXP_CNT &&
206 Result.Named.LGKM = Size > 4 ? 2 : 1;
211 Result.Named.LGKM = 1;
215 Result.Named.LGKM = 1;
219 Result.Named.LGKM = 0;
318 if (LastOpcodeType == VMEM && Increment.Named.VM)
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
type.go 228 // as a *Named or an *Interface. Due to embedding, an interface may
244 embeddeds []*Named // ordered list of explicitly embedded types
258 func NewInterface(methods []*Func, embeddeds []*Named) *Interface {
271 // TODO(gri) Ideally, we should use a named type here instead of
298 func (t *Interface) Embedded(i int) *Named { return t.embeddeds[i] }
390 // A Named represents a named type.
391 type Named struct {
393 underlying Type // possibly a *Named during setup; never a *Named once set up completel
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
type.go 228 // as a *Named or an *Interface. Due to embedding, an interface may
244 embeddeds []*Named // ordered list of explicitly embedded types
258 func NewInterface(methods []*Func, embeddeds []*Named) *Interface {
271 // TODO(gri) Ideally, we should use a named type here instead of
298 func (t *Interface) Embedded(i int) *Named { return t.embeddeds[i] }
390 // A Named represents a named type.
391 type Named struct {
393 underlying Type // possibly a *Named during setup; never a *Named once set up completel
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcShaderLibrary.cpp 371 struct Named
377 static const Named s_named[] = { { "true", TOKEN_TRUE },
  /prebuilts/go/darwin-x86/src/database/sql/
sql.go 74 // A NamedArg is a named argument. NamedArg values may be used as
75 // arguments to Query or Exec and bind to the corresponding named
79 // the Named function.
97 // Named provides a more concise way to create NamedArg values.
106 // sql.Named("start", startTime),
107 // sql.Named("end", endTime),
109 func Named(name string, value interface{}) NamedArg {
288 // _, err := db.ExecContext(ctx, "ProcName", sql.Named("Arg1", sql.Out{Dest: &outArg}))
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql.go 74 // A NamedArg is a named argument. NamedArg values may be used as
75 // arguments to Query or Exec and bind to the corresponding named
79 // the Named function.
97 // Named provides a more concise way to create NamedArg values.
106 // sql.Named("start", startTime),
107 // sql.Named("end", endTime),
109 func Named(name string, value interface{}) NamedArg {
288 // _, err := db.ExecContext(ctx, "ProcName", sql.Named("Arg1", sql.Out{Dest: &outArg}))
    [all...]
  /external/deqp/framework/opengl/
gluShaderLibrary.cpp 600 struct Named
606 static const Named s_named[] =
    [all...]
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
FactoryProvider2Test.java 35 import com.google.inject.name.Named;
74 bind(int.class).annotatedWith(Names.named("horsePower")).toInstance(250);
75 bind(int.class).annotatedWith(Names.named("modelYear")).toInstance(1984);
120 @Named("horsePower") int horsePower,
121 @Named("modelYear") int modelYear,
693 bind(int.class).annotatedWith(Names.named("horsePower")).toInstance(250);
694 bind(int.class).annotatedWith(Names.named("modelYear")).toInstance(1984);
818 "Only @Assisted is allowed for factory parameters, but found @" + Named.class.getName());
823 Car create(@Named("seats") int seats, double engineSize);
848 bind(int.class).annotatedWith(Names.named("horsePower")).toInstance(250)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
ColorSpace.java 50 * described in the {@link Named} enum. To obtain an instance of one of the
51 * pre-defined color spaces, simply invoke {@link #get(Named)}:</p>
54 * ColorSpace sRgb = ColorSpace.get(ColorSpace.Named.SRGB);
57 * <p>The {@link #get(Named)} method always returns the same instance for a given
64 * <p>The documentation of {@link Named} provides a detailed description of the
75 * native white point (D65 for {@link Named#SRGB sRGB} for instance and must
92 * ColorSpace.get(ColorSpace.Named.DCI_P3),
93 * ColorSpace.get(ColorSpace.Named.BT2020));
98 * <p>You can easily convert to {@link Named#SRGB sRGB} by omitting the second
103 * ColorSpace.Connector connector = ColorSpace.connect(ColorSpace.get(ColorSpace.Named.DCI_P3))
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 290 /// \param CurContext the context in which this result will be named.
298 /// \param CurContext the context in which this result will be named.
440 /// \param CurContext the context where an entity is being named, which is
443 /// \param TargetContext the context in which the named entity actually
521 auto *Named = ND;
553 if (Filter && !(this->*Filter)(Named)) {
880 // declaration name is hidden by a similarly-named declaration in an outer
    [all...]
SemaDeclCXX.cpp     [all...]

Completed in 480 milliseconds

1 2 3