Searched defs:name (Results 251 - 266 of 266) sorted by relevance

<<11

/libcore/luni/src/main/java/java/io/
H A DObjectStreamClass.java40 * deserialization. Information contained in the descriptor includes the name
146 // Corresponding loaded class with the name above
378 * The value is computed based on the class name, superclass chain, field
487 // write name, modifier & "descriptor" of all but private
501 // write name, modifier & "descriptor"
514 // All constructors have same name, so we sort based on
531 * write name, modifier & "descriptor" of all but private
534 * constructor.getName() returns the constructor name as
535 * typed, not the VM name
552 // same name, signatur
768 getField(String name) argument
[all...]
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java449 (byte) 0x00, // only first byte for C class name length
453 out.write(cName.length); // second byte for C class name length
454 out.write(cName, 0, cName.length); // C class name
463 (byte) 0x00, // only first byte for A class name length
467 out.write(aName.length); // second byte for A class name length
468 out.write(aName, 0, aName.length); // A class name
478 // field = 'name'
532 public String name = "name"; field in class:ObjectInputStreamTest.A
936 a.name
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jar ... s?defs= " (java.lang.String) String name public void " href="/4.4.4_r1/s? ...
/libcore/crypto/src/main/java/org/conscrypt/
H A DCipherSuite.java65 // cipher suite name
66 private final String name; field in class:CipherSuite
702 // hash for quick access to cipher suite by name
798 * Returns CipherSuite by name
800 public static CipherSuite getByName(String name) { argument
801 return SUITES_BY_NAME.get(name);
853 private CipherSuite(String name, boolean isExportable, int keyExchange, argument
855 this.name = name;
967 if (this.name
[all...]
H A DNativeCrypto.java50 * library name. Detect this by looking for the jarjar'd package name.
243 public static native long EVP_get_digestbyname(String name); argument
1048 * @param authMethod auth algorithm name
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java65 public String getenv(String name) { return os.getenv(name); } argument
70 public StructPasswd getpwnam(String name) throws ErrnoException { return os.getpwnam(name); } argument
116 public void setenv(String name, String value, boolean overwrite) throws ErrnoException { os.setenv(name, value, overwrite); } argument
136 public long sysconf(int name) { return os.sysconf(name); } argument
141 public void unsetenv(String name) throws ErrnoException { os.unsetenv(name); } argument
[all...]
H A DOs.java56 public String getenv(String name); argument
62 public StructPasswd getpwnam(String name) throws ErrnoException; argument
109 public void setenv(String name, String value, boolean overwrite) throws ErrnoException; argument
129 public long sysconf(int name); argument
134 public void unsetenv(String name) throws ErrnoException; argument
H A DPosix.java59 public native String getenv(String name); argument
64 public native StructPasswd getpwnam(String name) throws ErrnoException; argument
160 public native void setenv(String name, String value, boolean overwrite) throws ErrnoException; argument
180 public native long sysconf(int name); argument
191 public native void unsetenv(String name) throws ErrnoException; argument
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp462 // Buffer the element name.
476 * The component parts of an attribute or element name.
482 const char* name = attributes[index * 2]; local
483 init(env, parsingContext, name);
503 * Returns the element or attribute local name, like "h1". Never empty. When
505 * local name like "html:h1". In such cases, the qName will always be empty.
526 * Returns true if this expat name has the same URI and local name.
533 * Returns true if this expat name has the same qualified name
777 startDtd(void* data, const char* name, const char* systemId, const char* publicId, int ) argument
912 unparsedEntityDecl(void* data, const char* name, const char* , const char* systemId, const char* publicId, const char* notationName) argument
935 notationDecl(void* data, const char* name, const char* , const char* systemId, const char* publicId) argument
[all...]
H A Dlibcore_io_Posix.cpp150 static rc_t throwIfMinusOne(JNIEnv* env, const char* name, rc_t rc) { argument
152 throwErrnoException(env, name);
366 jobject getpwnam(const char* name) { argument
367 return process("getpwnam_r", getpwnam_r(name, &mPwd, mBuffer.get(), mBufferSize, &mResult));
681 ScopedUtfChars name(env, javaName);
682 if (name.c_str() == NULL) {
685 return env->NewStringUTF(getenv(name.c_str()));
717 ScopedUtfChars name(env, javaName);
718 if (name.c_str() == NULL) {
721 return Passwd(env).getpwnam(name
813 char* name = if_indextoname(index, buf); local
1299 Posix_sysconf(JNIEnv* env, jobject, jint name) argument
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java84 + " <name a:standard=\"strawberry\" deluxe=\"&sp;\">Waffles</name>\n"
106 private Element name; field in class:DomTest
149 name = (Element) item.getChildNodes().item(1);
150 standard = name.getAttributeNode("a:standard");
151 deluxe = name.getAttributeNode("deluxe");
152 waffles = (Text) name.getChildNodes().item(0);
178 itemXmlnsA, name, standard, deluxe, waffles, description,
213 assertEquals("http://addons", name.lookupNamespaceURI("a"));
245 assertEquals("http://food", name
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java126 * name; the inner map's key is the attribute name. Both keys should be
160 private String name; field in class:KXmlParser
170 * i + 2 = attribute qualified name (may contain ":", as in "html:h1")
248 "illegal attribute name: " + attrName + " at " + this);
268 int cut = name.indexOf(':');
271 checkRelaxed("illegal tag name: " + name);
275 prefix = name.substring(0, cut);
276 name
2021 getAttributeValue(String namespace, String name) argument
2051 require(int type, String namespace, String name) argument
[all...]
/libcore/luni/src/main/java/java/lang/
H A DCharacter.java49 * <a name="unicode_categories"><h3>Unicode categories</h3></a>
525 private final String name; field in class:Character.Subset
530 protected Subset(String name) { argument
531 if (name == null) {
532 throw new NullPointerException("name == null");
534 this.name = name;
553 * Returns this subset's name.
556 return name;
563 * by name {
[all...]
/libcore/dom/src/test/java/org/w3c/domts/
H A DJunitTestCases.java27 private void runDomTest(String name) throws Throwable { argument
29 adapter.setName(name);
/libcore/benchmarks/libs/
H A Dcaliper.jar ... caliper.Arguments parse (java.lang.String[]) String name String value String previousValue String name String value int equalsSign ...
/libcore/crypto/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp2225 JNI_TRACE("EC_GROUP_new_by_curve_name(%s) => unknown NID name", curveName.c_str());
3887 static jstring X509_NAME_to_jstring(JNIEnv* env, X509_NAME* name, unsigned long flags) { argument
3888 JNI_TRACE("X509_NAME_to_jstring(%p)", name);
3893 JNI_TRACE("X509_NAME_to_jstring(%p) => threw error", name);
3901 X509_NAME_print_ex(buffer.get(), name, 0, flags);
3906 JNI_TRACE("X509_NAME_to_jstring(%p) => \"%s\"", name, tmp);
4021 JNI_TRACE("get_X509_GENERAL_NAME_stack(%p, %d) => threw exception parsing gen name",
6662 if ((strcmp(c.c_str(), cipher->name) == 0)
6764 throwSSLExceptionWithSslErrors(env, ssl, SSL_ERROR_NONE, "Error setting host name");
7899 const char* name local
8212 findClass(JNIEnv* env, const char* name) argument
[all...]

Completed in 1758 milliseconds

<<11