HomeSort by relevance Sort by last modified time
    Searched refs:OBJECT (Results 76 - 100 of 113) sorted by null

1 2 34 5

  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLObjectElement07.js 49 docsLoaded += preload(docRef, "doc", "object");
81 Retrieve the codeType attribute of the second OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement08.js 49 docsLoaded += preload(docRef, "doc", "object");
80 Retrieve the data attribute of the first OBJECT element and examine
99 doc = load(docRef, "doc", "object");
100 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement09.js 49 docsLoaded += preload(docRef, "doc", "object");
78 The declare attribute specifies this object should be declared only and
81 Retrieve the declare attribute of the second OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement10.js 49 docsLoaded += preload(docRef, "doc", "object");
79 object.
81 Retrieve the height attribute of the first OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement11.js 49 docsLoaded += preload(docRef, "doc", "object");
79 of this image, applet or object.
81 Retrieve the hspace attribute of the first OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement12.js 49 docsLoaded += preload(docRef, "doc", "object");
79 object.
81 Retrieve the standby attribute of the first OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement13.js 49 docsLoaded += preload(docRef, "doc", "object");
81 Retrieve the tabIndex attribute of the first OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement14.js 49 docsLoaded += preload(docRef, "doc", "object");
81 Retrieve the type attribute of the first OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement15.js 49 docsLoaded += preload(docRef, "doc", "object");
80 Retrieve the useMap attribute of the first OBJECT element and examine
99 doc = load(docRef, "doc", "object");
100 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement16.js 49 docsLoaded += preload(docRef, "doc", "object");
79 image, applet or object.
81 Retrieve the vspace attribute of the first OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement17.js 49 docsLoaded += preload(docRef, "doc", "object");
80 Retrieve the width attribute of the first OBJECT element and examine
99 doc = load(docRef, "doc", "object");
100 nodeList = doc.getElementsByTagName("object");
HTMLObjectElement18.js 49 docsLoaded += preload(docRef, "doc", "object");
78 The name attribute specifies form control or object name when submitted
81 Retrieve the name attribute of the second OBJECT element and examine
100 doc = load(docRef, "doc", "object");
101 nodeList = doc.getElementsByTagName("object");
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 84 "(Ljava/lang/String;ZLjava/lang/Object;)V");
95 "(Ljava/lang/String;ZLjava/lang/Object;)I");
121 "(Ljava/lang/String;ZLjava/lang/Object;)J");
128 "(Ljava/lang/String;ZLjava/lang/Object;)F");
135 "(Ljava/lang/String;ZLjava/lang/Object;)D");
139 case Type.OBJECT:
143 "(Ljava/lang/String;ZLjava/lang/Object;)Ljava/lang/Object;");
164 case Type.OBJECT:
284 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack)
    [all...]
RenameClassAdapter.java 83 * Renames an object type, e.g. "Lcom.package.MyClass;" or an array type that has an
84 * object element, e.g. "[Lcom.package.MyClass;"
92 if (type.getSort() == Type.OBJECT) {
107 * Renames an object type, e.g. "Lcom.package.MyClass;" or an array type that has an
108 * object element, e.g. "[Lcom.package.MyClass;".
109 * This is like renameType() except that it returns a Type object.
110 * If the type doesn't need to be renamed, returns the input type object.
117 if (type.getSort() == Type.OBJECT) {
265 String signature, Object value) {
326 public void visitLdcInsn(Object cst)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 247 if (type.equals(Type.OBJECT)) {
LocalList.java 173 public boolean equals(Object other) {
821 * null" type into simply {@code Object}. This method needs to
835 return orig.withType(Type.OBJECT);
  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 427 if (localType == Type.OBJECT) {
Ropper.java 419 * Gets the register spec to use to hold the object to synchronize on,
434 return RegisterSpec.make((reg < 1) ? 1 : reg, Type.OBJECT);
597 * @return {@code non-null;} the method object
610 // Construct the method object to wrap it all up.
811 catchesAny |= (exceptionClass == CstType.OBJECT);
833 catchTypes[targ] = Type.OBJECT;
857 insn = insn.withAddedCatch(Type.OBJECT);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 247 if (type.equals(Type.OBJECT)) {
LocalList.java 173 public boolean equals(Object other) {
821 * null" type into simply {@code Object}. This method needs to
835 return orig.withType(Type.OBJECT);
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 77 private transient volatile Object[] elements;
83 elements = EmptyArray.OBJECT;
98 this.elements = Arrays.copyOf(array, array.length, Object[].class);
101 @Override public Object clone() {
120 public boolean contains(Object o) {
125 Object[] snapshot = elements;
129 static boolean containsAll(Collection<?> collection, Object[] snapshot, int from, int to) {
130 for (Object o : collection) {
139 * Searches this list for {@code object} and returns the index of the first
142 * @return the index or -1 if the object was not found
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 57 * {@code null-ok;} the class file object being constructed;
263 ((exceptionClass == CstType.OBJECT) ? "<any>" :
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 36 * Sets the type name of this object type. If the given type name is
38 * the name of this object type.
49 public abstract boolean equals(Object obj);
87 public boolean equals(Object obj) {
169 public int getTypeTag() { return StackMapTable.OBJECT; }
188 public boolean equals(Object obj) {
261 && oldName.equals("[Ljava.lang.Object;")) {
263 of the operand of arraylength to java.lang.Object[].
264 Thus, int[] etc. must be a subtype of java.lang.Object[].
295 return "java.lang.Object";
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Method.java 144 Object[] annotation = getSignatureAnnotation(declaringClass, slot);
157 static native Object[] getSignatureAnnotation(Class declaringClass, int slot);
361 public Object getDefaultValue() {
364 native private Object getDefaultValue(Class declaringClass, int slot);
367 * Indicates whether or not the specified {@code object} is equal to this
368 * method. To be equal, the specified object must be an instance
372 * @param object
373 * the object to compare
375 * @return {@code true} if the specified object is equal to this
381 public boolean equals(Object object)
    [all...]
  /prebuilt/common/asm/
asm-3.1.jar 

Completed in 1063 milliseconds

1 2 34 5