HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-003.js 43 // SECTION1: define getter/setter directly on an object (not its prototype)
44 obj = new Object();
74 // SECTION2: define getter/setter in Object.prototype
75 Object.prototype.nameSETS = 0;
76 Object.prototype.nameGETS = 0;
77 Object.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
78 Object.prototype.name getter = function() {this.nameGETS++; return this._name;}
80 obj = new Object();
getset-006.js 57 // SECTION1: define getter/setter directly on an object (not its prototype)
58 obj = new Object();
83 // SECTION2: define getter/setter in Object.prototype
84 Object.prototype.nameSETS = 0;
85 Object.prototype.nameGETS = 0;
86 Object.prototype.__defineSetter__(cnName, cnNameSetter);
87 Object.prototype.__defineGetter__(cnName, cnNameGetter);
89 obj = new Object();
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-tagcloud.js 38 if (!Object.prototype.toJSONString) {
49 case 'object':
99 Object.prototype.toJSONString = function (w) {
111 case 'object':
135 Object.prototype.hasOwnProperty.apply(this, [k])) {
138 case 'object':
182 if (v && typeof v === 'object') {
184 if (Object.prototype.hasOwnProperty.apply(v, [i])) {
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-tagcloud.js 38 if (!Object.prototype.toJSONString) {
49 case 'object':
99 Object.prototype.toJSONString = function (w) {
111 case 'object':
135 Object.prototype.hasOwnProperty.apply(this, [k])) {
138 case 'object':
182 if (v && typeof v === 'object') {
184 if (Object.prototype.hasOwnProperty.apply(v, [i])) {
    [all...]
  /dalvik/dx/tests/089-dex-define-object/
Object.java 19 public class Object {
20 public Object() {
24 public boolean equals(Object o) {
32 public final native Class<? extends Object> getClass();
  /libcore/luni/src/main/java/java/lang/
Object.java 43 * &#x0040;Override public boolean equals(Object o) {
50 * // Return false if the other object has the wrong type.
131 public class Object {
133 * Constructs a new instance of {@code Object}.
135 public Object() {
139 * Creates and returns a copy of this {@code Object}. The default
142 * object references) from this instance to the new instance. A "deep" copy,
148 * @return a copy of this object.
150 * if this object's class does not implement the {@code
153 protected Object clone() throws CloneNotSupportedException
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.h 113 template<typename T> struct Object : NPObject {
117 Object* object = static_cast<Object*>(pluginTest->NPN_CreateObject(npClass())); local
119 object->m_pluginTest = pluginTest;
120 return object;
155 Object()
160 virtual ~Object()
  /external/android-mock/tests/com/google/android/testing/mocking/
FileUtilsTest.java 28 assertEquals(convertPathToNative("java/lang/Object.class"),
29 FileUtils.getFilenameFor(Object.class.getName()));
36 assertEquals(convertPathToNative("java/lang/Object.class"),
37 FileUtils.getFilenameFor(Object.class.getName()));
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 19 struct Object {
21 Object *Other;
23 typedef ArrayRecycler<Object> ARO;
53 ArrayRecycler<Object> DUT;
56 Object *A1 = DUT.allocate(Cap, Allocator);
60 Object *A2 = DUT.allocate(Cap, Allocator);
64 Object *A3 = DUT.allocate(Cap, Allocator);
84 Object *A2x = DUT.allocate(Cap, Allocator);
93 Object *A3x = DUT.allocate(Cap, Allocator);
95 Object *A1x = DUT.allocate(Cap, Allocator)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/site_scons/
talk.py 18 env: The environment object.
47 env: The environment object.
56 def Object(env, **kwargs):
145 env: The current environment object.
  /external/giflib/
gifalloc.c 41 * Color map object functions
52 ColorMapObject *Object;
60 Object = (ColorMapObject *)malloc(sizeof(ColorMapObject));
61 if (Object == (ColorMapObject *) NULL) {
65 Object->Colors = (GifColorType *)calloc(ColorCount, sizeof(GifColorType));
66 if (Object->Colors == (GifColorType *) NULL) {
70 Object->ColorCount = ColorCount;
71 Object->BitsPerPixel = BitSize(ColorCount);
74 memcpy((char *)Object->Colors,
78 return (Object);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
GcFinalization.java 56 * Object x = new MyClass() {
67 * final WeakHashMap<Object, Object> map = new WeakHashMap<Object, Object>();
68 * map.put(new Object(), Boolean.TRUE);
91 * 10 seconds ought to be long enough for any object to be GC'ed and finalized. Unless we have a
175 * Creates a garbage object that counts down the latch in its finalizer. Sequestered into a
179 new Object() { @Override protected void finalize() { latch.countDown(); }};
  /external/v8/benchmarks/
deltablue.js 49 Object.prototype.inheritsFrom = function (shuper) {
332 var Direction = new Object();
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-deltablue.js 43 Object.prototype.inherits = function (shuper) {
326 var Direction = new Object();
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 43 Object.prototype.inheritsFrom = function (shuper) {
326 var Direction = new Object();
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 43 Object.prototype.inheritsFrom = function (shuper) {
326 var Direction = new Object();
  /external/skia/legacy/src/utils/
SkJSON.cpp 53 struct SkJSON::Object::Slot {
78 Object* fObject;
87 SkJSON::Object::Slot::~Slot() {
107 SkJSON::Object::Iter::Iter(const Object& obj) : fSlot(obj.fHead) {}
109 bool SkJSON::Object::Iter::done() const {
113 void SkJSON::Object::Iter::next() {
118 SkJSON::Type SkJSON::Object::Iter::type() const {
123 const char* SkJSON::Object::Iter::name() const {
128 SkJSON::Object* SkJSON::Object::Iter::objectValue() const
    [all...]
  /external/skia/src/utils/
SkJSON.cpp 53 struct SkJSON::Object::Slot {
78 Object* fObject;
87 SkJSON::Object::Slot::~Slot() {
107 SkJSON::Object::Iter::Iter(const Object& obj) : fSlot(obj.fHead) {}
109 bool SkJSON::Object::Iter::done() const {
113 void SkJSON::Object::Iter::next() {
118 SkJSON::Type SkJSON::Object::Iter::type() const {
123 const char* SkJSON::Object::Iter::name() const {
128 SkJSON::Object* SkJSON::Object::Iter::objectValue() const
    [all...]
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 59 * \param _Object The object type that lives in the hierarchy. It must have value semantics. Either bounding_box(_Object) must
71 typedef _Object Object;
72 typedef std::vector<Object, aligned_allocator<Object> > ObjectList;
78 typedef const Object *ObjectIterator;
82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */
85 /** Given an iterator range over \a Object references and an iterator range over their bounding boxes, constructs the BVH */
88 /** Given an iterator range over \a Object references, constructs the BVH, overwriting whatever is in there currently.
89 * Requires that bounding_box(Object) return a Volume. *
    [all...]
  /external/skia/include/utils/
SkJSON.h 29 class Object {
34 Object();
35 Object(const Object&);
36 ~Object();
40 * parameter is copied, but ownership of the Object parameter is
41 * transferred. The Object parameter may be null, but the name must
44 void addObject(const char name[], Object* value);
80 * Return the number of slots/fields in this object. These can be
89 bool findObject(const char name[], Object** = NULL) const
    [all...]
  /external/skia/legacy/include/utils/
SkJSON.h 29 class Object {
34 Object();
35 Object(const Object&);
36 ~Object();
40 * parameter is copied, but ownership of the Object parameter is
41 * transferred. The Object parameter may be null, but the name must
44 void addObject(const char name[], Object* value);
80 * Return the number of slots/fields in this object. These can be
89 bool findObject(const char name[], Object** = NULL) const
    [all...]
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 40 Object,
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDInput.h 38 Object,
  /libcore/luni/src/test/java/libcore/java/lang/ref/
FinalizeTest.java 32 fail("object not yet finalized");
80 assertTrue("object whose constructor threw was not finalized", ConstructionFails.finalized);
96 * The finalizer watch dog exits the VM if any object takes more than 10 s
111 new Object() {
134 new Object() {
  /external/v8/src/
v8natives.js 31 // var $Object = global.Object;
48 function InstallFunctions(object, attributes, functions) {
50 %OptimizeObjectForAddingMultipleProperties(object, functions.length >> 1);
57 %SetProperty(object, key, f, attributes);
60 %ToFastProperties(object);
64 // The "prototype" property of the function object is made non-configurable,
65 // and the prototype object is made non-extensible. The latter prevents
157 // For consistency with JSC we require the global object passed to
158 // eval to be the global object from which 'eval' originated. Thi
    [all...]

Completed in 1998 milliseconds

12 3 4