/external/llvm/include/llvm/Object/ |
Error.h | 1 //===- Error.h - system_error extensions for Object -------------*- C++ -*-===// 10 // This declares a new error_category for the Object library. 20 namespace object { namespace in namespace:llvm 42 } // end namespace object. 44 template <> struct is_error_code_enum<object::object_error> : true_type { }; 46 template <> struct is_error_code_enum<object::object_error::Impl> : true_type {
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_handle_table.h | 64 void (*destroy)(void *object)); 68 * Add a new object. 74 void *object); 82 void *object); 85 * Fetch an existing object.
|
/external/proguard/src/proguard/evaluation/value/ |
TopValue.java | 60 // Implementations for Object. 62 public boolean equals(Object object) 64 return object != null && 65 this.getClass() == object.getClass();
|
/art/runtime/ |
sirt_ref.h | 29 SirtRef(Thread* self, T* object) : self_(self), sirt_(object) { 42 void reset(T* object = NULL) { 43 sirt_.SetReference(0, object);
|
/external/chromium_org/base/files/ |
file.cc | 43 : file_(other.object->TakePlatformFile()), 44 error_(other.object->error()), 45 created_(other.object->created()), 46 async_(other.object->async_) { 54 if (this != other.object) { 56 SetPlatformFile(other.object->TakePlatformFile()); 57 error_ = other.object->error(); 58 created_ = other.object->created(); 59 async_ = other.object->async_;
|
/external/chromium_org/ppapi/cpp/dev/ |
find_dev.cc | 25 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); local 26 if (!object) 28 bool return_value = static_cast<Find_Dev*>(object)->StartFind( 34 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); local 35 if (object) 36 static_cast<Find_Dev*>(object)->SelectFindResult(PP_ToBool(forward)); 40 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); local 41 if (object) 42 static_cast<Find_Dev*>(object)->StopFind();
|
widget_client_dev.cc | 28 void* object = Instance::GetPerInstanceObject(instance, kPPPWidgetInterface); local 29 if (!object) 31 return static_cast<WidgetClient_Dev*>(object)->InvalidateWidget( 46 void* object = local 48 if (!object) 50 return static_cast<WidgetClient_Dev*>(object)->ScrollbarValueChanged( 57 void* object = local 59 if (!object) 61 return static_cast<WidgetClient_Dev*>(object)->ScrollbarOverlayChanged(
|
/external/chromium_org/remoting/host/plugin/ |
host_plugin_utils.h | 38 explicit ScopedRefNPObject(NPObject* object); 39 explicit ScopedRefNPObject(const ScopedRefNPObject& object); 42 // Release the held reference and replace it with |object|, incrementing 44 ScopedRefNPObject& operator=(NPObject* object); 45 ScopedRefNPObject& operator=(const ScopedRefNPObject& object);
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/ |
PluginScriptableNPObjectInvokeDefault.cpp | 30 // A test where the plug-ins scriptable object either has or doesn't have an invokeDefault function. 39 struct NPObjectWithoutInvokeDefault : Object<NPObjectWithoutInvokeDefault> { }; 41 struct NPObjectWithInvokeDefault : Object<NPObjectWithInvokeDefault> { 55 NPObject* object; 57 object = NPObjectWithInvokeDefault::create(this); 59 object = NPObjectWithoutInvokeDefault::create(this); 61 *(NPObject**)value = object;
|
/external/chromium_org/tools/grit/grit/tool/ |
postprocess_interface.py | 10 class PostProcessor(object):
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/ |
Assert.java | 81 * Asserts that the given object is <code>null</code>. If this is not the case, some kind of 84 * @param object 87 public static void isNull(Object object) { 88 isNull(object, ""); //$NON-NLS-1$ 92 * Asserts that the given object is <code>null</code>. If this is not the case, some kind of 96 * @param object 101 public static void isNull(Object object, String message) { 102 if (object != null) [all...] |
/external/llvm/lib/DebugInfo/ |
DIContext.cpp | 16 DIContext *DIContext::getDWARFContext(object::ObjectFile *Obj) {
|
/external/llvm/test/MC/ELF/ |
undef.s | 11 .type .Lsym5,@object 12 .type sym6,@object 35 // CHECK-NEXT: Type: Object
|
/external/llvm/tools/llvm-ar/ |
Makefile | 12 LINK_COMPONENTS := bitreader support object
|
/external/llvm/tools/llvm-nm/ |
Makefile | 12 LINK_COMPONENTS := bitreader object
|
/external/llvm/tools/llvm-readobj/ |
Makefile | 12 LINK_COMPONENTS := bitreader object all-targets
|
ObjDumper.h | 15 namespace object { namespace in namespace:llvm 47 error_code createCOFFDumper(const object::ObjectFile *Obj, 51 error_code createELFDumper(const object::ObjectFile *Obj, 55 error_code createMachODumper(const object::ObjectFile *Obj,
|
/external/llvm/tools/llvm-size/ |
Makefile | 12 LINK_COMPONENTS := object
|
/external/llvm/tools/macho-dump/ |
Makefile | 12 LINK_COMPONENTS := support object
|
/external/llvm/tools/obj2yaml/ |
Makefile | 12 LINK_COMPONENTS := object
|
/external/llvm/tools/yaml2obj/ |
Makefile | 12 LINK_COMPONENTS := object
|
/external/llvm/unittests/Object/ |
Makefile | 1 ##===- unittests/Object/Makefile ---------------------------*- Makefile -*-===## 11 TESTNAME = Object 12 LINK_COMPONENTS := object
|
/libcore/luni/src/main/java/java/util/ |
Collection.java | 48 * Attempts to add {@code object} to the contents of this 51 * After this method finishes successfully it is guaranteed that the object 58 * objects, but it has to specify this in the documentation. If the object 62 * If a collection does not yet contain an object that is to be added and 63 * adding the object fails, this method <i>must</i> throw an appropriate 68 * @param object 69 * the object to add. 76 * if the class of the object is inappropriate for this 79 * if the object cannot be added to this {@code Collection}. 83 public boolean add(E object); [all...] |
Comparator.java | 24 * to be <i>consistent with equals</i>, its {code #compare(Object, Object)} 47 * an {@code Object}. 49 * a second {@code Object} to compare with {@code lhs}. 58 * Compares this {@code Comparator} with the specified {@code Object} and indicates whether they 59 * are equal. In order to be equal, {@code object} must represent the same object 65 * @param object 66 * the {@code Object} to compare with this comparator. 67 * @return boolean {@code true} if specified {@code Object} is the same as thi [all...] |
Set.java | 29 * Adds the specified object to this set. The set is not modified if it 30 * already contains the object. 32 * @param object 33 * the object to add. 38 * when the class of the object is inappropriate for this set. 40 * when the object cannot be added to this set. 42 public boolean add(E object); 54 * when the class of an object is inappropriate for this set. 56 * when an object cannot be added to this set. 71 * Searches this set for the specified object [all...] |