Home
last modified time | relevance | path

Searched defs:ZoneRep (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/v8/test/cctest/
Dtest-types.cc38 struct ZoneRep { struct
39 typedef void* Struct;
41 static bool IsStruct(Type* t, int tag) { in IsStruct()
44 static bool IsBitset(Type* t) { return reinterpret_cast<intptr_t>(t) & 1; } in IsBitset()
45 static bool IsClass(Type* t) { return IsStruct(t, 0); } in IsClass()
46 static bool IsConstant(Type* t) { return IsStruct(t, 1); } in IsConstant()
47 static bool IsContext(Type* t) { return IsStruct(t, 2); } in IsContext()
48 static bool IsArray(Type* t) { return IsStruct(t, 3); } in IsArray()
49 static bool IsFunction(Type* t) { return IsStruct(t, 4); } in IsFunction()
50 static bool IsUnion(Type* t) { return IsStruct(t, 5); } in IsUnion()
[all …]