Home
last modified time | relevance | path

Searched defs:name (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/libcore/luni/src/main/java/java/io/
DEmulatedFieldsForLoading.java64 public boolean defaulted(String name) throws IOException, in defaulted()
98 public byte get(String name, byte defaultValue) throws IOException, in get()
121 public char get(String name, char defaultValue) throws IOException, in get()
144 public double get(String name, double defaultValue) throws IOException, in get()
167 public float get(String name, float defaultValue) throws IOException, in get()
190 public int get(String name, int defaultValue) throws IOException, in get()
213 public long get(String name, long defaultValue) throws IOException, in get()
236 public Object get(String name, Object defaultValue) throws IOException, in get()
259 public short get(String name, short defaultValue) throws IOException, in get()
283 public boolean get(String name, boolean defaultValue) throws IOException, in get()
DEmulatedFields.java117 public boolean defaulted(String name) throws IllegalArgumentException { in defaulted()
185 private ObjectSlot findMandatorySlot(String name, Class<?> type) { in findMandatorySlot()
208 public byte get(String name, byte defaultValue) throws IllegalArgumentException { in get()
228 public char get(String name, char defaultValue) throws IllegalArgumentException { in get()
248 public double get(String name, double defaultValue) throws IllegalArgumentException { in get()
268 public float get(String name, float defaultValue) throws IllegalArgumentException { in get()
288 public int get(String name, int defaultValue) throws IllegalArgumentException { in get()
308 public long get(String name, long defaultValue) throws IllegalArgumentException { in get()
328 public Object get(String name, Object defaultValue) throws IllegalArgumentException { in get()
348 public short get(String name, short defaultValue) throws IllegalArgumentException { in get()
[all …]
DEmulatedFieldsForDumping.java69 public void put(String name, byte value) { in put()
83 public void put(String name, char value) { in put()
97 public void put(String name, double value) { in put()
111 public void put(String name, float value) { in put()
125 public void put(String name, int value) { in put()
139 public void put(String name, long value) { in put()
153 public void put(String name, Object value) { in put()
167 public void put(String name, short value) { in put()
181 public void put(String name, boolean value) { in put()
/libcore/json/src/main/java/org/json/
DJSONObject.java203 public JSONObject put(String name, boolean value) throws JSONException { in put()
216 public JSONObject put(String name, double value) throws JSONException { in put()
227 public JSONObject put(String name, int value) throws JSONException { in put()
238 public JSONObject put(String name, long value) throws JSONException { in put()
254 public JSONObject put(String name, Object value) throws JSONException { in put()
271 public JSONObject putOpt(String name, Object value) throws JSONException { in putOpt()
290 public JSONObject accumulate(String name, Object value) throws JSONException { in accumulate()
313 String checkName(String name) throws JSONException { in checkName()
326 public Object remove(String name) { in remove()
334 public boolean isNull(String name) { in isNull()
[all …]
/libcore/crypto/src/main/java/org/conscrypt/
DProtocolVersion.java71 public static boolean isSupported(String name) { in isSupported()
81 public static ProtocolVersion getByName(String name) { in getByName()
125 protocolsByName.put(SSLv3.name, SSLv3); in protocolsByName.put() argument
126 protocolsByName.put(TLSv1.name, TLSv1); in protocolsByName.put() argument
134 public final String name; field in ProtocolVersion
141 private ProtocolVersion(String name, byte[] version) { in ProtocolVersion()
/libcore/luni/src/main/java/org/xml/sax/ext/
DDefaultHandler2.java54 public void startDTD (String name, String publicId, String systemId) in startDTD()
62 public void startEntity (String name) in startEntity()
66 public void endEntity (String name) in endEntity()
82 public void elementDecl (String name, String model) in elementDecl()
86 public void externalEntityDecl (String name, in externalEntityDecl()
91 public void internalEntityDecl (String name, String value) in internalEntityDecl()
116 public InputSource getExternalSubset (String name, String baseURI) in getExternalSubset()
154 public InputSource resolveEntity (String name, String publicId, in resolveEntity()
DLexicalHandler.java85 public abstract void startDTD (String name, String publicId, in startDTD()
153 public abstract void startEntity (String name) in startEntity()
164 public abstract void endEntity (String name) in endEntity()
/libcore/libdvm/src/main/java/java/lang/
DVMClassLoader.java35 static URL getResource(String name) { in getResource()
54 static List<URL> getResources(String name) { in getResources()
74 native static Class loadClass(String name, boolean resolve) throws ClassNotFoundException; in loadClass()
78 native static Class findLoadedClass(ClassLoader cl, String name); in findLoadedClass()
84 native private static String getBootClassPathResource(String name, int index); in getBootClassPathResource()
DEnum.java52 private final String name; field in Enum
65 protected Enum(String name, int ordinal) { in Enum()
77 public final String name() { in name() method in Enum
183 public static <T extends Enum<T>> T valueOf(Class<T> enumType, String name) { in valueOf()
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderFactoryImpl.java38 public Object getAttribute(String name) throws IllegalArgumentException { in getAttribute()
43 public boolean getFeature(String name) throws ParserConfigurationException { in getFeature()
84 public void setAttribute(String name, Object value) in setAttribute()
90 public void setFeature(String name, boolean value) in setFeature()
/libcore/luni/src/main/java/org/apache/harmony/security/
DSystemScope.java58 public SystemScope(String name) { in SystemScope()
65 public SystemScope(String name, IdentityScope scope) in SystemScope()
80 public synchronized Identity getIdentity(String name) { in getIdentity()
105 String name = identity.getName(); in addIdentity() local
132 String name = identity.getName(); in removeIdentity() local
/libcore/dalvik/src/main/java/dalvik/system/
DBaseDexClassLoader.java52 protected Class<?> findClass(String name) throws ClassNotFoundException { in findClass()
66 protected URL findResource(String name) { in findResource()
71 protected Enumeration<URL> findResources(String name) { in findResources()
76 public String findLibrary(String name) { in findLibrary()
107 protected synchronized Package getPackage(String name) { in getPackage()
/libcore/libart/src/main/java/java/lang/
DVMClassLoader.java35 static URL getResource(String name) { in getResource()
54 static List<URL> getResources(String name) { in getResources()
71 native static Class findLoadedClass(ClassLoader cl, String name); in findLoadedClass()
77 native private static String getBootClassPathResource(String name, int index); in getBootClassPathResource()
/libcore/luni/src/main/java/org/w3c/dom/
DDOMConfiguration.java376 public void setParameter(String name, in setParameter()
389 public Object getParameter(String name) in getParameter()
402 public boolean canSetParameter(String name, in canSetParameter()
DElement.java53 public String getAttribute(String name); in getAttribute()
77 public void setAttribute(String name, in setAttribute()
96 public void removeAttribute(String name) in removeAttribute()
109 public Attr getAttributeNode(String name); in getAttributeNode()
161 public NodeList getElementsByTagName(String name); in getElementsByTagName()
338 public boolean hasAttribute(String name); in hasAttribute()
389 public void setIdAttribute(String name, in setIdAttribute()
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/
DMockHandler.java53 public void endElement(String name) throws SAXException { in endElement()
57 public void endElement(String uri, String localName, String name) throws SAXException { in endElement()
77 public void notationDecl(String name, String publicId, String systemId) throws SAXException { in notationDecl()
89 public void skippedEntity(String name) throws SAXException { in skippedEntity()
97 public void startElement(String name, AttributeList atts) throws SAXException { in startElement()
101 public void startElement(String uri, String localName, String name, Attributes atts) in startElement()
110 public void unparsedEntityDecl(String name, String publicId, String systemId, in unparsedEntityDecl()
131 public void endEntity(String name) throws SAXException { in endEntity()
139 public void startDTD(String name, String publicId, String systemId) throws SAXException { in startDTD()
143 public void startEntity(String name) throws SAXException { in startEntity()
DMockFilter.java49 public boolean getFeature(String name) throws SAXNotRecognizedException, in getFeature()
55 public Object getProperty(String name) throws SAXNotRecognizedException, in getProperty()
61 public void setFeature(String name, boolean value) { in setFeature()
70 public void setProperty(String name, Object value) throws SAXNotRecognizedException, in setProperty()
/libcore/luni/src/test/java/tests/api/java/util/
DResourceBundleTest.java48 String name = "tests.support.Support_TestResource"; in test_getBundleLjava_lang_StringLjava_util_Locale() local
124 String name = Support_Resources.RESOURCE_PACKAGE_NAME in test_getBundleLjava_lang_StringLjava_util_LocaleLjava_lang_ClassLoader() local
173 String name = "tests.support.Support_TestResource"; in test_getStringLjava_lang_String() local
258 String name = "tests.support.Support_TestResource"; in test_getLocale() local
285 String name = "tests.support.Support_TestResource"; in test_getObjectLjava_lang_String() local
322 String name = "tests.support.Support_TestResource"; in test_getStringArrayLjava_lang_String() local
355 String name = "tests.support.Support_TestResource"; in test_getBundleLjava_lang_String() local
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
DIdentityStub.java51 public IdentityStub(String name) { in IdentityStub()
63 public IdentityStub(String name, IdentityScope scope) in IdentityStub()
75 public IdentityStub(String name, PublicKey key) throws KeyManagementException{ in IdentityStub()
/libcore/luni/src/main/java/javax/xml/validation/
DValidatorHandler.java349 …public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException { in getFeature()
384 …public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupport… in setFeature()
415 …public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSuppor… in setProperty()
448 …public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException { in getProperty()
DValidator.java341 …public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException { in getFeature()
376 …public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupport… in setFeature()
406 …public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSuppor… in setProperty()
439 …public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException { in getProperty()
/libcore/luni/src/main/java/java/security/spec/
DECGenParameterSpec.java26 private final String name; field in ECGenParameterSpec
35 public ECGenParameterSpec(String name) { in ECGenParameterSpec()
/libcore/xml/src/main/java/org/xmlpull/v1/
DXmlSerializer.java48 void setFeature(String name, in setFeature()
61 boolean getFeature(String name); in getFeature()
76 void setProperty(String name, in setProperty()
89 Object getProperty(String name); in getProperty()
209 XmlSerializer startTag (String namespace, String name) in startTag()
219 XmlSerializer attribute (String namespace, String name, String value) in attribute()
230 XmlSerializer endTag (String namespace, String name) in endTag()
/libcore/luni/src/test/java/tests/api/javax/security/auth/
DX500PrincipalTest.java40 String name = "CN=Duke,OU=JavaSoft,O=Sun Microsystems,C=US"; in test_X500Principal_01() local
72 String name = "CN=Duke,OU=JavaSoft,O=Sun Microsystems,C=US"; in test_X500Principal_02() local
108 String name = "CN=Duke,OU=JavaSoft,O=Sun Microsystems,C=US"; in test_X500Principal_03() local
143 String name = "CN=Duke,OU=JavaSoft,O=Sun Microsystems,C=US"; in test_getName() local
157 String name = "CN=Duke,OU=JavaSoft,O=Sun Microsystems,C=US"; in test_getName_Format() local
198 String name = "CN=Duke,OU=JavaSoft,O=Sun Microsystems,C=US"; in test_hashCode() local
212 String name = "CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US"; in test_toString() local
/libcore/luni/src/main/java/javax/xml/transform/
DTransformer.java123 public abstract void setParameter(String name, Object value); in setParameter()
135 public abstract Object getParameter(String name); in getParameter()
283 public abstract void setOutputProperty(String name, String value) in setOutputProperty()
302 public abstract String getOutputProperty(String name) in getOutputProperty()

12345678910>>...14