Searched refs:BasicType (Results 1 – 13 of 13) sorted by relevance
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | Type.java | 48 public static final BasicType VOID = new BasicType(Const.T_VOID); 49 public static final BasicType BOOLEAN = new BasicType(Const.T_BOOLEAN); 50 public static final BasicType INT = new BasicType(Const.T_INT); 51 public static final BasicType SHORT = new BasicType(Const.T_SHORT); 52 public static final BasicType BYTE = new BasicType(Const.T_BYTE); 53 public static final BasicType LONG = new BasicType(Const.T_LONG); 54 public static final BasicType DOUBLE = new BasicType(Const.T_DOUBLE); 55 public static final BasicType FLOAT = new BasicType(Const.T_FLOAT); 56 public static final BasicType CHAR = new BasicType(Const.T_CHAR); 201 return BasicType.getType(type); in getType() [all …]
|
D | BasicType.java | 27 public final class BasicType extends Type { class 35 BasicType(final byte type) { in BasicType() method in BasicType 44 public static BasicType getType( final byte type ) { in getType() 82 … return (_type instanceof BasicType) ? ((BasicType) _type).getType() == this.getType() : false; in equals()
|
D | NEWARRAY.java | 53 public NEWARRAY(final BasicType type) { in NEWARRAY() 81 return new ArrayType(BasicType.getType(type), 1); in getType()
|
D | ReferenceType.java | 146 if (sc instanceof BasicType && tc instanceof BasicType && sc.equals(tc)) { in isAssignmentCompatibleWith()
|
D | ArrayType.java | 39 this(BasicType.getType(type), dimensions); in ArrayType()
|
D | InstructionFactory.java | 588 if ((src_type instanceof BasicType) && (dest_type instanceof BasicType)) { in createCast()
|
/external/apache-commons-bcel/src/examples/Mini/ |
D | ASTLetExpr.java | 22 import org.apache.bcel.generic.BasicType; 158 Type t = BasicType.getType((byte)idents[i].getType()); in byte_code()
|
/external/apache-commons-bcel/docs/eps/ |
D | classgen.fig | 256 4 0 0 989 -1 16 10 1.5708 4 150 720 2521 9189 BasicType\001
|
/external/apache-commons-bcel/docs/ |
D | generic.mdl | 242 (object Class "BasicType" 638 (object ClassView "Class" "Logical View::BasicType" @1 650 label "BasicType")
|
/external/u-boot/scripts/ |
D | checkpatch.pl | 413 our $BasicType; 737 $BasicType = qr{ 3789 if ($sline =~ /\bconst\s+($BasicType)\s+const\b/) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | MetadataTest.cpp | 1344 DIType *BasicType = getBasicType("basic"); in TEST_F() local 1345 N->replaceVTableHolder(BasicType); in TEST_F() 1346 EXPECT_EQ(BasicType, N->getVTableHolder()); in TEST_F()
|
/external/llvm/docs/ |
D | LangRef.rst | 4019 !0 = !BasicType(name: "int", size: 32, align: 32, DW_ATE_signed) 4020 !1 = !BasicType(name: "char", size: 8, align: 8, DW_ATE_signed_char)
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | LangRef.rst | 4282 !0 = !BasicType(name: "int", size: 32, align: 32, DW_ATE_signed) 4283 !1 = !BasicType(name: "char", size: 8, align: 8, DW_ATE_signed_char)
|