| /external/eigen/unsupported/Eigen/src/BVH/ |
| KdBVH.h | 59 * \param _Object The object type that lives in the hierarchy. It must have value semantics. Either bounding_box(_Object) must 71 typedef _Object Object; 72 typedef std::vector<Object, aligned_allocator<Object> > ObjectList; 78 typedef const Object *ObjectIterator; 82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */ 85 /** Given an iterator range over \a Object references and an iterator range over their bounding boxes, constructs the BVH */ 88 /** Given an iterator range over \a Object references, constructs the BVH, overwriting whatever is in there currently. 89 * Requires that bounding_box(Object) return a Volume. * [all...] |
| /external/llvm/include/llvm/Object/ |
| ELFYAML.h | 19 #include "llvm/Object/YAML.h" 29 // reading/generating binary object files. 72 object::yaml::BinaryRef Content; 76 struct Object { 156 struct MappingTraits<ELFYAML::Object> { 157 static void mapping(IO &IO, ELFYAML::Object &Object);
|
| /external/skia/include/utils/ |
| SkJSON.h | 29 class Object { 34 Object(); 35 Object(const Object&); 36 ~Object(); 40 * parameter is copied, but ownership of the Object parameter is 41 * transferred. The Object parameter may be null, but the name must 44 void addObject(const char name[], Object* value); 80 * Return the number of slots/fields in this object. These can be 89 bool findObject(const char name[], Object** = NULL) const [all...] |
| /frameworks/compile/mclinker/include/mcld/ |
| LinkerConfig.h | 38 Object,
|
| /frameworks/compile/mclinker/include/mcld/MC/ |
| MCLDInput.h | 38 Object,
|
| /libcore/luni/src/test/java/libcore/java/lang/ref/ |
| FinalizeTest.java | 32 fail("object not yet finalized"); 80 assertTrue("object whose constructor threw was not finalized", ConstructionFails.finalized); 96 * The finalizer watch dog exits the VM if any object takes more than 10 s 111 new Object() { 134 new Object() {
|
| /art/test/031-class-attributes/src/ |
| ClassAttrs.java | 61 showModifiers(Object.class); 62 showModifiers(Object[].class); 149 // Can assign any reference to java.lang.Object. 150 assertTrue(Object.class.isAssignableFrom(Object.class)); 151 assertTrue(Object.class.isAssignableFrom(Class.class)); 152 assertTrue(Object.class.isAssignableFrom(String.class)); 153 assertFalse(Object.class.isAssignableFrom(int.class)); 154 assertFalse(Object.class.isAssignableFrom(long.class)); 158 assertFalse(CharSequence.class.isAssignableFrom(Object.class)) [all...] |
| /external/v8/src/ |
| v8natives.js | 31 // var $Object = global.Object; 48 function InstallFunctions(object, attributes, functions) { 50 %OptimizeObjectForAddingMultipleProperties(object, functions.length >> 1); 57 %SetProperty(object, key, f, attributes); 60 %ToFastProperties(object); 64 // The "prototype" property of the function object is made non-configurable, 65 // and the prototype object is made non-extensible. The latter prevents 157 // For consistency with JSC we require the global object passed to 158 // eval to be the global object from which 'eval' originated. Thi [all...] |
| runtime.js | 44 var $Object = global.Object; 82 // y is object. 88 // x is an object. 373 // If V is not an object, return false. 384 // Get the prototype of F; if it is not an object, throw an error. 395 // Filter a given key against an object by checking if the object 481 // Convert the receiver to an object - forward to ToObject. 616 // Returns if the given x is a primitive value - not an object or [all...] |
| /art/runtime/verifier/ |
| reg_type_test.cc | 347 const RegType& precise_obj_2 = cache.FromDescriptor(NULL, "Ljava/lang/Object;", true); 440 // The JavaLangObject method instead of FromDescriptor. Object Class in not final. 445 const RegType& ref_type_3 = cache.FromDescriptor(NULL, "Ljava/lang/Object;", true); 453 // String and object , LUB is object. 457 const RegType& Object = cache_new.JavaLangObject(true); 458 EXPECT_TRUE(string.Merge(Object, &cache_new).IsJavaLangObject());
|
| /external/chromium_org/third_party/tcmalloc/chromium/src/ |
| addressmap-inl.h | 208 // Find cluster object for specified address. If not found 209 // and "create" is true, create the object. If not found 245 struct Object { 246 Object* next; 252 Object* allocated_; // List of allocated objects 258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T)); 259 memset(ptr, 0, sizeof(Object) + num*sizeof(T)); 260 Object* obj = reinterpret_cast<Object*>(ptr); 263 return reinterpret_cast<T*>(reinterpret_cast<Object*>(ptr) + 1) [all...] |
| /external/chromium_org/third_party/tcmalloc/vendor/src/ |
| addressmap-inl.h | 208 // Find cluster object for specified address. If not found 209 // and "create" is true, create the object. If not found 245 struct Object { 246 Object* next; 252 Object* allocated_; // List of allocated objects 258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T)); 259 memset(ptr, 0, sizeof(Object) + num*sizeof(T)); 260 Object* obj = reinterpret_cast<Object*>(ptr); 263 return reinterpret_cast<T*>(reinterpret_cast<Object*>(ptr) + 1) [all...] |
| /external/chromium_org/v8/src/ |
| runtime.js | 44 var $Object = global.Object; 90 // y is object. 96 // x is an object. 367 // If V is not an object, return false. 378 // Get the prototype of F; if it is not an object, throw an error. 389 // Filter a given key against an object by checking if the object 475 // Convert the receiver to an object - forward to ToObject. 620 // Returns if the given x is a primitive value - not an object or [all...] |
| /external/chromium_org/v8/test/cctest/ |
| test-types.cc | 41 static Object* AsConstant(Type* type) { return Box::cast(type)->value(); } 123 Object(Type::Object(), isolate), 159 Handle<Type> Object; 202 CHECK(IsBitset(*T.Object)); 206 CHECK(IsBitset(Type::Optional(T.Object))); 212 AsBitset(Type::Union(T.Receiver, T.Object))); 262 CHECK(T.Object->Is(T.Object)); 302 CheckSub(T.Object, T.Any) [all...] |
| /external/chromium_org/v8/test/mjsunit/harmony/ |
| proxies.js | 40 // Getting property descriptors (Object.getOwnPropertyDescriptor). 50 assertEquals(42, Object.getOwnPropertyDescriptor(p, "a").value) 52 assertEquals(42, Object.getOwnPropertyDescriptor(p, 99).value) 93 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, "a") }, "myexn") 94 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, 77) }, "myexn") 143 var o = Object.create(p, {x: {value: 88}}) 216 var o = Object.create(p, {g: {value: function(x) { return x + 88 }}}) 305 var o = Object.create(p, {x: {value: 88}, '4': {value: 89}}) 585 var o = Object.create(p, {x: {value: 88, writable: true}, 611 assertFalse(Object.prototype.hasOwnProperty.call(o, "p_nonwritable") [all...] |
| /external/chromium_org/v8/test/webkit/fast/js/ |
| Object-getOwnPropertyNames.js | 24 description("Test to ensure correct behaviour of Object.getOwnPropertyNames"); 35 "Object.create({}, { 'a': { 'value': 1, 'enumerable': false } })": "['a']", 36 "Object.create([1,2,3], { 'a': { 'value': 1, 'enumerable': false } })": "['a']", 74 "Object": "['create', 'defineProperties', 'defineProperty', 'freeze', 'getOwnPropertyDescriptor', 'getOwnPropertyNames', 'getPrototypeOf', 'isExtensible', 'isFrozen', 'isSealed', 'keys', 'length', 'name', 'preventExtensions', 'prototype', 'seal']", 75 "Object.prototype": "['__defineGetter__', '__defineSetter__', '__lookupGetter__', '__lookupSetter__', '__proto__', 'constructor', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'valueOf']", 98 return Object.getOwnPropertyNames(obj).sort(); 104 // Global Object 106 var globalPropertyNames = Object.getOwnPropertyNames(this); 121 "Object",
|
| /external/clang/lib/Tooling/ |
| JSONCompilationDatabase.cpp | 140 // This anchor is used to force the linker to link in the generated object file 250 llvm::yaml::MappingNode *Object = dyn_cast<llvm::yaml::MappingNode>(&*AI); 251 if (Object == NULL) { 252 ErrorMessage = "Expected object."; 258 for (llvm::yaml::MappingNode::iterator KVI = Object->begin(), 259 KVE = Object->end();
|
| /external/llvm/lib/Analysis/ |
| AliasAnalysis.cpp | 421 const Value *Object = GetUnderlyingObject(MemLoc.Ptr, TD); 422 if (!isIdentifiedObject(Object) || isa<GlobalValue>(Object) || 423 isa<Constant>(Object)) 427 if (!CS.getInstruction() || CS.getInstruction() == Object) 431 llvm::PointerMayBeCaptured(Object, &CB); 451 AliasAnalysis::Location(Object))) 540 /// identifiable object. This returns true for:
|
| BasicAliasAnalysis.cpp | 46 /// object that never escapes from the function. 85 /// getObjectSize - Return the size of the object specified by V, or 96 /// isObjectSmallerThan - Return true if we can prove that the object specified 101 // Note that the meanings of the "object" are slightly different in the 106 // c1 and c2 share the same meaning; however, the meaning of "object" in c3 107 // refers to the "entire object". 113 // In the context of c1 and c2, the "object" pointed by q refers to the 116 // However, in the context of c3, the "object" refers to the chunk of memory 117 // being allocated. So, the "object" has 100 bytes, and q points to the middle 118 // the "object". In case q is passed to isObjectSmallerThan() as the 1s [all...] |
| /external/v8/test/mjsunit/harmony/ |
| proxies.js | 40 // Getting property descriptors (Object.getOwnPropertyDescriptor). 50 assertEquals(42, Object.getOwnPropertyDescriptor(p, "a").value) 52 assertEquals(42, Object.getOwnPropertyDescriptor(p, 99).value) 93 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, "a") }, "myexn") 94 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, 77) }, "myexn") 143 var o = Object.create(p, {x: {value: 88}}) 216 var o = Object.create(p, {g: {value: function(x) { return x + 88 }}}) 305 var o = Object.create(p, {x: {value: 88}, '4': {value: 89}}) 584 var o = Object.create(p, {x: {value: 88, writable: true}, 615 assertFalse(Object.prototype.hasOwnProperty.call(o, "p_setter") [all...] |
| /art/test/100-reflect2/src/ |
| Main.java | 155 private static void show(Object o) { 170 System.out.println(String.class.isAssignableFrom(Object.class)); 171 System.out.println(Object.class.isAssignableFrom(String.class)); 197 show(m.invoke(null, (Object) new String[] { "h", "e", "l", "l", "o" })); 262 show(ctor.newInstance((Object[]) null));
|
| /external/iproute2/doc/ |
| ip-cref.tex | 45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]] 108 \verb|OBJECT| is the object to manage or to get information about. 109 The object types currently understood by \verb|ip| are: 126 \verb|COMMAND| specifies the action to perform on the object. 127 The set of possible actions depends on the object type. 139 The arguments depend on the command and object. There are two types of arguments: 228 \paragraph{Object:} A \verb|link| is a network device and the corresponding 550 \paragraph{Object:} The \verb|address| is a protocol (IP or IPv6) address attached 837 \paragraph{Object:} \verb|neighbour| objects establish bindings between protoco [all...] |
| /external/llvm/lib/MC/ |
| WinCOFFObjectWriter.cpp | 10 // This file contains an implementation of a Win32 COFF object file writer. 136 // Maps used during object file creation. 355 object_t *Object = new object_t(Name); 357 List.push_back(Object); 359 return Object; 362 /// This function takes a section data object from the assembler 363 /// and creates the associated COFF section staging object. 411 /// This function takes a section data object from the assembler 412 /// and creates the associated COFF symbol staging object. 790 // Assign file offsets to COFF object file structures [all...] |
| /frameworks/compile/mclinker/include/mcld/LD/ |
| ResolveInfo.h | 52 Object = 1, 104 /// setRegular - set the source of the file is a regular object 107 /// setDynamic - set the source of the file is a dynamic object 111 /// @param pIsDyn is the source from a dynamic object? 259 static const uint32_t object_flag = Object << TYPE_OFFSET;
|
| /dalvik/vm/oo/ |
| Object.h | 18 * Declaration of the fundamental Object type and refinements thereof, plus 147 #define CLASS_SMALLEST_OFFSET (sizeof(struct Object)) 195 * Array objects - an object created with a "new array" instruction 196 * Data objects - an object that is neither of the above 202 * All objects have an Object header followed by type-specific data. 204 struct Object { 205 /* ptr to class object */ 216 * Properly initialize an Object. 217 * void DVM_OBJECT_INIT(Object *obj, ClassObject *clazz_) 220 dvmSetFieldObject(obj, OFFSETOF_MEMBER(Object, clazz), clazz_ [all...] |