Searched refs:getType (Results 1 - 25 of 223) sorted by relevance

123456789

/dalvik/dx/src/com/android/dx/rop/cst/
H A DTypedConstant.java37 return getType().getBasicType();
42 return getType().getBasicFrameType();
H A DCstEnumRef.java52 public Type getType() { method in class:CstEnumRef
/dalvik/libcore/xml/src/main/java/org/xml/sax/
H A DAttributeList.java42 * String type = atts.getType(i);
132 * @see #getType(java.lang.String)
134 public abstract String getType (int i);
164 * getType(int).</p>
172 * @see #getType(int) method in interface:AttributeList
174 public abstract String getType (String name);
133 public abstract String getType (int i); method in interface:AttributeList
H A DAttributes.java89 * @see #getType(int)
151 public abstract String getType (int index);
202 * <p>See {@link #getType(int) getType(int)} for a description
212 public abstract String getType (String uri, String localName);
218 * <p>See {@link #getType(int) getType(int)} for a description
226 public abstract String getType (String qName);
150 public abstract String getType (int index); method in interface:Attributes
210 public abstract String getType (String uri, String localName); method in interface:Attributes
224 public abstract String getType (String qName); method in interface:Attributes
/dalvik/dx/src/com/android/dx/rop/type/
H A DTypeBearer.java31 public Type getType(); method in interface:TypeBearer
H A DTypeList.java49 public Type getType(int n); method in interface:TypeList
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DCRL.java46 public final String getType() { method in class:CRL
H A DCertPath.java65 public String getType() { method in class:CertPath
84 if (getType().equals(o.getType())) {
96 * {@code hashCode = 31 * path.getType().hashCode() +
103 int hash = getType().hashCode();
116 StringBuilder sb = new StringBuilder(getType());
181 return new CertPathRep(getType(), getEncoded());
/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DDOMError.java70 public String getType(); method in interface:DOMError
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXNull.java48 public int getType() method in class:XNull
128 return obj2.getType() == CLASS_NULL;
H A DXBoolean.java81 public int getType() method in class:XBoolean
155 if (obj2.getType() == XObject.CLASS_NODESET)
H A DXRTreeFrag.java130 public int getType() method in class:XRTreeFrag
260 if (XObject.CLASS_NODESET == obj2.getType())
268 else if (XObject.CLASS_BOOLEAN == obj2.getType())
272 else if (XObject.CLASS_NUMBER == obj2.getType())
276 else if (XObject.CLASS_NODESET == obj2.getType())
280 else if (XObject.CLASS_STRING == obj2.getType())
284 else if (XObject.CLASS_RTREEFRAG == obj2.getType())
/dalvik/dx/src/com/android/dx/dex/file/
H A DFieldIdItem.java46 typeIds.intern(getFieldRef().getType());
62 return typeIds.indexOf(getFieldRef().getType());
/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
H A DAttributesImplTest.java156 method = "getType",
161 assertEquals("string", multi.getType(0));
162 assertEquals("string", multi.getType(1));
163 assertEquals("int", multi.getType(2));
164 assertEquals("string", multi.getType(3));
165 assertEquals("string", multi.getType(4));
168 assertEquals(null, multi.getType(-1));
169 assertEquals(null, multi.getType(5));
230 method = "getType",
235 assertEquals("string", multi.getType("htt
[all...]
H A DAttributeListImplTest.java95 assertEquals(multi.getType(i), attrs.getType(i));
119 assertEquals("boolean", multi.getType(3));
126 assertEquals("boolean", multi.getType(4));
132 assertEquals(null, multi.getType(5));
145 assertEquals("string", multi.getType(0));
204 method = "getType",
209 assertEquals("string", multi.getType(0));
210 assertEquals("string", multi.getType(1));
211 assertEquals("int", multi.getType(
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DTypes.java27 public static Type getType(Type type) { method in class:Types
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x501/
H A DAttributeTypeAndValueComparator.java55 String kw1 = atav1.getType().getName();
56 String kw2 = atav2.getType().getName();
67 return compateOids(atav1.getType(), atav2.getType());
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DMyCRL.java48 return "MyCRL: [" + getType() + "]";
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DCompoundControl.java40 return getType() + "CompoundControl containing " //$NON-NLS-1$
/dalvik/dx/src/com/android/dx/cf/code/
H A DBaseMachine.java142 if (! Merger.isPossiblyAssignableFrom(types.getType(i), args[i])) {
144 ", expected type " + types.getType(i).toHuman() +
145 " but found " + args[i].getType().toHuman());
157 " but found " + args[0].getType().toHuman());
170 " but found " + args[0].getType().toHuman());
175 " but found " + args[1].getType().toHuman());
189 " but found " + args[0].getType().toHuman());
194 " but found " + args[1].getType().toHuman());
199 " but found " + args[2].getType().toHuman());
273 result += args[i].getType()
[all...]
/dalvik/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMErrorImpl.java39 this.type = src.getType();
53 public final String getType() { method in class:DOMErrorImpl
/dalvik/hit/src/com/android/hit/
H A DRootType.java46 public final int getType() { method in class:RootType
/dalvik/libcore/security/src/test/java/tests/security/cert/
H A DCRLTest.java64 assertEquals(validValues[i], crl.getType());
69 assertEquals(invalidValues[i], crl.getType());
81 * Test #1 for <code>getType()</code> method<br>
87 method = "getType",
92 assertEquals("TEST_TYPE", crl.getType());
96 * Test #2 for <code>getType()</code> method<br>
102 method = "getType",
107 assertNull(crl.getType());
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DServerHelloDone.java75 public int getType() { method in class:ServerHelloDone
/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
H A DAttributeListImpl.java122 addAttribute(atts.getName(i), atts.getType(i), atts.getValue(i));
240 * @see org.xml.sax.AttributeList#getType(int) method in class:AttributeListImpl
242 public String getType (int i)
283 * @see org.xml.sax.AttributeList#getType(java.lang.String) method in class:AttributeListImpl
285 public String getType (String name)
287 return getType(names.indexOf(name));

Completed in 669 milliseconds

123456789