HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 101 - 125 of 689) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/xml/
XPathVariableReference.h 43 virtual Value::Type resultType() const { ASSERT_NOT_REACHED(); return Value::NumberValue; }
  /external/webkit/WebKit/chromium/src/
WebCursorInfo.cpp 42 type = static_cast<Type>(cursor.impl().type());
  /dalvik/dx/src/com/android/dx/dex/file/
TypeIdsSection.java 21 import com.android.dx.rop.type.Type;
29 * Type identifiers list section of a {@code .dex} file.
35 private final TreeMap<Type, TypeIdItem> typeIds;
45 typeIds = new TreeMap<Type, TypeIdItem>();
63 Type type = ((CstType) cst).getClassType(); local
64 IndexedItem result = typeIds.get(type);
85 throw new UnsupportedOperationException("too many type ids");
100 * @param type {@code non-null;} the type to inter
    [all...]
ClassDefsSection.java 21 import com.android.dx.rop.type.Type;
22 import com.android.dx.rop.type.TypeList;
35 * {@code non-null;} map from type constants for classes to {@link
38 private final TreeMap<Type, ClassDefItem> classDefs;
51 classDefs = new TreeMap<Type, ClassDefItem>();
74 Type type = ((CstType) cst).getClassType(); local
75 IndexedItem result = classDefs.get(type);
111 Type type local
    [all...]
  /frameworks/base/libs/rs/
rsType.h 28 class Type : public ObjectBase
31 Type(Context *);
32 virtual ~Type();
34 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
127 Type(const Type &);
145 Vector<Type *> mTypes;
rsAllocation.h 33 // By policy this allocation will hold a pointer to the type
35 Allocation(Context *rsc, const Type *);
36 Allocation(Context *rsc, const Type *, void *bmp, void *callbackData, RsBitmapCallback_t callback);
48 const Type * getType() const {return mType.get();}
81 ObjectBaseRef<const Type> mType;
98 // which can be used by a driver to pick the best memory type.
120 void init(Context *rsc, const Type *);
  /dalvik/dx/src/com/android/dx/cf/code/
ValueAwareMachine.java 20 import com.android.dx.rop.type.Prototype;
21 import com.android.dx.rop.type.Type;
22 import com.android.dx.rop.type.TypeBearer;
27 * smart/realistic reference type calculations.
149 Type type = ((TypeBearer) getAuxCst()).getType(); local
150 if (type == Type.VOID) {
153 setResult(type);
162 Type type = ((TypeBearer) getAuxCst()).getType(); local
171 Type type = ((CstType) getAuxCst()).getClassType(); local
178 Type type = ((CstType) getAuxCst()).getClassType(); local
183 Type type = ((CstType) getAuxCst()).getClassType(); local
    [all...]
BaseMachine.java 22 import com.android.dx.rop.type.Prototype;
23 import com.android.dx.rop.type.StdTypeList;
24 import com.android.dx.rop.type.Type;
25 import com.android.dx.rop.type.TypeBearer;
32 * ignores the distinction between {@link Type} and {@link
45 /** {@code null-ok;} type of the operation, if salient */
46 private Type auxType;
144 ", expected type " + types.getType(i).toHuman() +
150 public final void popArgs(Frame frame, Type type)
    [all...]
  /external/icu4c/common/unicode/
localpointer.h 267 * like LocalPointer<Type> except that this subclass will use the closeFunction
286 #define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction) \
287 class LocalPointerClassName : public LocalPointerBase<Type> { \
289 explicit LocalPointerClassName(Type *p=NULL) : LocalPointerBase<Type>(p) {} \
291 void adoptInstead(Type *p) { \
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericArrayTypeTest.java 27 import java.lang.reflect.Type;
49 Type genericType = field.getGenericType();
51 Type componentType = ((GenericArrayType) genericType).getGenericComponentType();
72 Type genericType = field.getGenericType();
76 Type componentType = arrayType.getGenericComponentType();
BoundedGenericMethodsTests.java 25 import java.lang.reflect.Type;
29 * Tests bounded type parameters declared on methods.
50 * Tests whether the type parameter is upper bounded by BoundedGenericMethods.
61 Type[] bounds = typeParameter.getBounds();
63 Type bound = bounds[0];
68 * Tests whether the specified method declares a parameter with the type of
69 * the type parameter.
77 Type genericParameterType = method.getGenericParameterTypes()[0];
83 Type[] paramBounds = typeVariable.getBounds();
85 Type paramBound = paramBounds[0]
    [all...]
ParameterizedTypeTest.java 27 import java.lang.reflect.Type;
60 Type genericSuperclass = clazz.getGenericSuperclass();
66 Type[] actualTypeArguments = parameterizedType.getActualTypeArguments();
96 Type genericSuperclass = clazz.getGenericSuperclass();
102 Type[] actualTypeArguments = parameterizedType.getActualTypeArguments();
140 Type[] actualTypeArguments = parameterizedType.getActualTypeArguments();
  /external/webkit/WebKit/android/
TimeCounter.cpp 108 void TimeCounter::record(enum Type type, const char* functionName)
110 recordNoCounter(type, functionName);
111 sCounter[type]++;
114 void TimeCounter::recordNoCounter(enum Type type, const char* functionName)
117 uint32_t elapsed = time - sStartTime[type];
118 sTotalTimeUsed[type] += elapsed;
130 for (Type type = (Type) 0; type < TotalTimeCounterCount; type
    [all...]
  /external/webkit/JavaScriptCore/wtf/
TypeTraits.cpp 114 COMPILE_ASSERT((IsSameType<RemoveTemplate<TestBaseClass<int>, TestBaseClass>::Type, int>::value), WTF_Test_RemoveTemplate);
115 COMPILE_ASSERT((IsSameType<RemoveTemplate<int, TestBaseClass>::Type, int>::value), WTF_Test_RemoveTemplate_WithoutTemplate);
118 COMPILE_ASSERT((IsSameType<bool, RemoveConst<const bool>::Type>::value), WTF_test_RemoveConst_const_bool);
119 COMPILE_ASSERT((!IsSameType<bool, RemoveConst<volatile bool>::Type>::value), WTF_test_RemoveConst_volatile_bool);
121 COMPILE_ASSERT((IsSameType<bool, RemoveVolatile<bool>::Type>::value), WTF_test_RemoveVolatile_bool);
122 COMPILE_ASSERT((!IsSameType<bool, RemoveVolatile<const bool>::Type>::value), WTF_test_RemoveVolatile_const_bool);
123 COMPILE_ASSERT((IsSameType<bool, RemoveVolatile<volatile bool>::Type>::value), WTF_test_RemoveVolatile_volatile_bool);
125 COMPILE_ASSERT((IsSameType<bool, RemoveConstVolatile<bool>::Type>::value), WTF_test_RemoveConstVolatile_bool);
126 COMPILE_ASSERT((IsSameType<bool, RemoveConstVolatile<const bool>::Type>::value), WTF_test_RemoveConstVolatile_const_bool);
127 COMPILE_ASSERT((IsSameType<bool, RemoveConstVolatile<volatile bool>::Type>::value), WTF_test_RemoveConstVolatile_volatile_bool)
    [all...]
  /external/skia/include/views/
SkMetaData.h 81 enum Type {
107 element's type is returned (if not null), and the number of data values
110 const char* next(Type*, int* count);
122 Type fType;
148 const Rec* find(const char name[], Type) const;
149 void* set(const char name[], const void* data, size_t len, Type, int count);
150 bool remove(const char name[], Type);
  /frameworks/base/graphics/java/android/renderscript/
Program.java 36 Type mConstants[];
74 Type mConstants[];
75 Type mTextures[];
87 mConstants = new Type[MAX_CONSTANT];
114 public int addConstant(Type t) throws IllegalStateException {
136 p.mConstants = new Type[mConstantCount];
  /external/bluetooth/glib/gio/
gioenumtypes.c.template 19 static const G@Type@Value values[] = {
30 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
  /external/skia/src/images/
SkImageEncoder.cpp 37 bool SkImageEncoder::EncodeFile(const char file[], const SkBitmap& bm, Type t,
43 bool SkImageEncoder::EncodeStream(SkWStream* stream, const SkBitmap& bm, Type t,
  /external/jhead/
jpgfile.c 156 Sections[SectionsRead].Type = marker;
223 Sections[SectionsRead].Type = PSEUDO_IMAGE_MARKER;
258 Sections[SectionsRead-1].Type = M_XMP; // Change tag for internal purposes.
494 if (Sections[a].Type == M_EXIF && ExifKeeper.Type == 0){
496 }else if (Sections[a].Type == M_XMP && XmpKeeper.Type == 0){
498 }else if (Sections[a].Type == M_COM && CommentKeeper.Type == 0){
500 }else if (Sections[a].Type == M_IPTC && IptcKeeper.Type == 0)
    [all...]
  /external/webkit/JavaScriptCore/wrec/
Escapes.h 41 enum Type {
49 Escape(Type type)
50 : m_type(type)
54 Type type() const { return m_type; } function in class:JSC::WREC::Escape
57 Type m_type;
72 ASSERT(escape.type() == PatternCharacter);
91 ASSERT(escape.type() == CharacterClass);
112 ASSERT(escape.type() == Backreference)
    [all...]
  /external/webkit/WebCore/rendering/
SVGMarkerData.h 34 enum Type {
41 SVGMarkerData(const Type& type = Unknown, SVGResourceMarker* marker = 0)
42 : m_type(type)
77 void updateTypeAndMarker(const Type& type, SVGResourceMarker* marker)
79 m_type = type;
93 switch (element->type) {
123 Type m_type;
  /external/webkit/WebCore/svg/
SVGFEColorMatrixElement.h 42 DECLARE_ANIMATED_PROPERTY(SVGFEColorMatrixElement, SVGNames::typeAttr, int, Type, type)
  /dalvik/dx/src/com/android/dx/rop/code/
Rop.java 19 import com.android.dx.rop.type.StdTypeList;
20 import com.android.dx.rop.type.Type;
21 import com.android.dx.rop.type.TypeList;
56 * {@code non-null;} result type of this operation; {@link Type#VOID} for
59 private final Type result;
84 * @param result {@code non-null;} result type of this operation; {@link
85 * Type#VOID} for no-result operations
94 public Rop(int opcode, Type result, TypeList sources
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBaseMethodRef.java 19 import com.android.dx.rop.type.Prototype;
20 import com.android.dx.rop.type.Type;
21 import com.android.dx.rop.type.TypeBearer;
24 * Base class for constants of "methodish" type.
26 * <p><b>Note:</b> As a {@link TypeBearer}, this class bears the return type
43 * @param definingClass {@code non-null;} the type of the defining class
44 * @param nat {@code non-null;} the name-and-type
80 Type thisType = getDefiningClass().getClassType();
103 * In this case, this method returns the <i>return type</i> of this method
    [all...]
CstInteger.java 19 import com.android.dx.rop.type.Type;
23 * Constants of type {@code CONSTANT_Integer_info}.
93 public Type getType() {
94 return Type.INT;

Completed in 495 milliseconds

1 2 3 45 6 7 8 91011>>