/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | TypeTag.java | 21 TypeData TOP = null; 22 TypeData INTEGER = new TypeData.BasicType("int", StackMapTable.INTEGER); 23 TypeData FLOAT = new TypeData.BasicType("float", StackMapTable.FLOAT); 24 TypeData DOUBLE = new TypeData.BasicType("double", StackMapTable.DOUBLE); 25 TypeData LONG = new TypeData.BasicType("long", StackMapTable.LONG);
|
D | TypeData.java | 26 public abstract class TypeData { class 31 protected TypeData() {} in TypeData() method in TypeData 33 public abstract void merge(TypeData neighbor); in merge() 42 static void setType(TypeData td, String className, ClassPool cp) throws BadBytecode { in setType() 57 public TypeData getSelf() { return this; } in getSelf() 62 public abstract TypeData copy(); in copy() 76 protected static class BasicType extends TypeData { 85 public void merge(TypeData neighbor) {} in merge() 101 public TypeData copy() { in copy() 122 protected static abstract class TypeName extends TypeData { [all …]
|
D | TypedBlock.java | 22 public TypeData[] stackTypes, localsTypes; 81 TypeData[] types) { in printTypes() 89 TypeData td = types[i]; in printTypes() 98 public void setStackMap(int st, TypeData[] stack, int nl, TypeData[] locals) in setStackMap() 115 TypeData td = localsTypes[nl - 2]; in resetNumLocals() 155 stackTypes = new TypeData[maxStack]; in initFirstBlock() 156 TypeData[] locals = new TypeData[maxLocals]; in initFirstBlock() 158 locals[0] = new TypeData.UninitThis(className); in initFirstBlock() 160 locals[0] = new TypeData.ClassName(className); in initFirstBlock() 179 int n, TypeData[] types) in descToTag() [all …]
|
D | MapMaker.java | 139 TypeData[] srcTypes = first.localsTypes; in make() 155 TypeData[] types = first.localsTypes; in fixParamTypes() 158 TypeData t = types[i]; in fixParamTypes() 159 if (t instanceof TypeData.ClassName) { in fixParamTypes() 163 TypeData.setType(t, t.getName(), classPool); in fixParamTypes() 231 private void merge(TypeData td, TypeData target) { in merge() 248 TypeData[] tStackTypes = new TypeData[stackTypes.length]; in recordStackMap() 263 TypeData[] tStackTypes = new TypeData[stackTypes.length]; in recordStackMap() 264 tStackTypes[0] = new TypeData.ClassName(type); in recordStackMap() 269 private void recordStackMap0(TypedBlock target, int st, TypeData[] tStackTypes) in recordStackMap0() [all …]
|
D | Tracer.java | 36 protected TypeData[] stackTypes; 37 protected TypeData[] localsTypes; 45 stackTypes = new TypeData[maxStack]; in Tracer() 46 localsTypes = new TypeData[maxLocals]; in Tracer() 56 stackTypes = new TypeData[size]; in Tracer() 61 localsTypes = new TypeData[size2]; in Tracer() 65 protected static int copyFrom(int n, TypeData[] srcTypes, TypeData[] destTypes) { in copyFrom() 68 TypeData t = srcTypes[i]; in copyFrom() 155 TypeData[] stackTypes = this.stackTypes; in doOpcode0_53() 160 stackTypes[stackTop++] = new TypeData.NullType(); in doOpcode0_53() [all …]
|
D | Liveness.java | 35 TypeData[] args) in compute() 47 private void useAllArgs(TypedBlock[] blocks, TypeData[] args) { in useAllArgs()
|
/external/clang/lib/CodeGen/ |
D | ABIInfo.h | 73 llvm::Type *TypeData; variable 83 : TheKind(K), TypeData(TD), PaddingType(P), UIntData(UI), BoolData0(B0), in ABIArgInfo() 87 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {} in ABIArgInfo() 151 return TypeData; in getCoerceToType() 156 TypeData = T; in setCoerceToType()
|
/external/clang/lib/AST/ |
D | NestedNameSpecifier.cpp | 377 void *TypeData = LoadPointer(Data, Offset); in getLocalSourceRange() local 378 TypeLoc TL(Qualifier->getAsType(), TypeData); in getLocalSourceRange() 394 void *TypeData = LoadPointer(Data, Offset); in getTypeLoc() local 395 return TypeLoc(Qualifier->getAsType(), TypeData); in getTypeLoc()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebBlobData.h | 50 enum { TypeData, TypeFile, TypeBlob } type; enumerator
|
D | WebHTTPBody.h | 51 enum { TypeData, TypeFile, TypeBlob } type; enumerator
|
/external/webkit/Source/WebKit2/Shared/ |
D | APIObject.h | 44 TypeData, enumerator
|
D | WebData.h | 39 static const Type APIType = TypeData;
|
D | UserMessageCoders.h | 144 case APIObject::TypeData: { in baseEncode() 302 case APIObject::TypeData: { in baseDecode()
|
/external/chromium/webkit/glue/ |
D | glue_serialize_unittest.cc | 113 if (a_elem.type == WebHTTPBody::Element::TypeData) { in HistoryItemExpectEqual() 194 p.WriteInt(WebHTTPBody::Element::TypeData); in TEST_F()
|
D | glue_serialize.cc | 235 if (element.type == WebHTTPBody::Element::TypeData) { in WriteFormData() 265 if (type == WebHTTPBody::Element::TypeData) { in ReadFormData()
|
D | weburlloader_impl.cc | 456 case WebHTTPBody::Element::TypeData: in Start()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebBlobData.cpp | 77 result.type = Item::TypeData; in itemAt()
|
D | WebHTTPBody.cpp | 85 result.type = Element::TypeData; in elementAt()
|
/external/webkit/Source/WebKit2/ |
D | ChangeLog | 9065 Added encoding/decoding for APIObject::TypeData
|