HomeSort by relevance Sort by last modified time
    Searched full:objecttype (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/angle/src/common/
RefCountObject.h 56 template <class ObjectType>
60 void set(ObjectType *newObject) { RefCountObjectBindingPointer::set(newObject); }
61 ObjectType *get() const { return static_cast<ObjectType*>(RefCountObjectBindingPointer::get()); }
62 ObjectType *operator -> () const { return get(); }
  /external/proguard/src/proguard/classfile/attribute/preverification/
ObjectType.java 32 public class ObjectType extends VerificationType
39 * Creates an uninitialized ObjectType.
41 public ObjectType()
47 * Creates an ObjectType that points to the given class constant.
49 public ObjectType(int u2classIndex)
90 ObjectType other = (ObjectType)object;
VerificationTypeFactory.java 106 * Creates a new ObjectType of the given type.
108 public static ObjectType createObjectType(int classIndex)
110 return new ObjectType(classIndex);
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
APPLE_object_purgeable.xml 17 <param name="objectType" type="GLenum"/>
24 <param name="objectType" type="GLenum"/>
31 <param name="objectType" type="GLenum"/>
  /external/mesa3d/src/mapi/glapi/gen/
APPLE_object_purgeable.xml 17 <param name="objectType" type="GLenum"/>
24 <param name="objectType" type="GLenum"/>
31 <param name="objectType" type="GLenum"/>
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectPool.java 39 private final Class objectType;
52 objectType = type;
65 objectType = ObjectFactory.findProviderClass(
85 objectType = type;
95 objectType = null;
136 return objectType.newInstance();
165 // if (objectType.isInstance(obj))
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 41 public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType);
51 public void visitStackObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType);
61 public void visitVariablesObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType);
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 230 ObjectType[] exceptions;
232 MethodSignature(TypeParameter[] tp, Type[] p, Type ret, ObjectType[] ex) {
264 public ObjectType[] getExceptionTypes() { return exceptions; }
291 ObjectType superClass;
292 ObjectType[] superInterfaces;
294 TypeParameter(String sig, int nb, int ne, ObjectType sc, ObjectType[] si) {
312 public ObjectType getClassBound() { return superClass; }
319 public ObjectType[] getInterfaceBound() { return superInterfaces; }
361 ObjectType arg
    [all...]
  /frameworks/base/core/java/android/net/
LinkQualityInfo.java 97 public void writeToParcel(Parcel dest, int flags, int objectType) {
98 dest.writeInt(objectType);
116 int objectType = in.readInt();
117 if (objectType == OBJECT_TYPE_LINK_QUALITY_INFO) {
121 } else if (objectType == OBJECT_TYPE_WIFI_LINK_QUALITY_INFO) {
123 } else if (objectType == OBJECT_TYPE_MOBILE_LINK_QUALITY_INFO) {
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
bufferobj.h 153 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
156 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
159 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name, GLenum pname, GLint* params);
  /external/mesa3d/src/mesa/main/
bufferobj.h 153 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
156 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
159 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name, GLenum pname, GLint* params);
  /external/chromium_org/media/mp4/
es_descriptor.h 21 enum ObjectType {
  /external/chromium_org/tools/json_schema_compiler/test/
error_generation.json 32 "id": "ObjectType",
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/
cref_1.pass.cpp 14 // template <ObjectType T> reference_wrapper<const T> cref(const T& t);
cref_2.pass.cpp 14 // template <ObjectType T> reference_wrapper<const T> cref(reference_wrapper<T> t);
ref_1.fail.cpp 14 // template <ObjectType T> reference_wrapper<T> ref(T& t);
ref_1.pass.cpp 14 // template <ObjectType T> reference_wrapper<T> ref(T& t);
ref_2.pass.cpp 14 // template <ObjectType T> reference_wrapper<T> ref(reference_wrapper<T>t);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_types.py 40 'ObjectType' : 'object',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_types.py 40 'ObjectType' : 'object',
  /external/javassist/src/main/javassist/
CtField.java 535 * @param objectType the class instantiated for the initial value.
537 public static Initializer byNew(CtClass objectType) {
539 i.objectType = objectType;
560 * @param objectType the class instantiated for the initial value.
564 public static Initializer byNew(CtClass objectType,
567 i.objectType = objectType;
589 * @param objectType the class instantiated for the initial value.
594 public static Initializer byNewWithParams(CtClass objectType) {
    [all...]
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 606 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
608 visitAnyVerificationType(clazz, method, codeAttribute, offset, objectType);
660 public void visitStackObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType)
662 visitObjectType(clazz, method, codeAttribute, offset, objectType);
715 public void visitVariablesObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType)
717 visitObjectType(clazz, method, codeAttribute, offset, objectType);
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 312 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
318 if (!ObjectType.isNull()) {
321 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
322 LookupCtx = computeDeclContext(ObjectType);
323 isDependent = ObjectType->isDependentType();
394 QualType ObjectType,
405 if (!ObjectType.isNull()) {
408 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
409 LookupCtx = computeDeclContext(ObjectType);
410 isDependent = ObjectType->isDependentType()
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard.h 142 // ObjectType designates the type of data to be stored in the clipboard. This
144 // is defined by FormatType. A single ObjectType might be represented by
146 // ObjectType maps to "text/plain", "STRING", and several other formats. On
148 enum ObjectType {
158 // ObjectMap is a map from ObjectType to associated data.
159 // The data is organized differently for each ObjectType. The following
180 typedef std::map<int /* ObjectType */, ObjectMapParams> ObjectMap;
319 void DispatchObject(ObjectType type, const ObjectMapParams& params);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/specialized.addressof/
addressof.pass.cpp 12 // template <ObjectType T> T* addressof(T& r);

Completed in 2048 milliseconds

1 2 3 4 5