| /external/iproute2/doc/ |
| ip-cref.tex | 45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]] 108 \verb|OBJECT| is the object to manage or to get information about. 109 The object types currently understood by \verb|ip| are: 126 \verb|COMMAND| specifies the action to perform on the object. 127 The set of possible actions depends on the object type. 139 The arguments depend on the command and object. There are two types of arguments: 228 \paragraph{Object:} A \verb|link| is a network device and the corresponding 550 \paragraph{Object:} The \verb|address| is a protocol (IP or IPv6) address attached 837 \paragraph{Object:} \verb|neighbour| objects establish bindings between protoco [all...] |
| /libcore/luni/src/main/java/java/util/ |
| Arrays.java | 53 public boolean contains(Object object) { 54 if (object != null) { 56 if (object.equals(element)) { 80 public int indexOf(Object object) { 81 if (object != null) { 83 if (object.equals(a[i])) { 98 public int lastIndexOf(Object object) { [all...] |
| /external/v8/src/ |
| handles.cc | 59 Object** HandleScope::Extend() { 60 Object** result = current_.next; 74 Object** limit = &impl->blocks()->last()[kHandleBlockSize]; 102 void HandleScope::ZapRange(Object** start, Object** end) { 104 for (Object** p = start; p < end; p++) { 163 // of expected properties in an object. The static hack below 184 void NormalizeProperties(Handle<JSObject> object, 187 CALL_HEAP_FUNCTION_VOID(object->NormalizeProperties( 193 void NormalizeElements(Handle<JSObject> object) { [all...] |
| factory.cc | 178 // Create and initialize script object. 313 // Store the object, regexp and array functions in the literals 315 // object, regexp and array literals in this function. 325 Handle<Object> Factory::NewNumber(double value, 327 CALL_HEAP_FUNCTION(Heap::NumberFromDouble(value, pretenure), Object); 331 Handle<Object> Factory::NewNumberFromInt(int value) { 332 CALL_HEAP_FUNCTION(Heap::NumberFromInt32(value), Object); 336 Handle<Object> Factory::NewNumberFromUint(uint32_t value) { 337 CALL_HEAP_FUNCTION(Heap::NumberFromUint32(value), Object); 347 Handle<Object> Factory::NewTypeError(const char* type 397 Handle<JSArray> object = Factory::NewJSArrayWithElements(array); local [all...] |
| /external/webkit/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...] |
| /libcore/luni/src/test/java/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...] |
| /dalvik/vm/oo/ |
| Object.h | 18 * Declaration of the fundamental Object type and refinements thereof, plus 186 #define CLASS_SMALLEST_OFFSET (sizeof(struct Object)) 234 * Array objects - an object created with a "new array" instruction 235 * Data objects - an object that is neither of the above 241 * All objects have an Object header followed by type-specific data. 243 typedef struct Object { 244 /* ptr to class object */ 252 } Object; 255 * Properly initialize an Object. 256 * void DVM_OBJECT_INIT(Object *obj, ClassObject *clazz_ [all...] |
| /external/v8/benchmarks/ |
| raytrace.js | 42 Object.extend = function(destination, source) { 363 Flog.RayTracer.Material.Solid.prototype = Object.extend( 388 Flog.RayTracer.Material.Chessboard.prototype = Object.extend( 639 this.options = Object.extend({
|
| /external/webkit/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/webkit/WebCore/bridge/qt/ |
| qt_runtime.cpp | 99 Object, 109 "RegExp", "Array", "RTObject", "Object", "Null", "RTArray"}; 130 JSObject *object = val.toObject(exec); local 131 if (object->inherits(&RuntimeArray::s_info)) // RuntimeArray 'inherits' from Array, but not in C++ 133 else if (object->inherits(&JSArray::info)) 135 else if (object->inherits(&DateInstance::info)) 137 else if (object->inherits(&RegExpObject::info)) 139 else if (object->inherits(&RuntimeObjectImp::s_info)) 141 return Object; 152 JSObject* object = 0 642 JSObject* object = value.toObject(exec); local [all...] |
| /external/v8/include/ |
| v8.h | 111 class Object; 133 class Object; 145 * \param object the weak global object to be reclaimed by the garbage collector 146 * \param parameter the value passed in when making the weak global object 148 typedef void (*WeakReferenceCallback)(Persistent<Value> object, 160 * An object reference managed by the v8 garbage collector. 165 * point directly to an object. Instead, all objects are stored in 167 * whenever an object moves. Handles should always be passed by value 178 * It is safe to extract the object stored in the handle b [all...] |
| /prebuilt/sdk/5/ |
| android.jar | |
| /prebuilt/sdk/6/ |
| android.jar | |
| /prebuilt/sdk/7/ |
| android.jar | |
| /prebuilt/sdk/8/ |
| android.jar | |