/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
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/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...] |
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/ |
create-event.js | 5 shouldBeTrue("typeof event == 'object'"); 17 shouldBeTrue("typeof event.alpha == 'object'"); 18 shouldBeTrue("typeof event.beta == 'object'"); 19 shouldBeTrue("typeof event.gamma == 'object'");
|
/external/webkit/Source/JavaScriptCore/runtime/ |
BatchedTransitionOptimizer.h | 37 BatchedTransitionOptimizer(JSGlobalData& globalData, JSObject* object) 39 , m_object(object)
|
/external/webkit/Source/WebCore/bindings/scripts/ |
CodeGenerator.pm | 99 my $object = shift; 111 bless($reference, $object); 117 my $object = shift; 125 my $object = shift; 133 $codeGenerator = $ifaceName->new($object, $useOutputDir, $useOutputHeadersDir, $useLayerOnTop, $preprocessor, $writeDependencies, $verbose); 156 my $object = shift; 167 my $interfaceName = $object->StripModule($_); 168 my $parentInterface = $object->ParseInterface($interfaceName, $parentsOnly); 190 my $object = shift; 197 $object->ForAllParents($dataNode, sub [all...] |
/external/webkit/Source/WebCore/html/canvas/ |
WebGLObject.cpp | 50 void WebGLObject::setObject(Platform3DObject object) 52 // object==0 && m_deleted==false indicating an uninitialized state; 54 m_object = object;
|
WebGLRenderbuffer.cpp | 53 void WebGLRenderbuffer::deleteObjectImpl(Platform3DObject object) 55 context()->graphicsContext3D()->deleteRenderbuffer(object);
|
WebGLShader.cpp | 49 void WebGLShader::deleteObjectImpl(Platform3DObject object) 51 context()->graphicsContext3D()->deleteShader(object);
|
/external/webkit/Source/WebCore/rendering/ |
RenderTextControl.h | 121 inline RenderTextControl* toRenderTextControl(RenderObject* object) 123 ASSERT(!object || object->isTextControl()); 124 return static_cast<RenderTextControl*>(object); 127 inline const RenderTextControl* toRenderTextControl(const RenderObject* object) 129 ASSERT(!object || object->isTextControl()); 130 return static_cast<const RenderTextControl*>(object);
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGRoot.h | 103 inline RenderSVGRoot* toRenderSVGRoot(RenderObject* object) 105 ASSERT(!object || object->isSVGRoot()); 106 return static_cast<RenderSVGRoot*>(object); 109 inline const RenderSVGRoot* toRenderSVGRoot(const RenderObject* object) 111 ASSERT(!object || object->isSVGRoot()); 112 return static_cast<const RenderSVGRoot*>(object);
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebBackForwardListPrivate.idl | 35 object,
|
IWebGeolocationPolicyListener.idl | 31 object,
|
IWebPolicyDelegatePrivate.idl | 37 object,
|
IWebTextRenderer.idl | 35 object,
|
IWebURLResponsePrivate.idl | 35 object,
|
/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
|
/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/jmonkeyengine/engine/src/xml/com/jme3/export/xml/ |
XMLExporter.java | 64 public boolean save(Savable object, OutputStream f) throws IOException { 68 domOut.write(object, object.getClass().getName(), null); 80 public boolean save(Savable object, File f) throws IOException { 81 return save(object, new FileOutputStream(f)); 84 public OutputCapsule getCapsule(Savable object) {
|