/external/javassist/src/main/javassist/bytecode/stackmap/ |
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);
|
TypeData.java | 26 public abstract class TypeData { 31 protected 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...] |
MapMaker.java | 139 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[stackTypes.length] [all...] |
TypedBlock.java | 22 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.UninitThis(className) [all...] |
Tracer.java | 36 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[] stackTypes = this.stackTypes [all...] |
/external/dropbear/ |
listener.h | 45 void *typedata; member in struct:Listener 54 int type, void* typedata, 58 struct Listener * get_listener(int type, void* typedata,
|
listener.c | 77 /* acceptor(int fd, void* typedata) is a function to accept connections, 78 * cleanup(void* typedata) happens when cleaning up */ 80 int type, void* typedata, 123 newlisten->typedata = typedata; 135 struct Listener * get_listener(int type, void* typedata, 143 && match(typedata, listener->typedata)) {
|
tcp-accept.c | 39 struct TCPListener *tcpinfo = (struct TCPListener*)(listener->typedata); 52 struct TCPListener *tcpinfo = (struct TCPListener*)(listener->typedata);
|
channel.h | 67 void* typedata; /* a pointer to type specific data */ member in struct:Channel
|
/art/compiler/sea_ir/types/ |
type_inference_visitor_test.cc | 38 TypeData td; 50 TypeData td; 63 TypeData td; 77 TypeData td; 91 TypeData td; 107 TypeData td;
|
type_inference_visitor.h | 37 TypeInferenceVisitor(SeaGraph* graph, TypeData* type_data, 74 TypeData* type_data_;
|
type_data_test.cc | 26 TypeData td;
|
types.h | 32 class TypeData {
|
type_inference.h | 45 TypeData type_data_; // TODO: Make private, add accessor and not publish a SafeMap above.
|
/frameworks/rs/ |
rsType.cpp | 307 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t typeDataSize) { 310 // mHal.state.lodCount; mHal.state.faces; mElement; into typeData 313 (*typeData++) = t->getDimX(); 314 (*typeData++) = t->getDimY(); 315 (*typeData++) = t->getDimZ(); 316 (*typeData++) = t->getDimLOD() ? 1 : 0; 317 (*typeData++) = t->getDimFaces() ? 1 : 0; 318 (*typeData++) = (uintptr_t)t->getElement();
|
rs.h | 48 void rsaTypeGetNativeData(RsContext, RsType, uint32_t *typeData, uint32_t typeDataSize);
|
/external/clang/lib/CodeGen/ |
ABIInfo.h | 74 llvm::Type *TypeData; 84 : TheKind(K), TypeData(TD), PaddingType(P), UIntData(UI), BoolData0(B0), 88 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {} 152 return TypeData; 157 TypeData = T;
|
/external/robolectric/lib/main/ |
javassist-3.14.0-GA.jar | |
/external/chromium_org/third_party/WebKit/public/platform/ |
WebBlobData.h | 50 enum { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type;
|
WebHTTPBody.h | 52 enum Type { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type;
|
/external/chromium_org/content/public/renderer/ |
history_item_serialization.cc | 35 case WebHTTPBody::Element::TypeData: 59 case WebHTTPBody::Element::TypeData:
|
/external/chromium_org/content/common/ |
page_state_serialization_unittest.cc | 119 e1.type = blink::WebHTTPBody::Element::TypeData; 164 e1.type = blink::WebHTTPBody::Element::TypeData; 174 e3.type = blink::WebHTTPBody::Element::TypeData; 355 p.WriteInt(blink::WebHTTPBody::Element::TypeData);
|
/external/chromium_org/content/public/common/ |
page_state.cc | 79 element.type = blink::WebHTTPBody::Element::TypeData;
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebBlobData.cpp | 74 result.type = Item::TypeData;
|
/external/clang/lib/AST/ |
NestedNameSpecifier.cpp | 377 void *TypeData = LoadPointer(Data, Offset); 378 TypeLoc TL(Qualifier->getAsType(), TypeData); 394 void *TypeData = LoadPointer(Data, Offset); 395 return TypeLoc(Qualifier->getAsType(), TypeData);
|