HomeSort by relevance Sort by last modified time
    Searched refs:OBJECT (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/qemu/android/build/
mkdeps.sh 29 # $1: object file (full path)
34 # quote the object path. we change a single '.' into
37 OBJECT=`echo $1 | sed -e s/\\\\./\\\\\\\\./g`
38 #echo OBJECT=$OBJECT
40 OBJ_NAME=`basename $OBJECT`
43 # we replace $OBJ_NAME with $OBJECT only if $OBJ_NAME starts the line
45 # a correct dependency line with the full path to the object file.
48 cat $2 | sed -e s%^$OBJ_NAME%$OBJECT%g > $3 && rm -f $2
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 7 public static final java.lang.Object OBJECT;
8 static { OBJECT = null; }
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
InterfaceEnum.java 21 public static final Object OBJECT = new Object();
  /dalvik/hit/src/com/android/hit/
Types.java 22 public static final int OBJECT = 2;
38 case '[': return mIdSize; // array object
39 case 'L': return mIdSize; // object
49 case OBJECT: return mIdSize;
66 case 'L': return "object";
76 case OBJECT: return "object";
ArrayInstance.java 38 if (mType != Types.OBJECT) {
43 * mData holds a stream of object instance ids
93 if (mType != Types.OBJECT) {
98 * mData holds a stream of object instance ids
140 // If this isn't an object array then we can't refer to an object
141 if (mType != Types.OBJECT) {
154 * all of the array elements that refer to the target object.
ClassInstance.java 54 * Spin through the list of fields, find all object references,
62 if (type == Types.OBJECT) {
114 * Spin through the list of fields, find all object references,
122 if (type == Types.OBJECT) {
176 if (type == Types.OBJECT) {
ClassObj.java 56 * Spin through the list of static fields, find all object references,
65 if (type == Types.OBJECT) {
199 * Spin through the list of static fields, find all object references,
207 if (type == Types.OBJECT) {
234 public final boolean equals(Object o) {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
number-003.js 9 this value is not a Number object. Therefore it cannot be transferred to
31 OBJECT = new String("Infinity");
32 OBJECT.valueOf = VALUE_OF;
33 result = OBJECT.valueOf();
41 "Assigning Number.prototype.valueOf as the valueOf of a String object " +
string-001.js 7 object, the toString() method happens to return the same
11 runtime error if its this value is not a String object.
33 OBJECT = new Object();
34 OBJECT.toString = String.prototype.toString();
35 result = OBJECT.toString();
43 "OBJECT = new Object; "+
44 " OBJECT.toString = String.prototype.toString; OBJECT.toString()"
    [all...]
string-002.js 9 runtime error if its this value is not a String object.
31 var OBJECT =new Object();
32 OBJECT.valueOf = String.prototype.valueOf;
33 result = OBJECT.valueOf();
41 "OBJECT = new Object; OBJECT.valueOf = String.prototype.valueOf;"+
42 "result = OBJECT.valueOf();" +
expression-006.js 28 var OBJECT = new Object();
29 result = new OBJECT();
37 "OBJECT = new Object; result = new OBJECT()" +
expression-002.js 7 Try to access properties of an object whose value is undefined.
29 OBJECT = new Property( "undefined", void 0, "undefined", NaN );
36 result = OBJECT.value.valueOf();
45 "Get the value of an object whose value is undefined "+
52 function Property( object, value, string, number ) {
53 this.object = object;
expression-003.js 7 Try to access properties of an object whose value is undefined.
24 OBJECT = new Property( "undefined", void 0, "undefined", NaN );
31 result = OBJECT.value.toString();
40 "Get the toString value of an object whose value is undefined "+
47 function Property( object, value, string, number ) {
48 this.object = object;
expression-004.js 19 var OBJECT = new Property( "null", null, "null", 0 );
26 result = OBJECT.value.toString();
34 "Get the toString value of an object whose value is null "+
41 function Property( object, value, string, number ) {
42 this.object = object;
expression-011.js 26 var OBJECT = new BOOLEAN();
  /external/webkit/WebCore/WebCore.gyp/mac/
adjust_visibility.sh 82 # Use ld -r to relink each object that was in the archive. Providing an
85 for OBJECT in "${ARCH_DIR}/"*.o ; do
86 NEW_OBJECT="${OBJECT}.new"
87 ld -o "${NEW_OBJECT}" -r "${OBJECT}" \
89 mv "${NEW_OBJECT}" "${OBJECT}"
92 # Build an architecture-specific archive from the modified object files.
97 # Toss the object files out now that they're in the archive.
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.2-1-n.js 39 3. If Type(Result(2)) is not Object, generate a runtime error.
44 6. If Type(Result(5)) is not Object, generate a runtime error.
53 4. If Type(Result(2)) is not Object, generate a runtime error.
58 7. If Type(Result(6)) is not Object, generate a runtime error.
75 var OBJECT = new Object();
78 "OBJECT = new Object; var o = new OBJECT()",
80 o = new OBJECT() );
    [all...]
11.2.3-1.js 34 4.If Type(Result(3)) is not Object, generate a runtime error.
39 7.If Result(6) is an activation object, Result(7) is null. Otherwise, Result(7) is
50 ECMAScript object. Whether calling a host object can return a value of
81 var OBJECT = true;
84 "OBJECT.toString()",
86 OBJECT.toString() );
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 182 * so the merged result is just Object.
184 return Type.OBJECT;
190 * Object in this phase. This is fine here, but it
193 return Type.OBJECT;
212 * type {@code Object} is the supertype of all reference
232 // Treat return types as Object for the purposes of this method.
235 supertype = Type.OBJECT;
240 subtype = Type.OBJECT;
267 } else if (supertype == Type.OBJECT) {
269 * Object is assignable from any reference type
    [all...]
ByteCatchList.java 131 * match or the class {@code Object} which represents a catch-all.
143 if ((one == type) || (one == CstType.OBJECT)) {
299 * @return {@code non-null;} the exception class; {@link CstType#OBJECT}
304 exceptionClass : CstType.OBJECT;
Simulator.java 137 * cross-object field access)
222 if (type == Type.OBJECT) {
224 * For an object return, use the best-known
248 machine.popArgs(frame, Type.OBJECT);
254 machine.popArgs(frame, Type.OBJECT);
502 * "iload" (per se) and "Object" for "aload". So, when
580 machine.popArgs(frame, Type.OBJECT);
585 machine.popArgs(frame, Type.OBJECT, fieldType);
658 machine.popArgs(frame, Type.OBJECT);
672 machine.popArgs(frame, Type.OBJECT, Type.OBJECT)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 41 /** {@code non-null;} the list {@code [Object]} */
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
68 /** {@code non-null;} the list {@code [Object, Object]} */
70 StdTypeList.make(Type.OBJECT, Type.OBJECT);
72 /** {@code non-null;} the list {@code [int, Object]} */
74 StdTypeList.make(Type.INT, Type.OBJECT);
76 /** {@code non-null;} the list {@code [long, Object]} */
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.2.2-2.js 29 determine the scope chain, the variable object, and the this value. If
39 object and using empty property attributes.
58 var OBJECT = new MyObject( "hello" );
66 with ( OBJECT ) {
72 testcases[tc++] = new TestCase( SECTION, "new MyObject('hello').getClass()", "[object Object]", getClass() );
73 testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').getClass())", "[object Object]", eval("getClass()") );
75 testcases[tc++] = new TestCase( SECTION, "eval('getClass') == Object.prototype.toString", true, eval("getClass") == Object.prototype.toString )
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 53 /** {@code r,x: Object :: r = x;} */
55 new Rop(RegOps.MOVE, Type.OBJECT, StdTypeList.OBJECT, "move-object");
87 /** {@code r,param(x): Object :: r = param(x);} */
89 new Rop(RegOps.MOVE_PARAM, Type.OBJECT, StdTypeList.EMPTY,
90 "move-param-object");
108 /** {@code r, literal: Object :: r = literal;} */
110 new Rop(RegOps.CONST, Type.OBJECT, StdTypeList.EMPTY,
111 Exceptions.LIST_Error, "const-object");
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 31 /** {@code non-null;} instance corresponding to the class {@code Object} */
32 public static final CstType OBJECT = intern(Type.OBJECT);
157 public boolean equals(Object other) {

Completed in 607 milliseconds

1 2 3