Searched refs:TypeInfo (Results 1 - 25 of 71) sorted by relevance

123

/external/v8/src/
H A Dtype-info.h55 class TypeInfo { class in namespace:v8::internal
57 TypeInfo() : type_(kUninitialized) { } function in class:v8::internal::TypeInfo
59 static TypeInfo Unknown() { return TypeInfo(kUnknown); }
61 static TypeInfo Primitive() { return TypeInfo(kPrimitive); }
63 static TypeInfo Number() { return TypeInfo(kNumber); }
65 static TypeInfo Integer32() { return TypeInfo(kInteger3
207 explicit inline TypeInfo(Type t) : type_(t) { } function in class:v8::internal::TypeInfo
[all...]
H A Dtype-info.cc45 TypeInfo TypeInfo::TypeFromValue(Handle<Object> value) {
46 TypeInfo info;
48 info = TypeInfo::Smi();
50 info = TypeInfo::IsInt32Double(HeapNumber::cast(*value)->value())
51 ? TypeInfo::Integer32()
52 : TypeInfo::Double();
54 info = TypeInfo::String();
56 info = TypeInfo::Unknown();
302 TypeInfo TypeFeedbackOracl
[all...]
H A Dic.h720 enum TypeInfo { enum in class:v8::internal::UnaryOpIC
731 static const char* GetName(TypeInfo type_info);
733 static State ToState(TypeInfo type_info);
735 static TypeInfo GetTypeInfo(Handle<Object> operand);
737 static TypeInfo ComputeNewType(TypeInfo type, TypeInfo previous);
744 enum TypeInfo { enum in class:v8::internal::BinaryOpIC
759 static const char* GetName(TypeInfo type_info);
761 static State ToState(TypeInfo type_inf
[all...]
H A Dic.cc2125 const char* UnaryOpIC::GetName(TypeInfo type_info) {
2136 UnaryOpIC::State UnaryOpIC::ToState(TypeInfo type_info) {
2150 UnaryOpIC::TypeInfo UnaryOpIC::GetTypeInfo(Handle<Object> operand) {
2151 ::v8::internal::TypeInfo operand_type =
2152 ::v8::internal::TypeInfo::TypeFromValue(operand);
2163 UnaryOpIC::TypeInfo UnaryOpIC::ComputeNewType(
2164 UnaryOpIC::TypeInfo current_type,
2165 UnaryOpIC::TypeInfo previous_type) {
2190 const char* BinaryOpIC::GetName(TypeInfo type_info) {
2205 BinaryOpIC::State BinaryOpIC::ToState(TypeInfo type_inf
[all...]
/external/chromium_org/v8/src/
H A Dtype-info.h55 class TypeInfo { class in namespace:v8::internal
57 TypeInfo() : type_(kUninitialized) { } function in class:v8::internal::TypeInfo
59 static TypeInfo Unknown() { return TypeInfo(kUnknown); }
61 static TypeInfo Primitive() { return TypeInfo(kPrimitive); }
63 static TypeInfo Number() { return TypeInfo(kNumber); }
65 static TypeInfo Integer32() { return TypeInfo(kInteger3
208 explicit inline TypeInfo(Type t) : type_(t) { } function in class:v8::internal::TypeInfo
[all...]
H A Dtype-info.cc45 TypeInfo TypeInfo::FromValue(Handle<Object> value) {
47 return TypeInfo::Smi();
49 return TypeInfo::IsInt32Double(HeapNumber::cast(*value)->value())
50 ? TypeInfo::Integer32()
51 : TypeInfo::Double();
53 return TypeInfo::String();
55 return TypeInfo::Unknown();
420 TypeInfo TypeFeedbackOracle::IncrementType(CountOperation* expr) {
422 TypeInfo unknow
[all...]
/external/doclava/src/com/google/doclava/
H A DTypeInfo.java23 public class TypeInfo implements Resolvable { class in inherits:Resolvable
28 public TypeInfo(boolean isPrimitive, String dimension, String simpleTypeName, method in class:TypeInfo
37 public TypeInfo(String typeString) { method in class:TypeInfo
46 ArrayList<TypeInfo> generics = new ArrayList<TypeInfo>();
55 TypeInfo info = new TypeInfo(entry);
65 TypeInfo info = new TypeInfo(typeString.substring(entryStartPos, paramEndPos).trim());
133 public static String typeArgumentsName(ArrayList<TypeInfo> arg
[all...]
H A DParameterInfo.java24 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg,
33 TypeInfo type() {
78 TypeInfo mType;
H A DConverter.java80 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.interfaceTypes()))),
100 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.typeParameters()))),
192 private static TypeInfo[] convertTypes(Type[] p) {
195 TypeInfo[] q = new TypeInfo[len];
258 // for (TypeInfo ti : m.getTypeParameters()){
283 // for (TypeInfo ti : m.getTypeParameters()){
338 new ArrayList<TypeInfo>(Arrays.asList(
359 new ArrayList<TypeInfo>(Arrays.asList(
380 new MethodInfo(m.getRawCommentText(), new ArrayList<TypeInfo>(Array
[all...]
H A DInfoBuilder.java134 Iterator<TypeInfo> it = cl.realInterfaceTypes().iterator();
136 TypeInfo outerType = it.next();
285 private static void printTypeName(TypeInfo type) {
290 for (TypeInfo t : type.extendsBounds()) {
300 for (TypeInfo t : type.superBounds()) {
321 private static void printTypeVariables(TypeInfo type) {
325 private static void printTypeVariableList(ArrayList<TypeInfo> typeList) {
328 for (TypeInfo type : typeList) {
484 TypeInfo type = buildType(child);
523 TypeInfo typ
[all...]
H A DAnnotationValueInfo.java59 if (v instanceof TypeInfo) {
60 return ((TypeInfo) v).fullName();
H A DClassInfo.java109 public void init(TypeInfo typeInfo, ArrayList<ClassInfo> interfaces,
110 ArrayList<TypeInfo> interfaceTypes, ArrayList<ClassInfo> innerClasses,
115 TypeInfo superclassType, ArrayList<AnnotationInstanceInfo> annotations) {
152 public void init3(ArrayList<TypeInfo> types, ArrayList<ClassInfo> realInnerClasses) {
161 public ArrayList<TypeInfo> getTypeParameters() {
259 HashSet<String> result = TypeInfo.typeVariables(mTypeInfo.typeArguments());
262 ArrayList<TypeInfo> types = cl.asTypeInfo().typeArguments();
264 TypeInfo.typeVariables(types, result);
305 ArrayList<TypeInfo> realInterfaceTypes() {
309 public void addInterfaceType(TypeInfo typ
[all...]
H A DThrowsTagInfo.java56 public TypeInfo exceptionType() {
H A DMethodInfo.java236 public ArrayList<TypeInfo> getTypeParameters() {
252 public MethodInfo(String rawCommentText, ArrayList<TypeInfo> typeParameters, String name,
257 MethodInfo overriddenMethod, TypeInfo returnType, ArrayList<ParameterInfo> parameters,
319 public TypeInfo returnType() {
512 TypeInfo myType = mine.type();
576 TypeInfo.makeHDF(data, base + ".generic.typeArguments", mTypeParameters, false);
583 HashSet<String> result = TypeInfo.typeVariables(mTypeParameters);
586 ArrayList<TypeInfo> types = cl.asTypeInfo().typeArguments();
588 TypeInfo.typeVariables(types, result);
608 return TypeInfo
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.h24 void *TypeInfo; member in struct:__ubsan::DynamicTypeCacheMissData
H A Dubsan_value.h97 u16 TypeInfo; member in class:__ubsan::TypeDescriptor
126 return isIntegerTy() && (TypeInfo & 1);
129 return isIntegerTy() && !(TypeInfo & 1);
133 return 1 << (TypeInfo >> 1);
139 return TypeInfo;
H A Dubsan_type_hash.cc193 std::type_info *TypeInfo; member in struct:__anon16750::VtablePrefix
200 if (Prefix->Offset > 0 || !Prefix->TypeInfo)
225 dynamic_cast<abi::__class_type_info*>(Vtable->TypeInfo);
244 static_cast<const abi::__class_type_info*>(Vtable->TypeInfo),
246 return DynamicTypeInfo(Vtable->TypeInfo->__type_name, -Vtable->Offset,
H A Dubsan_handlers_cxx.cc32 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java27 import com.google.doclava.TypeInfo;
119 TypeInfo typeInfo = Converter.obtainTypeFromString(qualifiedName) ;
124 ArrayList<TypeInfo> typeParameters = new ArrayList<TypeInfo>();
144 TypeInfo returnType = Converter.obtainTypeFromString(attributes.getValue("return"));
163 new MethodInfo(""/*rawCommentText*/, new ArrayList<TypeInfo>()/*typeParameters*/,
180 TypeInfo type = Converter.obtainTypeFromString(typeName);
202 TypeInfo type = Converter.obtainTypeFromString(typeName);
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.cc168 struct TypeInfo { struct in class:google::protobuf::DynamicMessage
174 // Not owned by the TypeInfo.
189 TypeInfo() : prototype(NULL) {} function in struct:google::protobuf::DynamicMessage::TypeInfo
191 ~TypeInfo() {
196 DynamicMessage(const TypeInfo* type_info);
236 const TypeInfo* type_info_;
242 DynamicMessage::DynamicMessage(const TypeInfo* type_info)
453 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map;
486 const DynamicMessage::TypeInfo** target = &prototypes_->map_[type];
492 DynamicMessage::TypeInfo* type_inf
[all...]
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc166 struct TypeInfo { struct in class:google::protobuf::DynamicMessage
172 // Not owned by the TypeInfo.
184 DynamicMessage(const TypeInfo* type_info);
216 const TypeInfo* type_info_;
222 DynamicMessage::DynamicMessage(const TypeInfo* type_info)
432 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map;
465 const DynamicMessage::TypeInfo** target = &prototypes_->map_[type];
471 DynamicMessage::TypeInfo* type_info = new DynamicMessage::TypeInfo;
/external/v8/src/x64/
H A Dcode-stubs-x64.h93 UnaryOpIC::TypeInfo operand_type = UnaryOpIC::UNINITIALIZED)
104 UnaryOpIC::TypeInfo operand_type_;
110 class OperandTypeInfoBits: public BitField<UnaryOpIC::TypeInfo, 8, 3> {};
172 BinaryOpIC::TypeInfo operands_type,
173 BinaryOpIC::TypeInfo result_type = BinaryOpIC::UNINITIALIZED)
189 BinaryOpIC::TypeInfo operands_type_;
190 BinaryOpIC::TypeInfo result_type_;
197 class OperandTypeInfoBits: public BitField<BinaryOpIC::TypeInfo, 9, 3> {};
198 class ResultTypeInfoBits: public BitField<BinaryOpIC::TypeInfo, 12, 3> {};
/external/clang/include/clang/Sema/
H A DInitialization.h137 TypeSourceInfo *TypeInfo; member in union:clang::InitializedEntity::__anon15009
257 Result.TypeInfo = 0;
262 static InitializedEntity InitializeTemporary(TypeSourceInfo *TypeInfo) { argument
264 TypeInfo->getType());
265 Result.TypeInfo = TypeInfo;
318 Result.TypeInfo = TSI;
338 return TypeInfo;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java32 import org.w3c.dom.TypeInfo;
53 public class DOM2DTMdefaultNamespaceDeclarationNode implements Attr,TypeInfo
113 * @see org.w3c.dom.TypeInfo#getTypeName()
118 * @see org.w3c.dom.TypeInfo#getTypeNamespace()
123 * @see or.gw3c.dom.TypeInfo#isDerivedFrom(String,String,int)
129 public TypeInfo getSchemaTypeInfo() { return this; }
/external/clang/lib/Driver/
H A DTypes.cpp19 struct TypeInfo { struct
26 static const TypeInfo TypeInfos[] = {
34 static const TypeInfo &getInfo(unsigned id) {

Completed in 536 milliseconds

123