HomeSort by relevance Sort by last modified time
    Searched defs:type (Results 326 - 350 of 10128) sorted by null

<<11121314151617181920>>

  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/
PrimitiveType.java 22 package com.github.javaparser.ast.type;
32 public final class PrimitiveType extends Type {
62 private Primitive type; field in class:PrimitiveType
67 public PrimitiveType(final Primitive type) {
68 this.type = type;
72 final Primitive type) {
74 this.type = type;
86 return type;
    [all...]
  /frameworks/base/tools/preload/
Operation.java 29 * Type of operation.
31 enum Type {
44 /** Type of operation. */
45 final Type type; field in class:Operation
58 int index, Type type) {
63 this.type = type;
98 switch (type) {
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
CallSite.java 57 * The new target must have the same {@linkplain MethodHandle#type() type}
60 * successive targets, it cannot change its type.
79 private static CallSite bootstrapDynamic(MethodHandles.Lookup caller, String name, MethodType type) {
80 // ignore caller and name, but match the type:
81 return new ConstantCallSite(printArgs.asType(type));
96 * Make a blank call site object with the given method type.
103 * @throws NullPointerException if the proposed type is null
106 CallSite(MethodType type) {
109 // type but throws an IllegalStateException
168 public MethodType type() { method in class:CallSite
    [all...]
  /art/compiler/optimizing/
ssa_builder.h 44 * that require merging and have a proper type after the merge, are
70 HInstruction* GetFloatOrDoubleEquivalent(HInstruction* instruction, DataType::Type type);
74 DataType::Type type = aget->GetType(); local
75 DCHECK(!DataType::IsFloatingPointType(type));
76 if (DataType::IsIntOrLongType(type)) {
82 DataType::Type type = aset->GetValue()->GetType(); local
83 if (DataType::IsIntOrLongType(type)) {
    [all...]
  /art/runtime/arch/
memcmp16_test.cc 54 size_t type = r.next() % range_of_tests; local
58 switch (type) {
  /art/runtime/
art_field.cc 38 Primitive::Type type = GetTypeAsPrimitiveType(); local
39 if (type == Primitive::kPrimDouble || type == Primitive::kPrimLong) {
  /art/runtime/gc/
system_weak_test.cc 110 CollectorType type = Runtime::Current()->GetHeap()->CurrentCollectorType(); local
111 switch (type) {
122 CollectorType type = Runtime::Current()->GetHeap()->CurrentCollectorType(); local
123 switch (type) {
  /art/runtime/interpreter/
safe_math.h 26 // Declares a type which is the larger in bit size of the two template parameters.
29 typedef typename std::conditional<sizeof(T1) >= sizeof(T2), T1, T2>::type type; typedef in struct:art::interpreter::select_bigger
34 static inline typename select_bigger<T1, T2>::type SafeMath(T1 a, T2 b) {
35 typedef typename select_bigger<T1, T2>::type biggest_T;
36 typedef typename std::make_unsigned<biggest_T>::type unsigned_biggest_T;
46 static inline typename select_bigger<T1, T2>::type SafeAdd(T1 a, T2 b) {
52 static inline typename select_bigger<T1, T2>::type SafeSub(T1 a, T2 b) {
58 static inline typename select_bigger<T1, T2>::type SafeMul(T1 a, T2 b) {
  /art/runtime/mirror/
field-inl.h 33 // Try to resolve type before allocating since this is a thread suspension point.
34 Handle<mirror::Class> type = hs.NewHandle(field->ResolveType()); local
36 if (type == nullptr) {
43 // Can't resolve, clear the exception if it isn't OOME and continue with a null type.
73 ret->SetType<kTransactionActive>(type.Get());
87 inline void Field::SetType(ObjPtr<mirror::Class> type) {
88 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type); local
91 inline Primitive::Type Field::GetTypeAsPrimitiveType() {
  /art/test/661-oat-writer-layout/
oat_writer_layout.cc 66 OatClassType type = oat_class.GetType(); local
67 switch (type) {
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
TypeList.java 48 for (TypeItem type : list) {
49 type.incrementIndex(kind, insertedIdx);
  /bionic/libc/kernel/uapi/linux/
ivtv.h 25 enum v4l2_buf_type type; member in struct:ivtv_dma_frame
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_l2tp.h 30 __u8 type; member in struct:xt_l2tp_info
  /bionic/libc/kernel/uapi/linux/usb/
gadgetfs.h 36 enum usb_gadgetfs_event_type type; member in struct:usb_gadgetfs_event
  /build/make/core/
main.mk 705 # Link type checking
707 # ALL_LINK_TYPES contains a list of all link type prefixes (generally one per
708 # module, but APKs can "link" to both java and native code). The link type
732 # - TYPE: the link types for this module
735 # - DEPS: the link type prefixes for the module's dependencies
745 define link-type-prefix-base
748 define link-type-prefix
749 $(if $(filter AUX-%,$(link-type-prefix-base)),$(patsubst AUX-%,AUX,$(link-type-prefix-base)),$(link-type-prefix-base)
    [all...]
  /cts/suite/audio_quality/lib/include/task/
ModelBuilder.h 47 TaskGeneric::TaskType type; member in struct:ModelBuilder::ChildInfo
60 TaskGeneric::TaskType type; member in struct:ModelBuilder::ParsingInfo
  /cts/suite/audio_quality/lib/src/task/
TaskSound.cpp 26 static const android::String8 STR_TYPE("type");
59 android::String8 type; local
60 if (!findStringAttribute(STR_TYPE, type)) {
64 std::unique_ptr<std::vector<android::String8> > tokens(StringUtil::split(type, ':'));
96 LOGE("TaskSound::run unknown word in type %s", type.string());
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
TypeIdItem.java 25 * Representation of a type reference inside a Dalvik file.
34 * @param type {@code non-null;} the constant for the type
36 public TypeIdItem(CstType type) {
37 super(type);
61 CstType type = getDefiningClass(); local
62 CstUtf8 descriptor = type.getDescriptor();
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeBearer.java 17 package com.android.dexgen.rop.type;
22 * Object which has an associated type, possibly itself.
27 * Gets the type associated with this instance.
29 * @return {@code non-null;} the type
31 public Type getType();
34 * Gets the frame type corresponding to this type. This method returns
35 * {@code this}, except if {@link Type#isIntlike} on the underlying
36 * type returns {@code true} but the underlying type is not i
    [all...]
TypeList.java 17 package com.android.dexgen.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /dalvik/dx/junit-tests/com/android/dx/rop/type/
TypeTest.java 17 package com.android.dx.rop.type;
29 Type boolArray = Type.BOOLEAN.getArrayType();
30 assertTrue(boolArray == Type.BOOLEAN_ARRAY);
31 assertTrue(boolArray == Type.intern("[Z"));
32 Type myClass = Type.intern("Lcom/example/Foo;");
34 Type.clearInternTable();
36 assertTrue(boolArray == Type.intern("[Z"));
37 Type myClass2 = Type.intern("Lcom/example/Foo;")
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttEnclosingMethod.java 27 /** {@code non-null;} attribute name for attributes of this type */
31 private final CstType type; field in class:AttEnclosingMethod
33 /** {@code null-ok;} the name-and-type of the innermost enclosing method, if any */
39 * @param type {@code non-null;} the innermost enclosing class
40 * @param method {@code null-ok;} the name-and-type of the innermost enclosing
43 public AttEnclosingMethod(CstType type, CstNat method) {
46 if (type == null) {
47 throw new NullPointerException("type == null");
50 this.type = type;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
TypeIdItem.java 26 * Representation of a type reference inside a Dalvik file.
32 * @param type {@code non-null;} the constant for the type
34 public TypeIdItem(CstType type) {
35 super(type);
59 CstType type = getDefiningClass(); local
60 CstString descriptor = type.getDescriptor();
  /dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java 17 package com.android.dx.rop.type;
22 * Object which has an associated type, possibly itself.
27 * Gets the type associated with this instance.
29 * @return {@code non-null;} the type
31 public Type getType();
34 * Gets the frame type corresponding to this type. This method returns
35 * {@code this}, except if {@link Type#isIntlike} on the underlying
36 * type returns {@code true} but the underlying type is not i
    [all...]
TypeList.java 17 package com.android.dx.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);

Completed in 415 milliseconds

<<11121314151617181920>>