HomeSort by relevance Sort by last modified time
    Searched refs:getName (Results 1 - 25 of 1967) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/CoreTests/android/core/
JavaPerformanceTests.java 26 HashMapPerformanceTest.class.getName(),
27 ArrayListPerformanceTest.class.getName(),
28 TreeMapPerformanceTest.class.getName(),
29 TreeSetTest.class.getName(),
30 HashSetTest.class.getName(),
31 HashtableTest.class.getName(),
32 VectorTest.class.getName(),
33 LinkedListTest.class.getName(),
34 MathPerformanceTest.class.getName(),
AndroidPerformanceTests.java 30 JavaPerformanceTests.class.getName(),
31 PerformanceTests.class.getName(),
  /cts/tools/dex-tools/src/dex/structure/
NamedElement.java 28 String getName();
  /external/nist-sip/java/gov/nist/javax/sip/header/
NameMap.java 79 putNameMap(MinExpires.NAME, MinExpires.class.getName()); // 1
81 putNameMap(ErrorInfo.NAME, ErrorInfo.class.getName()); // 2
83 putNameMap(MimeVersion.NAME, MimeVersion.class.getName()); // 3
85 putNameMap(InReplyTo.NAME, InReplyTo.class.getName()); // 4
87 putNameMap(Allow.NAME, Allow.class.getName()); // 5
89 putNameMap(ContentLanguage.NAME, ContentLanguage.class.getName()); // 6
91 putNameMap(CALL_INFO, CallInfo.class.getName()); //7
93 putNameMap(CSEQ, CSeq.class.getName()); //8
95 putNameMap(ALERT_INFO, AlertInfo.class.getName()); //9
97 putNameMap(ACCEPT_ENCODING, AcceptEncoding.class.getName()); //1
    [all...]
  /cts/tools/signature-tools/src/signature/model/
IPrimitiveType.java 40 public String getName();
IField.java 31 String getName();
ITypeVariableDefinition.java 40 String getName();
  /external/apache-http/src/org/apache/http/
NameValuePair.java 104 String getName();
Header.java 58 String getName();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
NamedTask.java 24 String getName();
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
JSSEProvider.java 113 put("SSLContext.SSL", SSLContextImpl.class.getName());
114 put("SSLContext.SSLv3", SSLContextImpl.class.getName());
115 put("SSLContext.TLS", SSLContextImpl.class.getName());
116 put("SSLContext.TLSv1", SSLContextImpl.class.getName());
118 put("KeyManagerFactory.X509", KeyManagerFactoryImpl.class.getName());
119 put("TrustManagerFactory.X509", TrustManagerFactoryImpl.class.getName());
OpenSSLProvider.java 26 put("SSLContext.SSL", OpenSSLContextImpl.class.getName());
27 put("SSLContext.SSLv3", OpenSSLContextImpl.class.getName());
28 put("SSLContext.TLS", OpenSSLContextImpl.class.getName());
29 put("SSLContext.TLSv1", OpenSSLContextImpl.class.getName());
30 put("SSLContext.Default", DefaultSSLContextImpl.class.getName());
  /external/proguard/src/proguard/evaluation/value/
Value.java 48 throw new IllegalArgumentException("Value is not a Category 1 value [" + this.getClass().getName() + "]");
56 throw new IllegalArgumentException("Value is not a Category 2 value [" + this.getClass().getName() + "]");
65 throw new IllegalArgumentException("Value is not an integer value [" + this.getClass().getName() + "]");
73 throw new IllegalArgumentException("Value is not a long value [" + this.getClass().getName() + "]");
81 throw new IllegalArgumentException("Value is not a float value [" + this.getClass().getName() + "]");
89 throw new IllegalArgumentException("Value is not a double value [" + this.getClass().getName() + "]");
97 throw new IllegalArgumentException("Value is not a reference value [" + this.getClass().getName() + "]");
105 throw new IllegalArgumentException("Value is not an instruction offset value [" + this.getClass().getName() + "]");
  /cts/tools/signature-tools/src/signature/io/html/
ClassByNameComparator.java 29 return a.getFrom().getName().compareTo(b.getFrom().getName());
31 return a.getTo().getName().compareTo(b.getTo().getName());
  /dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java 28 public String getName();
  /external/proguard/src/proguard/
DuplicateClassPrinter.java 51 notePrinter.print(programClass.getName(),
53 ClassUtil.externalClassName(programClass.getName()) + "]");
59 notePrinter.print(libraryClass.getName(),
61 ClassUtil.externalClassName(libraryClass.getName()) + "]");
  /external/chromium/third_party/icu/source/i18n/
csrucode.h 32 * @see com.ibm.icu.text.CharsetRecognizer#getName()
34 const char* getName() const = 0;
49 const char *getName() const;
60 const char *getName() const;
73 const char* getName() const = 0;
88 const char *getName() const;
100 const char* getName() const;
csrecog.h 26 virtual const char *getName() const = 0;
csrutf8.h 30 const char *getName() const;
  /external/icu4c/i18n/
csrucode.h 32 * @see com.ibm.icu.text.CharsetRecognizer#getName()
34 const char* getName() const = 0;
49 const char *getName() const;
60 const char *getName() const;
73 const char* getName() const = 0;
88 const char *getName() const;
100 const char* getName() const;
csrecog.h 26 virtual const char *getName() const = 0;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractCorpus.java 49 return mConfig.isCorpusEnabledByDefault(getName());
53 return mConfig.isCorpusHidden(getName());
58 return getName();
64 return getName().equals(((Corpus) o).getName());
72 return getName().hashCode();
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HasCoverage.java 23 String getName();
30 return diff != 0 ? diff : entity.getName().compareTo(otherEntity.getName());
  /external/proguard/src/proguard/classfile/visitor/
SimpleClassPrinter.java 83 programClass.getName()));
93 libraryClass.getName()));
105 programClass.getName()) +
111 programField.getName(programClass),
122 programClass.getName()) +
125 programClass.getName(),
129 programMethod.getName(programClass),
140 libraryClass.getName()) +
146 libraryField.getName(libraryClass),
157 libraryClass.getName())
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyPermission.java 32 String name = ((MyPermission) obj).getName();
34 return getName() == null;
36 return name.equals(getName());

Completed in 483 milliseconds

1 2 3 4 5 6 7 8 91011>>