| /external/clang/test/Parser/ |
| namelookup-bug-2.c | 4 typedef int Object; 6 struct Object {int i1; } *P; 9 struct Object { int i2; } *X; 10 Object: 12 Object a;
|
| /external/jsr305/ri/src/main/java/javax/annotation/meta/ |
| TypeQualifier.java | 25 Class<?> applicableTo() default Object.class;
|
| /external/chromium_org/tools/gyp/test/win/ |
| gyptest-cl-function-level-linking.py | 31 def Object(proj, obj): 41 test.built_file_path(Object('test_fll_on', 'function-level-linking.obj'), 47 test.built_file_path(Object('test_fll_off', 'function-level-linking.obj'),
|
| /external/chromium_org/v8/test/mjsunit/harmony/ |
| string-endswith.js | 71 msg: "Empty object {}", val: {} 138 Object.prototype[1] = 2; // try to break `arguments[1]`
|
| string-startswith.js | 71 msg: "Empty object {}", val: {} 137 Object.prototype[1] = 2; // try to break `arguments[1]`
|
| /external/chromium_org/v8/test/mjsunit/ |
| obj-construct.js | 30 function Object() {
|
| undeletable-functions.js | 86 CheckEcmaSemantics(Object.prototype, array, "Object prototype"); 88 var old_Object_prototype = Object.prototype; 91 Object.prototype = new_Object_prototype; 92 assertEquals(old_Object_prototype, Object.prototype); 136 var hasOwnProperty = Object.prototype.hasOwnProperty;
|
| /external/chromium_org/v8/test/webkit/ |
| array-holes.js | 105 Object.prototype[1] = "peekaboo"; 134 delete Object.prototype[1];
|
| /external/deqp/framework/delibs/decpp/ |
| deUniquePtr.cpp | 34 class Object 37 Object (bool& exists) 43 ~Object (void) 56 void operator() (Object* ptr) 66 MovePtr<Object> createObject (bool& exists) 68 UniquePtr<Object> objectPtr(new Object(exists)); 80 UniquePtr<Object> ptr(new Object(exists)); 92 UniquePtr<Object> ptr(new Object(exists)) [all...] |
| deSharedPtr.cpp | 41 class Object 44 Object (bool& exists) 50 virtual ~Object (void) 59 class DerivedObject : public Object 63 : Object(exists) 71 SharedPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists) 88 SharedPtr<Object> ptrA(m_ptr); 90 SharedPtr<Object> ptrB; 92 ptrA = SharedPtr<Object>(); 100 SharedPtr<Object> m_ptr [all...] |
| /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
| string-tagcloud.js | 38 if (!Object.prototype.toJSONString) { 49 case 'object': 99 Object.prototype.toJSONString = function (w) { 111 case 'object': 135 Object.prototype.hasOwnProperty.apply(this, [k])) { 138 case 'object': 182 if (v && typeof v === 'object') { 184 if (Object.prototype.hasOwnProperty.apply(v, [i])) { [all...] |
| /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
| string-tagcloud.js | 38 if (!Object.prototype.toJSONString) { 49 case 'object': 99 Object.prototype.toJSONString = function (w) { 111 case 'object': 135 Object.prototype.hasOwnProperty.apply(this, [k])) { 138 case 'object': 182 if (v && typeof v === 'object') { 184 if (Object.prototype.hasOwnProperty.apply(v, [i])) { [all...] |
| /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/ |
| string-tagcloud.js | 38 if (!Object.prototype.toJSONString) { 49 case 'object': 99 Object.prototype.toJSONString = function (w) { 111 case 'object': 135 Object.prototype.hasOwnProperty.apply(this, [k])) { 138 case 'object': 182 if (v && typeof v === 'object') { 184 if (Object.prototype.hasOwnProperty.apply(v, [i])) { [all...] |
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
| utilities.js | 34 * @param {!Object} obj 37 Object.isEmpty = function(obj) 45 * @param {!Object.<string,!T>} obj 49 Object.values = function(obj) 51 var result = Object.keys(obj); 442 Object.defineProperty(Array.prototype, "remove", 467 Object.defineProperty(Array.prototype, "keySet", 470 * @return {!Object.<string, boolean>} 482 Object.defineProperty(Array.prototype, "pushAll", 495 Object.defineProperty(Array.prototype, "rotate" [all...] |
| /dalvik/dx/tests/089-dex-define-object/ |
| Object.java | 19 public class Object { 20 public Object() { 24 public boolean equals(Object o) { 32 public final native Class<? extends Object> getClass();
|
| /external/llvm/lib/Object/ |
| ELFYAML.cpp | 14 #include "llvm/Object/ELFYAML.h" 246 const auto *Object = static_cast<ELFYAML::Object *>(IO.getContext()); 247 assert(Object && "The IO context is not initialized"); 250 switch (Object->Header.Machine) { 383 const auto *Object = static_cast<ELFYAML::Object *>(IO.getContext()); 384 assert(Object && "The IO context is not initialized"); 386 switch (Object->Header.Machine) { 731 void MappingTraits<ELFYAML::Object>::mapping(IO &IO, ELFYAML::Object &Object) [all...] |
| /external/chromium_org/content/shell/tools/plugin/ |
| PluginTest.h | 174 struct Object : NPObject { 177 Object* object = local 178 static_cast<Object*>(pluginTest->NPN_CreateObject(npClass())); 180 object->m_pluginTest = pluginTest; 181 return object; 224 Object() : m_pluginTest(0) {} 226 virtual ~Object() {}
|
| /external/deqp/framework/common/ |
| tcuThreadUtil.cpp | 77 Object::Object (const char* type, SharedPtr<Event> e) 83 Object::~Object (void) 87 void Object::read (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps) 96 void Object::modify (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps) 108 // Clear read dependencies of last "version" of this object 248 : Object("DataBlock", event) 263 readObject(SharedPtr<Object>(a)); 264 readObject(SharedPtr<Object>(b)) [all...] |
| /external/llvm/unittests/Support/ |
| ArrayRecyclerTest.cpp | 19 struct Object { 21 Object *Other; 23 typedef ArrayRecycler<Object> ARO; 53 ArrayRecycler<Object> DUT; 56 Object *A1 = DUT.allocate(Cap, Allocator); 60 Object *A2 = DUT.allocate(Cap, Allocator); 64 Object *A3 = DUT.allocate(Cap, Allocator); 84 Object *A2x = DUT.allocate(Cap, Allocator); 93 Object *A3x = DUT.allocate(Cap, Allocator); 95 Object *A1x = DUT.allocate(Cap, Allocator) [all...] |
| /libcore/libart/src/main/java/java/lang/ |
| Object.java | 43 * @Override public boolean equals(Object o) { 50 * // Return false if the other object has the wrong type. 131 public class Object { 140 // type int instead of Object to go with the alphabetical/by-type 146 * Constructs a new instance of {@code Object}. 148 public Object() { 152 * Creates and returns a copy of this {@code Object}. The default 155 * object references) from this instance to the new instance. A "deep" copy, 161 * @return a copy of this object. 163 * if this object's class does not implement the {@cod [all...] |
| /art/runtime/mirror/ |
| object.h | 56 // compute an offset for the Set/Get methods defined in Object that can safely access fields. 63 // C++ mirror of java.lang.Object 64 class MANAGED LOCKABLE Object { 66 // The number of vtable entries in java.lang.Object. 69 // The size of the java.lang.Class representing a java.lang.Object. 72 // Size of an instance of java.lang.Object. 74 return sizeof(Object); 78 return OFFSET_OF_OBJECT_MEMBER(Object, klass_); 88 Object* GetReadBarrierPointer() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 89 void SetReadBarrierPointer(Object* rb_ptr) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) [all...] |
| /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
| v8-deltablue.js | 43 Object.prototype.inherits = function (shuper) { 326 var Direction = new Object();
|
| /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
| v8-deltablue.js | 43 Object.prototype.inheritsFrom = function (shuper) { 326 var Direction = new Object();
|
| /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
| v8-deltablue.js | 43 Object.prototype.inheritsFrom = function (shuper) { 326 var Direction = new Object();
|
| /external/chromium_org/v8/benchmarks/ |
| deltablue.js | 49 Object.prototype.inheritsFrom = function (shuper) { 332 var Direction = new Object();
|