/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/ |
cv-dbgfmt.h | 53 (yasm_object *object, yasm_linemap *linemap, yasm_errwarns *errwarns); 56 yasm_section *yasm_cv__generate_type(yasm_object *object);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/null/ |
null-dbgfmt.c | 36 null_dbgfmt_create(yasm_object *object) 50 null_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap,
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-124.js | 28 assertEquals("[object global]", this.toString()); 29 assertEquals("[object Undefined]", toString()); 31 assertEquals("[object global]", eval("this.toString()")); 32 assertEquals("[object Undefined]", eval("toString()")); 34 assertEquals("[object global]", eval("var f; this.toString()")); 35 assertEquals("[object Undefined]", eval("var f; toString()")); 39 assertEquals("[object global]", this.toString()); 40 assertEquals("[object Undefined]", toString()); 42 assertEquals("[object global]", eval("this.toString()")); 43 assertEquals("[object Undefined]", eval("toString()")) [all...] |
regress-334.js | 39 var object = {__proto__:{}}; 40 %SetProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE); 41 %SetProperty(object, "bar", func1, DONT_ENUM | READ_ONLY); 42 %SetProperty(object, "baz", func1, DONT_DELETE | READ_ONLY); 43 %SetProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE); 44 object.bif = func2; 56 assertArrayEquals(["baz", "bif"], enumerable(object), "enum0"); 57 assertFalse(delete object.foo, "delete foo"); 58 assertFalse(delete object.baz, "delete baz"); 59 assertEquals(func1, object.foo, "read foo") [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
BooleanSerializer.java | 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 52 buffer.put(((Boolean)object) ? (byte)1 : (byte)0);
|
ByteSerializer.java | 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 52 buffer.put((Byte)object);
|
CharSerializer.java | 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 52 buffer.putChar((Character)object);
|
DoubleSerializer.java | 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 52 buffer.putDouble((Double)object);
|
FloatSerializer.java | 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 52 buffer.putFloat((Float)object);
|
IntSerializer.java | 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 52 buffer.putInt((Integer)object);
|
LongSerializer.java | 51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 52 buffer.putLong((Long)object);
|
ShortSerializer.java | 50 public void writeObject(ByteBuffer buffer, Object object) throws IOException { 51 buffer.putShort((Short)object);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/ |
galliumd3d10_1.idl | 31 [object, local]
|
galliumd3d11.idl | 31 [object, local]
|
/external/v8/src/ |
mark-compact-inl.h | 65 bool MarkCompactCollector::MarkObjectWithoutPush(HeapObject* object) { 66 MarkBit mark = Marking::MarkBitFrom(object); 68 if (!old_mark) SetMark(object, mark); 73 void MarkCompactCollector::MarkObjectAndPush(HeapObject* object) { 74 if (!MarkObjectWithoutPush(object)) marking_deque_.PushBlack(object); 89 bool MarkCompactCollector::IsMarked(Object* obj) { 96 void MarkCompactCollector::RecordSlot(Object** anchor_slot, 97 Object** slot, 98 Object* object) [all...] |
/external/v8/test/mjsunit/regress/ |
regress-124.js | 28 assertEquals("[object global]", this.toString()); 29 assertEquals("[object Undefined]", toString()); 31 assertEquals("[object global]", eval("this.toString()")); 32 assertEquals("[object Undefined]", eval("toString()")); 34 assertEquals("[object global]", eval("var f; this.toString()")); 35 assertEquals("[object Undefined]", eval("var f; toString()")); 39 assertEquals("[object global]", this.toString()); 40 assertEquals("[object Undefined]", toString()); 42 assertEquals("[object global]", eval("this.toString()")); 43 assertEquals("[object Undefined]", eval("toString()")) [all...] |
regress-334.js | 39 var object = {__proto__:{}}; 40 %SetProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE); 41 %SetProperty(object, "bar", func1, DONT_ENUM | READ_ONLY); 42 %SetProperty(object, "baz", func1, DONT_DELETE | READ_ONLY); 43 %SetProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE | READ_ONLY); 44 object.bif = func2; 56 assertArrayEquals(["baz", "bif"], enumerable(object), "enum0"); 57 assertFalse(delete object.foo, "delete foo"); 58 assertFalse(delete object.baz, "delete baz"); 59 assertEquals(func1, object.foo, "read foo") [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
Stack.java | 40 * Pushes the given object to the stack 41 * @param object the object to push 43 public void push(T object) { 44 add(object); 48 * Remove the object at the top of the stack and returns it. 49 * @return the removed object or null if the stack was empty. 60 * Returns the object at the top of the stack. 61 * @return the object at the top or null if the stack is empty.
|
/frameworks/support/v4/java/android/support/v4/view/ |
PagerAdapter.java | 36 * <li>{@link #destroyItem(ViewGroup, int, Object)}</li> 38 * <li>{@link #isViewFromObject(View, Object)}</li> 49 * <p>ViewPager associates each page with a key Object instead of working with 54 * and/or {@link #destroyItem(ViewGroup, int, Object)} will follow, and the end 60 * the keys passed to {@link #destroyItem(ViewGroup, int, Object) destroyItem} 61 * should be removed. The method {@link #isViewFromObject(View, Object)} identifies 62 * whether a page View is associated with a given key object.</p> 67 * {@link #destroyItem(ViewGroup, int, Object)} implementation would remove the 68 * View from the parent ViewGroup and {@link #isViewFromObject(View, Object)} 69 * could be implemented as <code>return view == object;</code>.</p [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_MONITOR_ENTER.S | 2 %verify "exception for null object" 4 * Synchronize on an object. 8 GET_VREG(r1, r2) @ r1<- vAA (object) 10 cmp r1, #0 @ null object? 12 beq common_errNullObject @ null object, throw an exception
|
/dalvik/vm/mterp/mips/ |
OP_MONITOR_ENTER.S | 2 %verify "exception for null object" 4 * Synchronize on an object. 8 GET_VREG(a1, a2) # a1 <- vAA (object) 11 # null object? 12 beqz a1, common_errNullObject # null object, throw an exception
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeFilter.cs | 53 public virtual void ApplyOnce( object t, Action whichRule ) 60 // share TreeParser object but not parsing-related state 73 public virtual void Downup( object t ) 76 Func<object, object> pre = ( o ) => 81 Func<object, object> post = ( o ) =>
|
/external/chromium_org/base/mac/ |
scoped_cftyperef.h | 17 // of a CoreFoundation object: any object that can be represented as a 21 // By default, ScopedCFTypeRef<> takes ownership of an object (in the 23 // claim. The caller must own the object it gives to ScopedCFTypeRef<>, and 24 // relinquishes an ownership claim to that object. ScopedCFTypeRef<> does not 27 // then ScopedCFTypeRef<> will call CFRetain() on the object, and the initial 36 CFT object = NULL, 38 : object_(object) { 59 void reset(CFT object = NULL, 62 if (object && policy == base::scoped_policy::RETAIN [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderRuby.cpp | 43 static inline bool isAnonymousRubyInlineBlock(const RenderObject* object) 45 ASSERT(!object 46 || !object->parent()->isRuby() 47 || object->isRubyRun() 48 || (object->isInline() && (object->isBeforeContent() || object->isAfterContent())) 49 || (object->isAnonymous() && object->isRenderBlock() && object->style()->display() == INLINE_BLOCK)) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/ |
galliumcom.idl | 32 [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")]
|