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

1 2 3 4

  /libcore/luni/src/main/java/javax/xml/validation/
TypeInfoProvider.java 21 import org.w3c.dom.TypeInfo;
39 * @see org.w3c.dom.TypeInfo
54 * <p>Returns the immutable {@link TypeInfo} object for the current element.</p>
65 * An immutable {@link TypeInfo} object that represents the
68 * {@link TypeInfo} longer than the callback scope.
77 public abstract TypeInfo getElementTypeInfo();
80 * Returns the immutable {@link TypeInfo} object for the specified
100 * An immutable {@link TypeInfo} object that represents the
103 * {@link TypeInfo} longer than the callback scope.
109 public abstract TypeInfo getAttributeTypeInfo(int index)
    [all...]
  /external/v8/src/
type-info.h 55 class TypeInfo {
57 TypeInfo() : type_(kUninitialized) { }
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(kInteger32);
    [all...]
type-info.cc 45 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 TypeFeedbackOracle::CompareType(CompareOperation* expr)
    [all...]
ic.h 720 enum TypeInfo {
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 {
759 static const char* GetName(TypeInfo type_info);
761 static State ToState(TypeInfo type_info)
    [all...]
  /external/chromium_org/v8/src/
type-info.h 55 class TypeInfo {
57 TypeInfo() : type_(kUninitialized) { }
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(kInteger32);
    [all...]
type-info.cc 45 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 unknown = TypeInfo::Unknown()
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Attr.java 225 public TypeInfo getSchemaTypeInfo();
TypeInfo.java 16 * The <code>TypeInfo</code> interface represents a type referenced from
90 * <code>TypeInfo</code>.
94 public interface TypeInfo {
161 * type definition, i.e. the <code>TypeInfo</code> on which the method
Element.java 367 public TypeInfo getSchemaTypeInfo();
  /external/doclava/src/com/google/doclava/
TypeInfo.java 23 public class TypeInfo implements Resolvable {
28 public TypeInfo(boolean isPrimitive, String dimension, String simpleTypeName,
37 public TypeInfo(String typeString) {
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> args, HashSet<String> typeVars)
    [all...]
ParameterInfo.java 24 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg,
33 TypeInfo type() {
78 TypeInfo mType;
Converter.java 80 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>(Arrays.asList(Converter.convertTypes(m.typeParameters()))),
    [all...]
InfoBuilder.java 134 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 type = buildType((ParseTree) o)
    [all...]
AnnotationValueInfo.java 59 if (v instanceof TypeInfo) {
60 return ((TypeInfo) v).fullName();
  /external/compiler-rt/lib/ubsan/
ubsan_handlers_cxx.h 24 void *TypeInfo;
ubsan_value.h 97 u16 TypeInfo;
126 return isIntegerTy() && (TypeInfo & 1);
129 return isIntegerTy() && !(TypeInfo & 1);
133 return 1 << (TypeInfo >> 1);
139 return TypeInfo;
ubsan_type_hash.cc 193 std::type_info *TypeInfo;
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,
ubsan_handlers_cxx.cc 32 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 113 static class TypeInfo {
124 public TypeInfo(String uiName,
242 * TypeInfo, information for each "type" of file that can be created.
244 private static final TypeInfo[] sTypes = {
245 new TypeInfo(
313 new TypeInfo("Values", // UI name
322 new TypeInfo("Drawable", // UI name
331 new TypeInfo("Menu", // UI name
340 new TypeInfo("Color List", // UI name
349 new TypeInfo("Property Animation", // UI nam
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 23 import org.w3c.dom.TypeInfo;
114 public TypeInfo getSchemaTypeInfo() {
  /packages/apps/Mms/src/com/android/mms/dom/
AttrImpl.java 24 import org.w3c.dom.TypeInfo;
101 public TypeInfo getSchemaTypeInfo() {
ElementImpl.java 25 import org.w3c.dom.TypeInfo;
155 public TypeInfo getSchemaTypeInfo() {
  /external/doclava/src/com/google/doclava/apicheck/
XmlApiFile.java 27 import com.google.doclava.TypeInfo;
119 TypeInfo typeInfo = Converter.obtainTypeFromString(qualifiedName) ;
120 mCurrentClass.setTypeInfo(typeInfo);
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)
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
dynamic_message.cc 168 struct TypeInfo {
174 // Not owned by the TypeInfo.
189 TypeInfo() : prototype(NULL) {}
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_info = new DynamicMessage::TypeInfo
    [all...]
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 166 struct TypeInfo {
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;

Completed in 399 milliseconds

1 2 3 4