Searched refs:getType (Results 26 - 50 of 116) sorted by relevance

12345

/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDOMErrorImpl.java61 public String getType() { method in class:DOMErrorImpl
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DXMLReaderAdapter.java492 * @see org.xml.sax.AttributeList#getType(int)
494 public String getType (int i)
496 return attributes.getType(i);
516 * @see org.xml.sax.AttributeList#getType(java.lang.String)
518 public String getType (String qName)
520 return attributes.getType(qName);
490 public String getType (int i) method in class:XMLReaderAdapter.AttributesAdapter
514 public String getType (String qName) method in class:XMLReaderAdapter.AttributesAdapter
H A DAttributesImpl.java159 * @see org.xml.sax.Attributes#getType(int) method in class:AttributesImpl
161 public String getType (int index)
240 * @see org.xml.sax.Attributes#getType(java.lang.String,java.lang.String) method in class:AttributesImpl
242 public String getType (String uri, String localName)
260 * @see org.xml.sax.Attributes#getType(java.lang.String) method in class:AttributesImpl
262 public String getType (String qName)
358 data[i*5+3] = atts.getType(i);
H A DParserAdapter.java536 String type = qAtts.getType(i);
942 public String getType (int i)
944 return qAtts.getType(i).intern();
1000 public String getType (String uri, String localName)
1012 public String getType (String qName)
1014 return qAtts.getType(qName).intern();
937 public String getType (int i) method in class:ParserAdapter.AttributeListAdapter
995 public String getType (String uri, String localName) method in class:ParserAdapter.AttributeListAdapter
1007 public String getType (String qName) method in class:ParserAdapter.AttributeListAdapter
/libcore/luni/src/main/java/java/security/cert/
H A DCertificate.java59 public final String getType() { method in class:Certificate
197 return new CertificateRep(getType(), getEncoded());
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertificate.java89 return "[My test Certificate, type: " + getType() + "]";
137 public String getType() { method in class:MyCertificate.MyCertificateRep
/libcore/libart/src/main/java/java/lang/reflect/
H A DField.java134 public Class<?> getType() { method in class:Field
135 return artField.getType();
218 genericType = getType();
230 return Types.getSignature(getType());
785 Types.appendTypeName(result, getType());
/libcore/luni/src/main/java/java/io/
H A DEmulatedFields.java152 if (slot.field.getType() == fieldType) {
161 if (slot.field.getType().isAssignableFrom(fieldType)) {
172 if (isPrimitive ? fieldType == field.getType() : fieldType == null ||
173 field.getType().isAssignableFrom(fieldType)) {
187 if (slot == null || (type == null && slot.field.getType().isPrimitive())) {
H A DEmulatedFieldsForDumping.java202 Class<?> type = slot.getField().getType();
/libcore/luni/src/test/java/tests/security/cert/
H A DCertStore1Test.java161 assertEquals("Incorrect algorithm", certS.getType(), dType);
171 assertNull("Incorrect algorithm", certS.getType());
218 assertEquals("Incorrect type", certS.getType(), dValid[i]);
308 assertEquals("Incorrect type", certS.getType(), dValid[i]);
370 assertEquals("Incorrect type", certS.getType(), dValid[i]);
396 * Test for <code>getType()</code> method
407 assertEquals("Incorrect type", certS.getType(), dValid[i]);
412 assertEquals("Incorrect type", certS.getType(), dValid[i]);
420 assertEquals("Incorrect type", certS.getType(), dValid[i]);
H A DCertPathCertPathRepTest.java32 assertEquals("MyEncoding", rep.getType());
H A DCertificateFactory3Test.java134 assertEquals(cert.getType(), certPath.getType());
156 assertEquals(defaultType, certPath.getType());
184 assertEquals(defaultType, certPath.getType());
H A DCertificateFactory1Test.java115 assertEquals("Incorrect type: ", validValues[i], certF.getType());
211 assertEquals("Incorrect type", certF.getType(), validValues[i]);
284 assertEquals("Incorrect type", certF.getType(), validValues[i]);
642 assertEquals("Incorrect type", cf.getType(), defaultType);
651 assertNull("Incorrect type", cf.getType());
661 * Test for <code>getType()</code> method
673 .getType());
676 assertEquals("Incorrect type", certF.getType(), validValues[i]);
682 assertEquals("Incorrect type", certF.getType(), validValues[i]);
701 assertEquals("Incorrect type", cf.getType(), defaultTyp
[all...]
H A DCertPathTest.java62 assertEquals("MyEncoding", cp1.getType());
99 * Test for <code>getType()</code> method<br>
103 assertEquals("MyEncoding", new MyCertPath(testEncoding).getType());
H A DCertificateFactory2Test.java199 assertEquals("Incorrect type", cerF.getType(), validValues[i]);
263 assertEquals("Incorrect type", cerF.getType(), validValues[i]);
308 assertEquals("Incorrect type", cerF.getType(), validValues[i]);
/libcore/crypto/src/main/java/org/conscrypt/
H A DClientKeyExchange.java138 public int getType() { method in class:ClientKeyExchange
H A DServerHello.java133 public int getType() { method in class:ServerHello
H A DCertificateMessage.java162 public int getType() { method in class:CertificateMessage
H A DCertificateRequest.java137 public int getType() { method in class:CertificateRequest
/libcore/dom/src/test/java/org/w3c/domts/
H A DXercesHTML2DocumentBuilderFactory.java181 public String getType(int i) { method in class:XercesHTML2DocumentBuilderFactory.HTMLHandler
182 return currentAttributes.getType(i);
189 public String getType(String name) { method in class:XercesHTML2DocumentBuilderFactory.HTMLHandler
190 return currentAttributes.getType(name);
H A DXercesHTMLDocumentBuilderFactory.java181 public String getType(int i) { method in class:XercesHTMLDocumentBuilderFactory.HTMLHandler
182 return currentAttributes.getType(i);
189 public String getType(String name) { method in class:XercesHTMLDocumentBuilderFactory.HTMLHandler
190 return currentAttributes.getType(name);
/libcore/luni/src/main/java/java/text/
H A DAttributedCharacterIterator.java131 if (field.getType() == getClass() && Modifier.isStatic(field.getModifiers())) {
/libcore/luni/src/test/java/libcore/java/io/
H A DSerializationTest.java36 assertEquals(int.class, fields[0].getType());
/libcore/luni/src/test/java/tests/targets/security/cert/
H A DCertPathBuilderTestPKIX.java80 .getType());
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DProviderServiceTest.java70 if (!s.getType().equals("type")) {
71 fail("getType() failed");
176 assertTrue(s1.getType().equals("type"));
181 assertTrue(s2.getType().equals("SecureRandom"));

Completed in 907 milliseconds

12345