HomeSort by relevance Sort by last modified time
    Searched refs:TypeData (Results 1 - 25 of 29) sorted by null

1 2

  /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...]
Liveness.java 35 TypeData[] args)
47 private void useAllArgs(TypedBlock[] blocks, TypeData[] args) {
  /art/compiler/sea_ir/types/
type_inference_visitor_test.cc 37 TypeData td;
49 TypeData td;
62 TypeData td;
76 TypeData td;
90 TypeData td;
106 TypeData td;
type_data_test.cc 25 TypeData td;
types.h 32 class TypeData {
type_inference_visitor.h 37 TypeInferenceVisitor(SeaGraph* graph, TypeData* type_data,
74 TypeData* type_data_;
type_inference.h 45 TypeData type_data_; // TODO: Make private, add accessor and not publish a SafeMap above.
  /external/chromium_org/third_party/WebKit/public/platform/
WebBlobData.h 51 enum { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type;
WebHTTPBody.h 52 enum Type { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebBlobData.cpp 72 result.type = Item::TypeData;
WebHTTPBody.cpp 84 result.type = Element::TypeData;
  /external/chromium_org/mojo/services/html_viewer/
blink_url_request_type_converters.cc 61 case blink::WebHTTPBody::Element::TypeData:
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 76 llvm::Type *TypeData; // isDirect() || isExtend()
96 : TypeData(nullptr), PaddingType(nullptr), DirectOffset(0),
192 return TypeData;
197 TypeData = T;
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 120 e1.type = blink::WebHTTPBody::Element::TypeData;
166 e1.type = blink::WebHTTPBody::Element::TypeData;
176 e3.type = blink::WebHTTPBody::Element::TypeData;
357 p.WriteInt(blink::WebHTTPBody::Element::TypeData);
page_state_serialization.cc 28 element.type = blink::WebHTTPBody::Element::TypeData;
424 if (element.type == blink::WebHTTPBody::Element::TypeData) {
457 if (type == blink::WebHTTPBody::Element::TypeData) {
678 : type(blink::WebHTTPBody::Element::TypeData),
  /external/chromium_org/content/renderer/
history_serialization.cc 37 case WebHTTPBody::Element::TypeData:
61 case WebHTTPBody::Element::TypeData:
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 91 class TypeData(object):
114 type_data = TypeData(json_type)
  /external/chromium_org/content/public/common/
page_state.cc 88 element.type = blink::WebHTTPBody::Element::TypeData;
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 379 void *TypeData = LoadPointer(Data, Offset);
380 TypeLoc TL(Qualifier->getAsType(), TypeData);
396 void *TypeData = LoadPointer(Data, Offset);
397 return TypeLoc(Qualifier->getAsType(), TypeData);
  /external/chromium_org/content/child/
webblobregistry_impl.cc 51 case WebBlobData::Item::TypeData: {
  /external/chromium_org/content/renderer/npapi/
webplugin_impl_unittest.cc 38 if (element.type == WebHTTPBody::Element::TypeData) {

Completed in 802 milliseconds

1 2