Searched refs:object (Results 251 - 275 of 3367) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/null/
H A Dnull-dbgfmt.c36 null_dbgfmt_create(yasm_object *object) argument
50 null_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap, argument
/external/chromium_org/v8/test/webkit/
H A Ddfg-multi-basic-block-structure-clobber.js48 var object = {f:1};
51 clobberedObject = object;
54 shouldBe("foo(predicate, {f:object})", "" + expected);
/external/libcxx/test/utilities/optional/optional.object/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/optional/optional.object/Android.mk
19 test_name := utilities/optional/optional.object/types
/external/llvm/include/llvm/MC/
H A DMCRelocationInfo.h11 // create MCExprs from relocations, either found in an object::ObjectFile
12 // (object::RelocationRef), or provided through the C API.
23 namespace object { namespace in namespace:llvm
29 /// \brief Create MCExprs from relocations found in an object file.
43 virtual const MCExpr *createExprForRelocation(object::RelocationRef Rel);
/external/llvm/include/llvm/Object/
H A DError.h20 namespace object { namespace in namespace:llvm
36 } // end namespace object.
42 struct is_error_code_enum<llvm::object::object_error> : std::true_type {};
/external/llvm/test/MC/ELF/
H A Dtype-propagate.s11 .type sym01, @object
25 .type sym10, @object
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumd3d10_1.idl31 [object, local]
H A Dgalliumd3d11.idl31 [object, local]
H A Dgalliumcom.idl32 [object, local, uuid("481c9372-795f-4630-bd5b-1f46d33cc28b")]
40 [object, local, uuid("2c0f7e72-d9fe-4e7b-9fee-d476695ad5d9")]
71 [object, local, uuid("61934787-7aea-412c-8c72-8afe6a33d622")]
/external/chromium_org/base/
H A Dsequenced_task_runner.h119 // Submits a non-nestable task to delete the given object. Returns
120 // true if the object may be deleted at some point in the future,
121 // and false if the object definitely will not be deleted.
124 const T* object) {
127 this, from_here, object);
130 // Submits a non-nestable task to release the given object. Returns
131 // true if the object may be released at some point in the future,
132 // and false if the object definitely will not be released.
135 T* object) {
138 this, from_here, object);
123 DeleteSoon(const tracked_objects::Location& from_here, const T* object) argument
134 ReleaseSoon(const tracked_objects::Location& from_here, T* object) argument
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_video_frame_thunk.cc30 return enter.object()->GetTimestamp();
38 enter.object()->SetTimestamp(timestamp);
46 return enter.object()->GetFormat();
54 return enter.object()->GetSize(size);
62 return enter.object()->GetDataBuffer();
70 return enter.object()->GetDataBufferSize();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRuby.cpp43 static inline bool isAnonymousRubyInlineBlock(const RenderObject* object) argument
45 ASSERT(!object
46 || !object->parent()->isRuby()
47 || object->isRubyRun()
48 || (object->isInline() && (object->isBeforeContent() || object->isAfterContent()))
49 || (object->isAnonymous() && object->isRenderBlock() && object
57 isRubyBeforeBlock(const RenderObject* object) argument
65 isRubyAfterBlock(const RenderObject* object) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceSolidColor.cpp43 bool RenderSVGResourceSolidColor::applyResource(RenderObject* object, RenderStyle* style, GraphicsContext*& context, unsigned short resourceMode) argument
45 ASSERT(object);
51 if (object->frame() && object->frame()->view())
52 isRenderingMask = object->frame()->view()->paintBehavior() & PaintBehaviorRenderingSVGMask;
73 SVGRenderSupport::applyStrokeStyleToContext(context, style, object);
H A DSVGResourcesCache.cpp39 void SVGResourcesCache::addResourcesFromRenderObject(RenderObject* object, const RenderStyle* style) argument
41 ASSERT(object);
43 ASSERT(!m_cache.contains(object));
48 OwnPtr<SVGResources> newResources = SVGResources::buildResources(object, svgStyle);
52 // Put object in cache.
53 SVGResources* resources = m_cache.set(object, newResources.release()).storedValue->value.get();
56 SVGResourcesCycleSolver solver(object, resources);
59 // Walk resources and register the render object at each resources.
65 (*it)->addClient(object);
68 void SVGResourcesCache::removeResourcesFromRenderObject(RenderObject* object) argument
100 clientLayoutChanged(RenderObject* object) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dcomplex.pxd13 # This subtype of PyObject represents a Python complex number object.
15 ctypedef class __builtin__.complex [object PyComplexObject]:
23 # number type. It is the same object as complex and
26 bint PyComplex_Check(object p)
30 bint PyComplex_CheckExact(object p)
33 object PyComplex_FromCComplex(Py_complex v)
35 # Create a new Python complex number object from a C Py_complex value.
37 object PyComplex_FromDoubles(double real, double imag)
39 # Return a new PyComplexObject object from real and imag.
41 double PyComplex_RealAsDouble(object o
[all...]
H A Ddict.pxd11 # This subtype of PyObject represents a Python dictionary object
20 bint PyDict_Check(object p)
21 # Return true if p is a dict object or an instance of a subtype of
24 bint PyDict_CheckExact(object p)
25 # Return true if p is a dict object, but not an instance of a
28 object PyDict_New()
32 object PyDictProxy_New(object dict)
34 # Return a proxy object for a mapping which enforces read-only
38 void PyDict_Clear(object
[all...]
H A Dstring.pxd13 # This subtype of PyObject represents a Python string object.
16 # it is the same object as str and types.StringType in the Python
19 bint PyString_Check(object o)
20 # Return true if the object o is a string object or an instance of
23 bint PyString_CheckExact(object o)
24 # Return true if the object o is a string object, but not an instance of a subtype of the string type.
26 object PyString_FromString(char *v)
28 # Return a new string object wit
[all...]
H A Dtuple.pxd9 bint PyTuple_Check(object p)
10 # Return true if p is a tuple object or an instance of a subtype
13 bint PyTuple_CheckExact(object p)
14 # Return true if p is a tuple object, but not an instance of a subtype of the tuple type.
18 # Return a new tuple object of size len, or NULL on failure.
22 # Return a new tuple object of size n, or NULL on failure. The
27 Py_ssize_t PyTuple_Size(object p) except -1
28 # Take a pointer to a tuple object, and return the size of that tuple.
30 Py_ssize_t PyTuple_GET_SIZE(object p)
34 PyObject* PyTuple_GetItem(object
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumcom.idl32 [object, local, uuid("481c9372-795f-4630-bd5b-1f46d33cc28b")]
40 [object, local, uuid("2c0f7e72-d9fe-4e7b-9fee-d476695ad5d9")]
71 [object, local, uuid("61934787-7aea-412c-8c72-8afe6a33d622")]
/external/chromium_org/ppapi/cpp/private/
H A Dcontent_decryptor_private.cc29 void* object = local
31 if (!object)
38 static_cast<ContentDecryptor_Private*>(object)->Initialize(
45 void* object = local
47 if (!object)
55 static_cast<ContentDecryptor_Private*>(object)
64 void* object = local
66 if (!object)
78 static_cast<ContentDecryptor_Private*>(object)
88 void* object local
105 void* object = local
126 void* object = local
142 void* object = local
158 void* object = local
176 void* object = local
192 void* object = local
208 void* object = local
221 void* object = local
233 void* object = local
247 void* object = local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectFactory.java54 // objects must match the order of the object tileset in the level editor in order for the
370 public void destroy(GameObject object) { argument
371 object.commitUpdates();
372 final int componentCount = object.getCount();
374 GameComponent component = (GameComponent)object.get(x);
379 object.removeAll();
380 object.commitUpdates();
381 mGameObjectPool.release(object);
587 GameObject object = spawn(type, worldX, worldY, false);
588 if (object !
632 addStaticData(GameObjectType type, GameObject object, SpriteComponent sprite) argument
[all...]
/external/chromium_org/v8/src/heap/
H A Dobjects-visiting-inl.h80 Map* map, HeapObject* object) {
86 object, JSArrayBuffer::BodyDescriptor::kStartOffset),
87 HeapObject::RawField(object, JSArrayBuffer::kWeakNextOffset));
90 object, JSArrayBuffer::kWeakNextOffset + 2 * kPointerSize),
91 HeapObject::RawField(object, JSArrayBuffer::kSizeWithInternalFields));
98 Map* map, HeapObject* object) {
101 HeapObject::RawField(object, JSTypedArray::BodyDescriptor::kStartOffset),
102 HeapObject::RawField(object, JSTypedArray::kWeakNextOffset));
105 object, JSTypedArray::kWeakNextOffset + kPointerSize),
106 HeapObject::RawField(object, JSTypedArra
79 VisitJSArrayBuffer( Map* map, HeapObject* object) argument
97 VisitJSTypedArray( Map* map, HeapObject* object) argument
112 VisitJSDataView(Map* map, HeapObject* object) argument
218 HeapObject* object = HeapObject::cast(rinfo->target_object()); local
290 VisitNativeContext( Map* map, HeapObject* object) argument
305 VisitMap(Map* map, HeapObject* object) argument
328 VisitPropertyCell( Map* map, HeapObject* object) argument
353 VisitAllocationSite( Map* map, HeapObject* object) argument
379 VisitWeakCollection( Map* map, HeapObject* object) argument
413 VisitCode(Map* map, HeapObject* object) argument
425 VisitSharedFunctionInfo( Map* map, HeapObject* object) argument
475 VisitConstantPoolArray( Map* map, HeapObject* object) argument
489 HeapObject* object = HeapObject::cast(*slot); local
506 VisitJSFunction(Map* map, HeapObject* object) argument
544 VisitJSRegExp(Map* map, HeapObject* object) argument
555 VisitJSArrayBuffer( Map* map, HeapObject* object) argument
573 VisitJSTypedArray( Map* map, HeapObject* object) argument
587 VisitJSDataView(Map* map, HeapObject* object) argument
800 VisitSharedFunctionInfoStrongCode( Heap* heap, HeapObject* object) argument
811 VisitSharedFunctionInfoWeakCode( Heap* heap, HeapObject* object) argument
832 VisitJSFunctionStrongCode( Heap* heap, HeapObject* object) argument
852 VisitJSFunctionWeakCode( Heap* heap, HeapObject* object) argument
[all...]
H A Dobjects-visiting.h11 // static object visitors used during GC.
13 // two switches on object's instance type to determine object size and layout
83 // can visit object of any size we provide visitors specialized by
84 // object size in words.
189 INLINE(static void IteratePointers(Heap* heap, HeapObject* object,
192 reinterpret_cast<Object**>(object->address() + start_offset);
194 reinterpret_cast<Object**>(object->address() + end_offset);
203 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) { argument
204 int object_size = BodyDescriptor::SizeOf(map, object);
211 VisitSpecialized(Map* map, HeapObject* object) argument
223 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) argument
262 INLINE(static int VisitJSFunction(Map* map, HeapObject* object)) argument
277 INLINE(static int VisitByteArray(Map* map, HeapObject* object)) argument
281 INLINE(static int VisitFixedDoubleArray(Map* map, HeapObject* object)) argument
286 INLINE(static int VisitFixedTypedArray(Map* map, HeapObject* object)) argument
290 INLINE(static int VisitJSObject(Map* map, HeapObject* object)) argument
294 INLINE(static int VisitSeqOneByteString(Map* map, HeapObject* object)) argument
299 INLINE(static int VisitSeqTwoByteString(Map* map, HeapObject* object)) argument
304 INLINE(static int VisitFreeSpace(Map* map, HeapObject* object)) argument
315 VisitSpecialized(Map* map, HeapObject* object) argument
319 INLINE(static int Visit(Map* map, HeapObject* object)) argument
414 VisitSpecialized(Map* map, HeapObject* object) argument
416 INLINE(static void Visit(Map* map, HeapObject* object)) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableList.java50 @Override public int indexOf(@Nullable Object object) { argument
51 return element.equals(object) ? 0 : -1;
58 @Override public int lastIndexOf(@Nullable Object object) { argument
59 return element.equals(object) ? 0 : -1;
116 @Override public boolean contains(@Nullable Object object) { argument
117 return element.equals(object);
120 @Override public boolean equals(Object object) { argument
121 if (object == this) {
124 if (object instanceof List) {
125 List<?> that = (List<?>) object;
[all...]
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtrace_model_settings.js15 * This object should not be persisted because it builds up internal data
20 * This system works on a notion of an object key: for an object's key, it
23 * setting is stored on the object itself. Thus, objects with unique keys will
45 var object = objects[i];
46 var objectKey = object.getSettingsKey();
50 objectsByKey[objectKey] = object;
81 hasUniqueSettingKey: function(object) {
82 var objectKey = object.getSettingsKey();
88 getSettingFor: function(object, objectLevelKe
[all...]

Completed in 1190 milliseconds

<<11121314151617181920>>