HomeSort by relevance Sort by last modified time
    Searched defs:object (Results 251 - 275 of 319) sorted by null

<<111213

  /external/v8/src/ia32/
full-codegen-ia32.cc 104 // o edi: the JS function object being called (ie, ourselves)
183 // Function uses arguments object.
184 Comment cmnt(masm_, "[ Allocate arguments object");
378 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
383 Handle<Object> lit) const {
392 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
401 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const {
511 Handle<Object> value = flag
519 Handle<Object> value = flag
857 // Get the object to enumerate over. Both SpiderMonkey and JS
2939 Register object = ebx; local
2986 Register object = ebx; local
3133 Register object = eax; local
3176 __ mov(Operand(index_2, 0), object); local
    [all...]
lithium-ia32.cc 408 object()->PrintTo(stream);
417 object()->PrintTo(stream);
426 object()->PrintTo(stream);
435 object()->PrintTo(stream);
506 Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
1604 LOperand* object = UseRegister(instr->value()); local
1834 LOperand* object = UseFixed(instr->object(), eax); local
1895 LOperand* object = UseFixed(instr->object(), edx); local
1960 LOperand* object = UseFixed(instr->object(), edx); local
1997 LOperand* object = UseFixed(instr->object(), edx); local
2104 LOperand* object = UseFixed(instr->value(), eax); local
    [all...]
lithium-ia32.h 686 DECLARE_CONCRETE_INSTRUCTION(IsObject, "is-object")
698 DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
996 Handle<Object> value() const { return hydrogen()->handle(); }
1178 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LLoadNamedField
1191 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LLoadNamedFieldPolymorphic
1206 LOperand* object() { return inputs_[1]; } function in class:v8::internal::LLoadNamedGeneric
1292 LOperand* object() { return inputs_[1]; } function in class:v8::internal::LLoadKeyedGeneric
1671 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LStoreNamedField
1696 LOperand* object() { return inputs_[1]; } function in class:v8::internal::LStoreNamedGeneric
1717 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LStoreKeyedFastElement
1766 LOperand* object() { return inputs_[1]; } function in class:v8::internal::LStoreKeyedGeneric
1978 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LDeleteProperty
    [all...]
  /external/v8/src/
liveobjectlist.cc 218 // This is an optimization to speed up the check for an object in the LO
219 // space by exclusion because we know that all object pointers passed in
290 Object* type_obj;
306 Object* space_obj;
322 Object* prop_obj;
373 // Object level iteration.
438 // Object level iteration.
481 // object we're looking at. We only generate specialized
573 Handle<Object> error) {
630 Handle<Object> error) = 0
1668 Object* object = *p; local
2108 Object* object = *objects[j]; local
2122 Object* object = *objects[j]; local
    [all...]
mark-compact.cc 198 // after: a live object's map pointer is marked as '00'.
202 // marking, live objects' map pointers are marked indicating that the object
342 static inline HeapObject* ShortCircuitConsString(Object** p) {
343 // Optimization: If the heap object pointed to by p is a non-symbol
347 // Here we assume that if we change *p, we replace it with a heap object
348 // (ie, the left substring of a cons string is always a heap object).
351 // object->IsConsString() && !object->IsSymbol() &&
352 // (ConsString::cast(object)->second() == HEAP->empty_string())
353 // except the maps for the object and its possible substrings might b
355 HeapObject* object = HeapObject::cast(*p); local
1125 HeapObject* object = reinterpret_cast<HeapObject*>(contents->get(i)); local
1234 Object* object = *objects[j]; local
1298 HeapObject* object = marking_stack_.Pop(); local
1778 HeapObject* object = HeapObject::FromAddress(current); local
2013 HeapObject* object = HeapObject::FromAddress(current); local
2051 HeapObject* object = HeapObject::FromAddress(current); local
2128 HeapObject* object; local
2484 HeapObject* object; local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 104 // o rdi: the JS function object being called (ie, ourselves)
180 // Possibly allocate an arguments object.
183 // Arguments object must be allocated after the context object, in
185 Comment cmnt(masm_, "[ Allocate arguments object");
208 // Store new arguments object in both "arguments" and ".arguments" slots.
392 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
397 Handle<Object> lit) const {
402 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
407 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const
2891 Register object = rbx; local
2938 Register object = rbx; local
3084 Register object = rax; local
3129 __ movq(Operand(index_2, 0), object); local
    [all...]
lithium-x64.cc 409 object()->PrintTo(stream);
418 object()->PrintTo(stream);
427 object()->PrintTo(stream);
436 object()->PrintTo(stream);
507 Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
1578 LOperand* object = UseRegister(instr->value()); local
1794 LOperand* object = UseFixed(instr->object(), rax); local
1851 LOperand* object = UseFixed(instr->object(), rdx); local
1902 LOperand* object = UseFixed(instr->object(), rdx); local
1936 LOperand* object = UseFixed(instr->object(), rdx); local
2040 LOperand* object = UseFixed(instr->value(), rax); local
    [all...]
lithium-x64.h 676 DECLARE_CONCRETE_INSTRUCTION(IsObject, "is-object")
686 DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
957 Handle<Object> value() const { return hydrogen()->handle(); }
1131 explicit LLoadNamedField(LOperand* object) {
1132 inputs_[0] = object;
1142 explicit LLoadNamedFieldPolymorphic(LOperand* object) {
1143 inputs_[0] = object;
1149 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LLoadNamedFieldPolymorphic
1155 explicit LLoadNamedGeneric(LOperand* object) {
1156 inputs_[0] = object;
1162 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LLoadNamedGeneric
1245 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LLoadKeyedGeneric
1595 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LStoreNamedField
1618 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LStoreNamedGeneric
1639 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LStoreKeyedFastElement
1681 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LStoreKeyedGeneric
1904 LOperand* object() { return inputs_[0]; } function in class:v8::internal::LDeleteProperty
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c 5543 mach_msg_port_descriptor_t object; member in struct:__anon12323
5711 mach_msg_port_descriptor_t object; member in struct:__anon12328
6084 mach_msg_port_descriptor_t object; member in struct:__anon12343
    [all...]
  /external/webkit/Source/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp 83 static AccessibilityObject* object = 0; local
84 if (!object) {
86 object = fallbackCache->getOrCreate(ListBoxOptionRole);
87 object->ref();
90 return object;
109 static AccessibilityObject* core(AtkObject* object)
111 if (!WEBKIT_IS_ACCESSIBLE(object))
114 return core(WEBKIT_ACCESSIBLE(object));
169 static const gchar* webkit_accessible_get_name(AtkObject* object)
171 AccessibilityObject* coreObject = core(object);
2574 AtkObject* object = static_cast<AtkObject*>(g_object_new(type, 0)); local
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp 80 Platform3DObject objectOrZero(WebGLObject* object)
82 return object ? object->object() : 0;
657 bool WebGLRenderingContext::checkObjectToBeBound(WebGLObject* object, bool& deleted)
662 if (object) {
663 if (object->context() != this) {
667 deleted = !object->object();
944 if (!m_framebufferBinding || !m_framebufferBinding->object())
1757 Platform3DObject object = objectOrZero(m_framebufferBinding->getAttachment(GraphicsContext3D::DEPTH_ATTACHMENT)); local
1762 Platform3DObject object = objectOrZero(m_framebufferBinding->getAttachment(GraphicsContext3D::STENCIL_ATTACHMENT)); local
1767 Platform3DObject object = objectOrZero(m_framebufferBinding->getAttachment(GraphicsContext3D::DEPTH_STENCIL_ATTACHMENT)); local
1772 Platform3DObject object = objectOrZero(m_framebufferBinding->getAttachment(GraphicsContext3D::DEPTH_STENCIL_ATTACHMENT)); local
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.cpp 2021 RenderEmbeddedObject* object = objects[i]; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBlockLineLayout.cpp 160 // An end midpoint has been encountered within our object. We
165 if (nextMidpoint.m_pos != UINT_MAX) { // UINT_MAX means stop at the object and don't include any of it.
217 // See if we have an unconstructed line box for this object that is also
228 // Get the last box we made for this render object.
240 // We need to make a new box for this render object. Once
305 // Create a box for our object.
1590 RenderObject* object = iterator.m_obj; local
1603 RenderObject* object = resolver.position().m_obj; local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 44 // FrameLoader and Frame are formerly one object that was split apart because
54 // are created. WebKit will hook up this object to the FrameLoader/Frame
681 0, // XPathResult object
756 void WebFrameImpl::bindToWindowObject(const WebString& name, NPObject* object)
764 m_frame->script()->bindToWindowObject(m_frame, key, object);
1380 RenderObject* object = coreNode->renderer(); local
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 221 void setObjectStarProperty(QObject* object) {
222 m_objectStar = object;
680 // (in ecma, an Error object has typeof object, but qtscript has a convenience function)
681 // Similarly, an array is an object, but we'd prefer to have a type of 'array'
737 sString("string"), sObject("object"), sNumber("number"), m_inputFieldsTestView(0), m_inputFieldTestPaintCount(0)
983 // initially the object does not have the property
984 // In WebKit, RuntimeObjects do not inherit Object, so don't have hasOwnProperty
3344 MyWebElementSlotOnlyObject object; local
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.c 108 static void yaffs_InvalidateChunkCache(yaffs_Object * object, int chunkId);
1187 /* Empty file with no duplicate object headers, just delete it immediately */
1296 * adds them to the object free list.
1343 /* AllocateEmptyObject gets us a clean Object. Tries to make allocate more if we run out */
2339 yaffs_Object *object; local
    [all...]
yaffs_guts.h 84 /* Some special object ids for pseudo objects */
90 /* Sseudo object ids for checkpointing */
113 struct yaffs_ObjectStruct *object; member in struct:__anon14236
173 unsigned objectId; /* If 0 then this is not part of an object (unused) */
188 /* Extra info if this is an object header (YAFFS2 only) */
191 unsigned extraParentObjectId; /* The parent object */
193 unsigned extraShadows; /* Does this shadow another object? */
195 yaffs_ObjectType extraObjectType; /* What object type? */
198 unsigned extraEquivalentObjectId; /* Equivalent object Id if it is a hard link */
284 __u32 hasShrinkHeader:1; /* This block has at least one shrink object header *
    [all...]
  /ndk/build/core/
definitions.mk 254 # LOCAL_OBJECTS will contain the list of object files generated from the
263 # LOCAL_OBJS_DIR will contain the location where the object files for
769 # binary file, and the directory where to place its object files.
    [all...]
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 1049 milliseconds

<<111213