HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 101 - 125 of 137) sorted by null

1 2 3 45 6

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArrayListTest.java 35 static Object[] objArray;
37 objArray = new Object[100];
96 * @tests java.util.ArrayList#add(int, java.lang.Object)
99 // Test for method void java.util.ArrayList.add(int, java.lang.Object)
100 Object o;
101 alist.add(50, o = new Object());
102 assertTrue("Failed to add Object", alist.get(50) == o);
106 Object oldItem = alist.get(25);
112 alist.add(0, o = new Object());
113 assertEquals("Failed to add Object", alist.get(0), o)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 47 if (Object.isFunction(properties[0]))
54 Object.extend(klass, Class.Methods);
80 var properties = Object.keys(source);
82 if (!Object.keys({ toString: true }).length)
87 if (ancestor && Object.isFunction(value) &&
106 Object.extend = function(destination, source) {
112 Object.extend(Object, {
113 inspect: function(object) {
115 if (Object.isUndefined(object)) return 'undefined'
    [all...]
mootools-1.2.2-core-nc.js 3 MooTools - My Object Oriented JavaScript Tools.
33 var object = initialize || legacy;
36 object.constructor = Native;
37 object.$family = {name: 'native'};
38 if (legacy && initialize) object.prototype = legacy.prototype;
39 object.prototype.constructor = object;
43 object.prototype.$family = {name: family};
44 Native.typize(object, family);
54 object.alias = function(a1, a2, a3)
42 object.prototype.$family = {name: family}; class
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 36 // * Each allocated object's contents are generated by
37 // hashing the object pointer, and a generation count
38 // in the object. This allows us to easily check for
41 // a. Allocate an object
42 // b. Increment an object's generation count and update
44 // c. Pass the object to another thread
45 // d. Free an object
46 // Also, at the end of every step, object(s) are freed to maintain
165 static const int FLAGS_lgmaxsize = 16; // lg() of the max size object to alloc
178 static const int FLAGS_passweight = 1; // Weight for passing object
420 Object object; local
443 Object object = heap_[index]; local
471 Object object = heap_[index]; local
508 const Object& object = copy[i]; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 36 // * Each allocated object's contents are generated by
37 // hashing the object pointer, and a generation count
38 // in the object. This allows us to easily check for
41 // a. Allocate an object
42 // b. Increment an object's generation count and update
44 // c. Pass the object to another thread
45 // d. Free an object
46 // Also, at the end of every step, object(s) are freed to maintain
165 static const int FLAGS_lgmaxsize = 16; // lg() of the max size object to alloc
178 static const int FLAGS_passweight = 1; // Weight for passing object
420 Object object; local
443 Object object = heap_[index]; local
471 Object object = heap_[index]; local
508 const Object& object = copy[i]; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakref.py 36 class Object:
40 return "<Object %r>" % self.arg
42 if isinstance(other, Object):
46 if isinstance(other, Object):
107 # tests that all references to the object are invalidated
110 # for a particular object at a time.
112 def callback(object, self=self):
138 "weak reference to live object should be live")
141 "<ref>() should return original object if live")
151 "ref2 should be dead after deleting object reference"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakref.py 36 class Object:
40 return "<Object %r>" % self.arg
42 if isinstance(other, Object):
46 if isinstance(other, Object):
107 # tests that all references to the object are invalidated
110 # for a particular object at a time.
112 def callback(object, self=self):
138 "weak reference to live object should be live")
141 "<ref>() should return original object if live")
151 "ref2 should be dead after deleting object reference"
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
raytrace.js 42 Object.extend = function(destination, source) {
357 Flog.RayTracer.Material.Solid.prototype = Object.extend(
382 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
608 this.options = Object.extend({
  /external/chromium_org/sandbox/win/tools/finder/
ntundoc.h 169 PVOID Object;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 37 Object.extend = function(destination, source) {
358 Flog.RayTracer.Material.Solid.prototype = Object.extend(
383 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
634 this.options = Object.extend({
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 37 Object.extend = function(destination, source) {
358 Flog.RayTracer.Material.Solid.prototype = Object.extend(
383 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
634 this.options = Object.extend({
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 37 Object.extend = function(destination, source) {
352 Flog.RayTracer.Material.Solid.prototype = Object.extend(
377 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
603 this.options = Object.extend({
  /external/chromium_org/v8/benchmarks/
raytrace.js 42 Object.extend = function(destination, source) {
357 Flog.RayTracer.Material.Solid.prototype = Object.extend(
382 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
608 this.options = Object.extend({
  /external/chromium_org/v8/src/
factory.cc 45 Handle<Box> Factory::NewBox(Handle<Object> value, PretenureFlag pretenure) {
373 Handle<Object> thrown_object) {
445 // Create and initialize script object.
502 Handle<Cell> Factory::NewCell(Handle<Object> value) {
511 Handle<PropertyCell> Factory::NewPropertyCell(Handle<Object> value) {
653 // context will be used when creating object, regexp and array
680 Handle<Object> Factory::NewNumber(double value,
684 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
688 Handle<Object> Factory::NewNumberFromInt(int32_t value,
692 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
774 Handle<JSArray> object = NewJSArrayWithElements(array); local
    [all...]
  /external/v8/benchmarks/
raytrace.js 42 Object.extend = function(destination, source) {
357 Flog.RayTracer.Material.Solid.prototype = Object.extend(
382 Flog.RayTracer.Material.Chessboard.prototype = Object.extend(
608 this.options = Object.extend({
  /external/v8/src/
factory.cc 306 Handle<Object> thrown_object) {
373 // Create and initialize script object.
433 Handle<Object> value) {
549 // Store the object, regexp and array functions in the literals
551 // object, regexp and array literals in this function.
569 Handle<Object> Factory::NewNumber(double value,
573 isolate()->heap()->NumberFromDouble(value, pretenure), Object);
577 Handle<Object> Factory::NewNumberFromInt(int32_t value,
581 isolate()->heap()->NumberFromInt32(value, pretenure), Object);
585 Handle<Object> Factory::NewNumberFromUint(uint32_t value
652 Handle<JSArray> object = NewJSArrayWithElements(array); local
    [all...]
objects.h 46 // Most object types in the V8 JavaScript are described in this file.
49 // - MaybeObject (an object or a failure)
51 // - Object
125 // Formats of Object*:
204 // Indicates whether a get method should implicitly create the object looked up.
218 // As an example, a JavaScript object is a heap object and its map
233 // Object::IsString.
237 // 'object', whereas JS_FUNCTION_TYPE has typeof 'function'.
273 /* Object::IsExternalArray(). */
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 170 assertSame(p.getLock().getClass(), Object.class);
    [all...]
  /external/chromium_org/sandbox/win/src/
nt_internals.h 542 PVOID Object;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 169 class Res(object):
175 class RawTypes(object):
184 elif json_type == "object":
185 return RawTypes.Object
215 class BaseType(object):
381 class Object(BaseType):
384 return "Object"
405 template_type = "Object"
422 return TypeModel.Object
576 class RefPtrBased(object)
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 201 // the object on program termination.
321 llvm::Value *Object = createReferenceTemporary(*this, M, E);
322 LValue RefTempDst = MakeAddrLValue(Object, M->getType());
324 if (llvm::GlobalVariable *Var = dyn_cast<llvm::GlobalVariable>(Object)) {
333 pushTemporaryCleanup(*this, M, E, Object);
352 llvm::Value *Object = createReferenceTemporary(*this, M, E);
353 if (llvm::GlobalVariable *Var = dyn_cast<llvm::GlobalVariable>(Object)) {
358 EmitAnyExprToMem(E, Object, Qualifiers(), /*IsInit*/true);
361 EmitAnyExprToMem(E, Object, Qualifiers(), /*IsInit*/true);
363 pushTemporaryCleanup(*this, M, E, Object);
    [all...]
  /external/v8/include/
v8.h 88 class Object;
114 class Object;
127 * This callback should either explicitly invoke Dispose on |object| if
130 * \param object the weak global object to be reclaimed by the garbage collector
131 * \param parameter the value passed in when making the weak global object
133 typedef void (*WeakReferenceCallback)(Persistent<Value> object,
145 * An object reference managed by the v8 garbage collector.
150 * point directly to an object. Instead, all objects are stored in
152 * whenever an object moves. Handles should always be passed by valu
    [all...]
  /external/chromium_org/v8/include/
v8.h 131 class Object;
167 class Object;
205 * This callback should either explicitly invoke Dispose on |object| if
208 * \param object the weak global object to be reclaimed by the garbage collector
209 * \param parameter the value passed in when making the weak global object
215 Persistent<T>* object,
228 * An object reference managed by the v8 garbage collector.
233 * point directly to an object. Instead, all objects are stored in
235 * whenever an object moves. Handles should always be passed by valu
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
TreeTransform.h 96 /// \brief Private RAII object that helps us forget and then re-remember
136 /// \brief Retrieves a reference to the semantic analysis object used for
169 /// \brief RAII object that temporarily sets the base location and entity
457 /// access expression, this is the type of the object whose member template
    [all...]

Completed in 1904 milliseconds

1 2 3 45 6