Searched refs:TypeData (Results 1 - 18 of 18) sorted by relevance

/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeTag.java21 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);
H A DTypeData.java26 public abstract class TypeData { class
31 protected TypeData() {} method in class:TypeData
33 public abstract void merge(TypeData neighbor);
42 static void setType(TypeData td, String className, ClassPool cp) throws BadBytecode {
57 public TypeData getSelf() { return this; }
62 public abstract TypeData copy();
76 protected static class BasicType extends TypeData {
85 public void merge(TypeData neighbor) {}
101 public TypeData copy() {
122 protected static abstract class TypeName extends TypeData {
[all...]
H A DMapMaker.java139 TypeData[] srcTypes = first.localsTypes;
151 * is Object. To avoid this, fixParamTypes calls TypeData.setType()
155 TypeData[] types = first.localsTypes;
158 TypeData t = types[i];
159 if (t instanceof TypeData.ClassName) {
163 TypeData.setType(t, t.getName(), classPool);
231 private void merge(TypeData td, TypeData target) {
248 TypeData[] tStackTypes = new TypeData[stackType
[all...]
H A DTypedBlock.java22 public TypeData[] stackTypes, localsTypes;
81 TypeData[] types) {
89 TypeData td = types[i];
98 public void setStackMap(int st, TypeData[] stack, int nl, TypeData[] locals)
115 TypeData td = localsTypes[nl - 2];
155 stackTypes = new TypeData[maxStack];
156 TypeData[] locals = new TypeData[maxLocals];
158 locals[0] = new TypeData
[all...]
H A DTracer.java36 protected TypeData[] stackTypes;
37 protected TypeData[] localsTypes;
45 stackTypes = new TypeData[maxStack];
46 localsTypes = new TypeData[maxLocals];
56 stackTypes = new TypeData[size];
61 localsTypes = new TypeData[size2];
65 protected static int copyFrom(int n, TypeData[] srcTypes, TypeData[] destTypes) {
68 TypeData t = srcTypes[i];
155 TypeData[] stackType
[all...]
H A DLiveness.java35 TypeData[] args)
47 private void useAllArgs(TypedBlock[] blocks, TypeData[] args) {
/external/clang/lib/CodeGen/
H A DABIInfo.h72 llvm::Type *TypeData; member in class:clang::ABIArgInfo
81 : TheKind(K), TypeData(TD), PaddingType(P), UIntData(UI), BoolData0(B0),
85 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {}
138 return TypeData;
143 TypeData = T;
/external/webkit/Source/WebKit/chromium/public/
H A DWebBlobData.h50 enum { TypeData, TypeFile, TypeBlob } type; enumerator in enum:WebKit::WebBlobData::Item::__anon14762
H A DWebHTTPBody.h51 enum { TypeData, TypeFile, TypeBlob } type; enumerator in enum:WebKit::WebHTTPBody::Element::__anon14763
/external/webkit/Source/WebKit2/Shared/
H A DAPIObject.h44 TypeData, enumerator in enum:WebKit::APIObject::Type
H A DWebData.h39 static const Type APIType = TypeData;
H A DUserMessageCoders.h144 case APIObject::TypeData: {
302 case APIObject::TypeData: {
/external/webkit/Source/WebKit/chromium/src/
H A DWebBlobData.cpp77 result.type = Item::TypeData;
H A DWebHTTPBody.cpp85 result.type = Element::TypeData;
/external/chromium/webkit/glue/
H A Dglue_serialize_unittest.cc113 if (a_elem.type == WebHTTPBody::Element::TypeData) {
194 p.WriteInt(WebHTTPBody::Element::TypeData);
H A Dglue_serialize.cc235 if (element.type == WebHTTPBody::Element::TypeData) {
265 if (type == WebHTTPBody::Element::TypeData) {
H A Dweburlloader_impl.cc456 case WebHTTPBody::Element::TypeData:
/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp380 void *TypeData = LoadPointer(Data, Offset); local
381 TypeLoc TL(Qualifier->getAsType(), TypeData);
397 void *TypeData = LoadPointer(Data, Offset); local
398 return TypeLoc(Qualifier->getAsType(), TypeData);

Completed in 2108 milliseconds