| /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/libchrome/dbus/ | 
| object_manager.h | 18 // Newer D-Bus services implement the Object Manager interface to inform other 26 // simplifying implementation, since there tends to be a single object manager
 57 // The link between the implementation class and the object manager is set up
 59 // a pointer to its object manager for use in other methods and establish
 77 // The object manager interface class has one abstract method that must be
 100 // to connect signals or obtain the initial values of properties. The object
 105 // interface or from the Object Manager interface. You may also wish to
 109 // When your class needs an object proxy for a given object path, it may
 110 // obtain it from the object manager. Unlike the equivalent method on the bu
 [all...]
 | 
| /external/llvm/include/llvm/Object/ | 
| COFFYAML.h | 83   struct Object { 88     Object();
 216 struct MappingTraits<COFFYAML::Object> {
 217   static void mapping(IO &IO, COFFYAML::Object &Obj);
 
 | 
| ELFYAML.h | 29 // reading/generating binary object files. 166 struct Object {
 308 struct MappingTraits<ELFYAML::Object> {
 309   static void mapping(IO &IO, ELFYAML::Object &Object);
 
 | 
| /external/llvm/lib/Analysis/ | 
| AliasAnalysis.cpp | 317   const Value *Object = 319   if (!isIdentifiedObject(Object) || isa<GlobalValue>(Object) ||
 320       isa<Constant>(Object))
 324   if (!CS.getInstruction() || CS.getInstruction() == Object)
 327   if (llvm::PointerMayBeCapturedBefore(Object, /* ReturnCaptures */ true,
 329                                        /* include Object */ true,
 348     if (isNoAlias(MemoryLocation(*CI), MemoryLocation(Object)))
 452 /// aggregation object. Because this is somewhat shoe-horned into the legacy
 459   // AAResults object because in the legacy pass manager, each instanc
 [all...]
 | 
| /external/llvm/lib/Object/ | 
| COFFYAML.cpp | 14 #include "llvm/Object/COFFYAML.h" 22 Object::Object() { memset(&Header, 0, sizeof(COFF::header)); }
 495 void MappingTraits<COFFYAML::Object>::mapping(IO &IO, COFFYAML::Object &Obj) {
 
 | 
| /external/v8/test/js-perf-test/Keys/ | 
| keys.js | 23 // Create an object with #depth prototypes each having #keys properties. 101   // Force a new function for each test-object to avoid side-effects due to ICs.
 102   return (object) => {
 109   "Object.keys()": CreateTestFunctionGen(() => {return Object.keys(object)}),
 113     for (var key in object) {
 115       result = object[key];
 122     for (var key in object) {
 123       if (!object.hasOwnProperty(key)) continue
 [all...]
 | 
| /external/vulkan-validation-layers/demos/smoke/ | 
| Simulation.h | 87     struct Object { 100     const std::vector<Object> &objects() const { return objects_; }
 109     std::vector<Object> objects_;
 
 | 
| /frameworks/compile/mclinker/include/mcld/ | 
| LinkerConfig.h | 31   enum CodeGenType { Unknown, Object, DynObj, Exec, External, Binary }; 
 | 
| /libcore/luni/src/test/java/libcore/java/lang/ref/ | 
| FinalizeTest.java | 32             fail("object not yet finalized"); 72     // Helper function since we do not want a vreg to keep the allocated object live.
 85         assertTrue("object whose constructor threw was not finalized", ConstructionFails.finalized);
 101      * The finalizer watch dog exits the VM if any object takes more than 10 s
 116         new Object() {
 139         new Object() {
 
 | 
| /art/test/031-class-attributes/src/ | 
| ClassAttrs.java | 65         showModifiers(Object.class); 66         showModifiers(Object[].class);
 153         // Can assign any reference to java.lang.Object.
 154         assertTrue(Object.class.isAssignableFrom(Object.class));
 155         assertTrue(Object.class.isAssignableFrom(Class.class));
 156         assertTrue(Object.class.isAssignableFrom(String.class));
 157         assertFalse(Object.class.isAssignableFrom(int.class));
 158         assertFalse(Object.class.isAssignableFrom(long.class));
 162         assertFalse(CharSequence.class.isAssignableFrom(Object.class))
 [all...]
 | 
| /external/caliper/caliper/src/main/java/com/google/caliper/util/ | 
| Util.java | 124     new Object() { 
 | 
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/ | 
| distribution.py | 27 from boto.cloudfront.object import Object, StreamingObject 33 class DistributionConfig(object):
 43                        S3Origin object. If your distribution will use
 45                        should be a CustomOrigin object.
 73                                 TrustedSigners object; if you want the
 78         :param default_root_object: Designates a default root object.
 81                                     root object for the distribution.
 86                         this should contain a LoggingInfo object; otherwise
 220 class DistributionSummary(object)
 [all...]
 | 
| /external/clang/lib/Tooling/ | 
| JSONCompilationDatabase.cpp | 140 // This anchor is used to force the linker to link in the generated object file 256     llvm::yaml::MappingNode *Object = dyn_cast<llvm::yaml::MappingNode>(&NextObject);
 257     if (!Object) {
 258       ErrorMessage = "Expected object.";
 264     for (auto& NextKeyValue : *Object) {
 
 | 
| /external/deqp/framework/common/ | 
| tcuThreadUtil.hpp | 40 // Event object for synchronizing threads 69 class Object
 72 										Object		(const char* type, de::SharedPtr<Event> createEvent);
 73 	virtual								~Object		(void);
 86 										Object		(const Object&);
 87 	Object&								operator=	(const Object&);
 138 	void									readObject		(de::SharedPtr<Object> object) { object->read(m_event, m_deps);
 [all...]
 | 
| /external/opencv3/modules/objdetect/include/opencv2/objdetect/ | 
| detection_based_tracker.hpp | 64             int minDetectionPeriod; //the minimal time between run of the big object detector (on the whole frame) in ms (1000 mean 1 sec), default=0 135         typedef std::pair<cv::Rect, int> Object;
 137         virtual void getObjects(std::vector<Object>& result) const;
 159         virtual int addObject(const cv::Rect& location); //returns id of the new object
 
 | 
| /external/skia/src/pdf/ | 
| SkPDFTypes.cpp | 243 SkPDFUnion SkPDFUnion::Object(SkPDFObject* ptr) { 329     this->append(SkPDFUnion::Object(value));
 390     this->set(SkPDFUnion::Name(key), SkPDFUnion::Object(value));
 393     this->set(SkPDFUnion::Name(key), SkPDFUnion::Object(value));
 485 SkPDFObject* SkPDFSubstituteMap::getSubstitute(SkPDFObject* object) const {
 486     SkPDFObject** found = fSubstituteMap.find(object);
 487     return found ? *found : object;
 
 | 
| /external/v8/test/mjsunit/es6/ | 
| proxies.js | 53 // Getting property descriptors (Object.getOwnPropertyDescriptor). 63   assertEquals(42, Object.getOwnPropertyDescriptor(p, "a").value)
 65   assertEquals(42, Object.getOwnPropertyDescriptor(p, 99).value)
 107   assertThrowsEquals(() => Object.getOwnPropertyDescriptor(p, "a"), "myexn")
 108   assertThrowsEquals(() => Object.getOwnPropertyDescriptor(p, 77), "myexn")
 157   var o = Object.create(p, {x: {value: 88}})
 210   var o = Object.create(p, {g: {value: function(x) { return x + 88 }}})
 274   var o = Object.create(p, {x: {value: 88}, '4': {value: 89}})
 455   var o = Object.create(p)
 463       Object.defineProperty(o, "x", {get: function() { return 5 }})
 [all...]
 | 
| /frameworks/compile/mclinker/include/mcld/MC/ | 
| Input.h | 36     Object, 
 | 
| /libcore/luni/src/test/java/libcore/java/lang/ | 
| ClassTest.java | 52         assertNull(Object.class.getGenericSuperclass()); 58         assertSame(Object.class, (new Integer[0]).getClass().getGenericSuperclass());
 
 | 
| /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/ | 
| base.js | 82  * Creates object stubs for a namespace.  The presence of one or more 135    * @param {string} name name of the object to look for.
 148    * @type {Object}
 156  * Builds an object structure for the provided namespace path,
 161  * @param {string} name name of the object that this file defines.
 162  * @param {*=} opt_object the object to expose at the end of the path.
 163  * @param {Object=} opt_objectToExportTo The object to add the path to; default
 186       // last part and we have an object; use it
 198  * Returns an object based on its fully qualified external name.  If you ar
 [all...]
 | 
| /art/runtime/verifier/ | 
| reg_type_test.cc | 368   const RegType& precise_obj_2 = cache.FromDescriptor(nullptr, "Ljava/lang/Object;", true); 469   // The JavaLangObject method instead of FromDescriptor. Object Class in not final.
 476   const RegType& ref_type_3 = cache.FromDescriptor(nullptr, "Ljava/lang/Object;", true);
 484   // String and object , LUB is object.
 490   const RegType& Object = cache_new.JavaLangObject(true);
 491   EXPECT_TRUE(string.Merge(Object, &cache_new).IsJavaLangObject());
 
 | 
| /external/deqp/scripts/khr_util/ | 
| registry.py | 37 class Object(object): 41 class Located(Object):
 82 class Interface(Object): pass
 219 class Interface(Object):
 237 class InterfaceSpec(Object):
 
 | 
| /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/parsing/ | 
| JavaMethodParser.java | 68 			"jdoubleArray"), String("jstring"), Object("jobject"), ObjectArray("jobjectArray"); 85 			return toString().equals("Object") || this == ObjectArray;
 
 | 
| /external/llvm/lib/CodeGen/ | 
| MIRPrinter.cpp | 41 /// This structure describes how to print out stack object references. 50   /// Return an ordinary stack object reference.
 55   /// Return a fixed stack object reference.
 70   /// Maps from stack object indices to operand indices which will be used when
 325            "Invalid stack object index");
 336            "Invalid stack object index");
 338     assert(!StackObject.IsFixed && "Expected a locally mapped stack object");
 342   // Print the stack object references in the frame information class after
 355            "Invalid stack object index");
 357     assert(!StackObject.IsFixed && "Expected a non-fixed stack object");
 [all...]
 |