HomeSort by relevance Sort by last modified time
    Searched refs:type (Results 476 - 500 of 32510) sorted by null

<<11121314151617181920>>

  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
CastExpr.java 26 import com.github.javaparser.ast.type.Type;
35 private Type type; field in class:CastExpr
42 public CastExpr(Type type, Expression expr) {
43 setType(type);
47 public CastExpr(Range range, Type type, Expression expr) {
49 setType(type);
    [all...]
ClassExpr.java 26 import com.github.javaparser.ast.type.Type;
31 * Defines an expression that accesses the class of a type.
40 private Type type; field in class:ClassExpr
45 public ClassExpr(Type type) {
46 setType(type);
49 public ClassExpr(Range range, Type type) {
    [all...]
InstanceOfExpr.java 26 import com.github.javaparser.ast.type.Type;
37 private Type type; field in class:InstanceOfExpr
42 public InstanceOfExpr(final Expression expr, final Type type) {
44 setType(type);
47 public InstanceOfExpr(final Range range, final Expression expr, final Type type) {
50 setType(type);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
CastExpr.java 24 import com.github.javaparser.ast.type.Type;
33 private Type type; field in class:CastExpr
40 public CastExpr(Type type, Expression expr) {
41 setType(type);
45 public CastExpr(int beginLine, int beginColumn, int endLine, int endColumn, Type type, Expression expr) {
47 setType(type);
    [all...]
InstanceOfExpr.java 24 import com.github.javaparser.ast.type.Type;
35 private Type type; field in class:InstanceOfExpr
40 public InstanceOfExpr(final Expression expr, final Type type) {
42 setType(type);
46 final Expression expr, final Type type) {
49 setType(type);
    [all...]
  /external/objenesis/main/src/main/java/org/objenesis/strategy/
SerializingInstantiatorStrategy.java 53 * @param type Class to instantiate
56 public <T> ObjectInstantiator<T> newInstantiatorOf(Class<T> type) {
57 if(!Serializable.class.isAssignableFrom(type)) {
58 throw new ObjenesisException(new NotSerializableException(type+" not serializable"));
62 return new ObjectInputStreamInstantiator<T>(type);
66 return new SunReflectionFactorySerializationInstantiator<T>(type);
68 return new ObjectStreamClassInstantiator<T>(type);
72 return new ObjectStreamClassInstantiator<T>(type);
74 return new AndroidSerializationInstantiator<T>(type);
77 return new GCJSerializationInstantiator<T>(type);
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
export.h 39 // Only when `type` is `kTensorFlowUnsupported`, `custom_code` is filled to
42 OperatorKey(OperatorType type, const std::string& custom_code)
43 : type(type), custom_code(custom_code) {}
44 const OperatorType type; member in struct:toco::tflite::details::OperatorKey
48 if (type < other.type) return true;
49 if (type > other.type) return false;
54 return type == other.type && custom_code == other.custom_code
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpStackEvent.java 44 public int type = EVENT_TYPE_NONE; field in class:A2dpStackEvent
49 A2dpStackEvent(int type) {
50 this.type = type;
57 result.append("A2dpStackEvent {type:" + eventTypeToString(type));
59 result.append(", value1:" + eventTypeValueIntToString(type, valueInt));
67 private static String eventTypeToString(int type) {
68 switch (type) {
78 return "EVENT_TYPE_UNKNOWN:" + type;
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
types_solaris.go 83 type (
92 type Timespec C.struct_timespec
94 type Timeval C.struct_timeval
96 type Timeval32 C.struct_timeval32
100 type Rusage C.struct_rusage
102 type Rlimit C.struct_rlimit
104 type _Gid_t C.gid_t
125 type Stat_t C.struct_stat
127 type Flock_t C.struct_flock
129 type Dirent C.struct_diren
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
types_solaris.go 83 type (
92 type Timespec C.struct_timespec
94 type Timeval C.struct_timeval
96 type Timeval32 C.struct_timeval32
100 type Rusage C.struct_rusage
102 type Rlimit C.struct_rlimit
104 type _Gid_t C.gid_t
125 type Stat_t C.struct_stat
127 type Flock_t C.struct_flock
129 type Dirent C.struct_diren
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemObject.java 8 * A generic PEM object - type, header properties, and byte content.
15 private String type; field in class:PemObject
22 * @param type pem object type.
25 public PemObject(String type, byte[] content)
27 this(type, EMPTY_LIST, content);
33 * @param type pem object type.
37 public PemObject(String type, List headers, byte[] content)
39 this.type = type
    [all...]
  /external/elfutils/libebl/
eblobjnotetypename.c 1 /* Return note type name.
41 ebl_object_note_type_name (Ebl *ebl, const char *name, uint32_t type,
44 const char *res = ebl->object_note_type_name (name, type, buf, len);
50 snprintf (buf, len, "Version: %" PRIu32, type);
64 if (type < sizeof (knowntypes) / sizeof (knowntypes[0])
65 && knowntypes[type] != NULL)
66 res = knowntypes[type];
69 snprintf (buf, len, "%s: %" PRIu32, gettext ("<unknown>"), type);
  /external/guice/core/src/com/google/inject/spi/
StaticInjectionRequest.java 27 * A request to inject the static fields and methods of a type. Requests are created
38 private final Class<?> type; field in class:StaticInjectionRequest
40 StaticInjectionRequest(Object source, Class<?> type) {
42 this.type = checkNotNull(type, "type");
50 return type;
54 * Returns the static methods and fields of {@code type} that will be injected to fulfill this
60 * @throws ConfigurationException if there is a malformed injection point on {@code type}, such as
66 return InjectionPoint.forStaticMethodsAndFields(type);
    [all...]
  /external/guice/core/test/com/google/inject/example/
JndiProvider.java 29 final Class<T> type; field in class:JndiProvider
31 JndiProvider(Class<T> type, String name) {
33 this.type = type;
38 return type.cast(context.lookup(name));
47 * type and name.
50 Class<T> type, String name) {
51 return new JndiProvider<T>(type, name);
  /external/guice/extensions/jndi/src/com/google/inject/jndi/
JndiIntegration.java 43 public static <T> Provider<T> fromJndi(Class<T> type, String name) {
44 return new JndiProvider<T>(type, name);
50 final Class<T> type; field in class:JndiIntegration.JndiProvider
53 public JndiProvider(Class<T> type, String name) {
54 this.type = type;
60 return type.cast(context.lookup(name));
  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
invoke.pass.cpp 20 typedef T type[N]; typedef in struct:Array
23 struct Type
25 Array<char, 1>::type& f1();
26 Array<char, 2>::type& f2() const;
28 Array<char, 1>::type& g1() &;
29 Array<char, 2>::type& g2() const &;
30 Array<char, 3>::type& g3() &&;
31 Array<char, 4>::type& g4() const &&;
37 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "")
    [all...]
  /external/libcxx/test/std/utilities/function.objects/refwrap/
type.pass.cpp 14 // check for member typedef type
23 static_assert((std::is_same<std::reference_wrapper<C>::type,
25 static_assert((std::is_same<std::reference_wrapper<void ()>::type,
27 static_assert((std::is_same<std::reference_wrapper<int* (double*)>::type,
29 static_assert((std::is_same<std::reference_wrapper<void(*)()>::type,
31 static_assert((std::is_same<std::reference_wrapper<int*(*)(double*)>::type,
33 static_assert((std::is_same<std::reference_wrapper<int*(C::*)(double*)>::type,
35 static_assert((std::is_same<std::reference_wrapper<int (C::*)(double*) const volatile>::type,
  /external/ltp/testcases/kernel/syscalls/add_key/
add_key02.c 25 * before (depending on the key type). This is a regression test for commit
30 * can, in the hope of catching one. We also test with the "user" key type for
43 const char *type; member in struct:tcase
47 * The payload length we test for each key type needs to pass initial
48 * validation but is otherwise arbitrary. Note: the "rxrpc_s" key type
63 TEST(add_key(tcases[i].type,
68 "add_key() with key type '%s' unexpectedly succeeded",
69 tcases[i].type);
74 tst_res(TPASS, "received expected EFAULT with key type '%s'",
75 tcases[i].type);
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_alpha.c 51 struct lp_type type,
61 lp_build_context_init(&bld, gallivm, type);
73 if (type.floating &&
80 alpha = lp_build_clamped_float_to_unsigned_norm(gallivm, type, dst_width, alpha);
81 ref = lp_build_clamped_float_to_unsigned_norm(gallivm, type, dst_width, ref);
83 type.floating = 0;
84 lp_build_context_init(&bld, gallivm, type);
  /external/skia/experimental/go-skia/
types.go 20 type Color uint32
22 type ColorType uint32
31 type AlphaType uint32
39 type PixelGeometry uint32
49 type ImageInfo struct {
56 type SurfaceProps struct {
60 type Rect struct {
  /external/skqp/experimental/go-skia/
types.go 20 type Color uint32
22 type ColorType uint32
31 type AlphaType uint32
39 type PixelGeometry uint32
49 type ImageInfo struct {
56 type SurfaceProps struct {
60 type Rect struct {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypePool.java 48 public void intern(@Nonnull CharSequence type) {
49 String typeString = type.toString();
56 public void internNullable(@Nullable CharSequence type) {
57 if (type != null) {
58 intern(type);
66 @Nonnull @Override public CharSequence getString(@Nonnull CharSequence type) {
67 return type;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
Property.java 34 private final Class<?> type; field in class:Property
36 public Property(String name, Class<?> type) {
38 this.type = type;
42 return type;
74 return name.hashCode() + type.hashCode();
81 return name.equals(p.getName()) && type.equals(p.getType());
  /external/snakeyaml/src/test/java/examples/staticstate/
Wrapper.java 22 private String type; field in class:Wrapper
29 JavaBeanWithStaticState.setType(type);
35 type = JavaBeanWithStaticState.getType();
69 return type;
72 public void setType(String type) {
73 this.type = type;
  /frameworks/base/core/java/android/ddm/
DdmHandleNativeHeap.java 29 public static final int CHUNK_NHGT = type("NHGT");
60 Log.i("ddm-nativeheap", "Handling " + name(request.type) + " chunk");
61 int type = request.type; local
63 if (type == CHUNK_NHGT) {
67 + ChunkHandler.name(type));
82 return new Chunk(ChunkHandler.type("NHGT"), data, 0, data.length);

Completed in 860 milliseconds

<<11121314151617181920>>