HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 201 - 225 of 3359) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.1-2.js 54 7. Return a value of type Reference whose base object is Result(5) and
87 PROPERTY[i].object + ".valueOf()",
89 eval( PROPERTY[i].object+ ".valueOf()" ) );
92 PROPERTY[i].object + ".toString()",
94 eval( PROPERTY[i].object+ ".toString()" ) );
119 function Property( object, value, string, number ) {
120 this.object = object;
11.2.1-3-n.js 54 7. Return a value of type Reference whose base object is Result(5) and
83 PROPERTY[i].object + ".valueOf()",
85 eval( PROPERTY[i].object+ ".valueOf()" ) );
88 PROPERTY[i].object + ".toString()",
90 eval( PROPERTY[i].object+ ".toString()" ) );
115 function Property( object, value, string, number ) {
116 this.object = object;
11.2.1-4-n.js 54 7. Return a value of type Reference whose base object is Result(5) and
83 PROPERTY[i].object + ".valueOf()",
85 eval( PROPERTY[i].object+ ".valueOf()" ) );
88 PROPERTY[i].object + ".toString()",
90 eval( PROPERTY[i].object+ ".toString()" ) );
115 function Property( object, value, string, number ) {
116 this.object = object;
  /external/chromium/base/memory/
scoped_nsobject.h 14 // of an NSObject subclass object. Style deviations here are solely for
18 // When scoped_nsobject<> takes ownership of an object (in the constructor or
20 // caller must own the object it gives to scoped_nsobject<>, and relinquishes
21 // an ownership claim to that object. scoped_nsobject<> does not call
34 explicit scoped_nsobject(NST* object = nil)
35 : object_(object) {
42 void reset(NST* object = nil) {
43 // We intentionally do not check that object != object_ as the caller must
49 object_ = object;
70 // a wrapper for [object_ release]. To force a scoped_nsobject<> object t
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGInline.cpp 48 if (const RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this))
49 return object->objectBoundingBox();
56 if (const RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this))
57 return object->strokeBoundingBox();
64 if (const RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this))
65 return object->repaintRectInLocalCoordinates();
87 RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this); local
88 if (!object)
91 FloatRect textBoundingBox = object->strokeBoundingBox();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 42 public class TreeIterator : IEnumerator<object>
45 protected object root;
46 protected object tree;
51 public object up;
52 public object down;
53 public object eof;
58 protected Queue<object> nodes;
65 public TreeIterator( ITreeAdaptor adaptor, object tree )
70 nodes = new Queue<object>();
76 #region IEnumerator<object> Member
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
UnhashableObject.java 20 * An unhashable object to be used in testing as values in our collections.
33 @Override public boolean equals(Object object) {
34 if (object instanceof UnhashableObject) {
35 UnhashableObject that = (UnhashableObject) object;
45 // needed because otherwise Object.toString() calls hashCode()
  /external/junit/src/org/junit/runner/manipulation/
Sorter.java 34 * @param object
36 public void apply(Object object) {
37 if (object instanceof Sortable) {
38 Sortable sortable = (Sortable) object;
  /external/llvm/include/llvm/Object/
Error.h 1 //===- Error.h - system_error extensions for Object -------------*- C++ -*-===//
10 // This declares a new error_category for the Object library.
20 namespace object { namespace in namespace:llvm
42 } // end namespace object.
44 template <> struct is_error_code_enum<object::object_error> : true_type { };
46 template <> struct is_error_code_enum<object::object_error::_> : true_type { };
  /external/webkit/Source/JavaScriptCore/runtime/
NumberObject.cpp 47 NumberObject* object = new (exec) NumberObject(exec->globalData(), globalObject->numberObjectStructure()); local
48 object->setInternalValue(exec->globalData(), number);
49 return object;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
number-001.js 14 this value is not a Number object. Therefore it cannot be transferred to
37 object= new Object();
38 object.toString = Number.prototype.toString;
39 result = object.toString();
47 "object = new Object(); object.toString = Number.prototype.toString; object.toString()" +
number-002.js 9 this value is not a Number object. Therefore it cannot be transferred to
30 object= new Object();
31 object.toString = Number.prototype.valueOf;
32 result = object.toString();
40 "object = new Object(); object.valueOf = Number.prototype.valueOf; object.valueOf()" +
  /external/webkit/Source/WebKit/chromium/src/
NotificationPresenterImpl.h 54 virtual bool show(WebCore::Notification* object);
55 virtual void cancel(WebCore::Notification* object);
56 virtual void notificationObjectDestroyed(WebCore::Notification* object);
62 // WebNotificationPresenter that this object delegates to.
WebAccessibilityCacheImpl.cpp 50 static PassRefPtr<AccessibilityObject> toAccessibilityObject(const WebAccessibilityObject& object)
52 return object;
64 PassRefPtr<WebAccessibilityCacheImpl::WeakHandle> WebAccessibilityCacheImpl::WeakHandle::create(AccessibilityObject* object)
66 RefPtr<WebAccessibilityCacheImpl::WeakHandle> weakHandle = adoptRef(new WebAccessibilityCacheImpl::WeakHandle(object));
72 WebAccessibilityCacheImpl::WeakHandle::WeakHandle(AccessibilityObject* object)
73 : AccessibilityObjectWrapper(object)
144 int WebAccessibilityCacheImpl::addOrGetId(const WebAccessibilityObject& object)
146 if (!object.isValid())
149 RefPtr<AccessibilityObject> o = toAccessibilityObject(object);
156 // Insert new accessibility object in hashmaps and return its newl
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDesktopNotificationsDelegate.h 49 virtual bool show(WebCore::Notification* object);
50 virtual void cancel(WebCore::Notification* object);
51 virtual void notificationObjectDestroyed(WebCore::Notification* object);
  /libcore/luni/src/main/java/java/text/
ParsePosition.java 40 * Compares the specified object to this {@code ParsePosition} and indicates
41 * if they are equal. In order to be equal, {@code object} must be an
45 * @param object
46 * the object to compare with this object.
47 * @return {@code true} if the specified object is equal to this
52 public boolean equals(Object object) {
53 if (!(object instanceof ParsePosition)) {
56 ParsePosition pos = (ParsePosition) object;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1TypeCollection.java 37 public final Object[] DEFAULT;
50 this.DEFAULT = new Object[type.length];
66 * @param object a component's default value
69 protected final void setDefault(Object object, int index) {
71 DEFAULT[index] = object;
75 * Provides an object's values to be encoded
82 * @param object an object to be encoded
83 * @param values an array to store an object's values to be encode
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
DirectoryString.java 57 public int getIndex(java.lang.Object object) {
62 public Object getObjectToEncode(Object object) {
63 return /*(String)*/ object;
  /external/webkit/Source/WebCore/rendering/
RenderMediaControlsChromium.cpp 71 static bool paintMediaMuteButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
73 HTMLMediaElement* mediaElement = toParentMediaElement(object);
87 static bool paintMediaPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
89 HTMLMediaElement* mediaElement = toParentMediaElement(object);
109 static bool paintMediaSlider(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
111 HTMLMediaElement* mediaElement = toParentMediaElement(object);
115 RenderStyle* style = object->style();
154 Color startColor = object->style()->visitedDependentColor(CSSPropertyColor);
168 static bool paintMediaSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
170 if (!object->parent()->isSlider()
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
IDBBindingUtilitiesTest.cpp 117 v8::Local<v8::Object> object = v8::Object::New(); local
118 object->Set(v8::String::New("foo"), v8::String::New("zoo"));
120 RefPtr<SerializedScriptValue> serializedScriptValue = SerializedScriptValue::create(object);
130 v8::Local<v8::Object> object = v8::Object::New(); local
131 object->Set(v8::String::New("foo"), v8::Number::New(456));
133 RefPtr<SerializedScriptValue> serializedScriptValue = SerializedScriptValue::create(object);
156 v8::Local<v8::Object> object = v8::Object::New(); local
171 v8::Local<v8::Object> object = v8::Object::New(); local
188 v8::Local<v8::Object> object = v8::Object::New(); local
214 v8::Local<v8::Object> object = v8::Object::New(); local
231 v8::Local<v8::Object> object = v8::Object::New(); local
    [all...]
  /external/v8/src/
objects-visiting.h 34 // static object visitors used during GC.
36 // two switches on object's instance type to determine object size and layout
60 // can visit object of any size we provide visitors specialized by
61 // object size in words.
210 HeapObject* object,
213 Object** start_slot = reinterpret_cast<Object**>(object->address() +
215 Object** end_slot = reinterpret_cast<Object**>(object->address()
    [all...]
  /bionic/libc/arch-x86/bionic/
crtend.S 12 .type __FRAME_END__, @object
crtend_so.S 9 .type __FRAME_END__, @object
  /cts/tools/vm-tests-tf/src/dot/junit/
DxAbstractMain.java 38 static public void assertEquals(Object expected, Object actual) {
54 static public void assertNotNull(Object object) {
55 if (object == null) throw new RuntimeException("AssertionFailedError: object was null");
58 static public void assertNull(Object object) {
59 if (object != null) throw new RuntimeException("AssertionFailedError: object was not null")
    [all...]
  /dalvik/vm/mterp/x86/
OP_THROW.S 2 %verify "exception for null object"
4 * Throw an exception object in the current thread.
8 GET_VREG_R %eax rINST # eax<- exception object
10 testl %eax,%eax # null object?

Completed in 346 milliseconds

1 2 3 4 5 6 7 891011>>