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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/
Enumeration.java 31 * <code>nextElement</code> method return successive elements of the
37 * System.out.println(e.nextElement());</pre>
51 * @see java.util.Enumeration#nextElement()
78 E nextElement();
  /external/apache-http/src/org/apache/http/
HeaderElementIterator.java 64 HeaderElement nextElement();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSetIterator.java 109 if (nextElement <= endElement) {
110 codepoint = codepointEnd = nextElement++;
115 codepoint = codepointEnd = nextElement++;
152 if (nextElement <= endElement) {
154 codepoint = nextElement;
155 nextElement = endElement+1;
161 codepoint = nextElement;
162 nextElement = endElement+1;
197 nextElement = 0;
249 protected int nextElement;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeMapIterator.java 119 if (nextElement <= endElement) {
120 codepoint = codepointEnd = nextElement++;
127 codepoint = codepointEnd = nextElement++;
160 if (nextElement <= endElement) {
162 codepoint = nextElement;
163 nextElement = endElement+1;
171 codepoint = nextElement;
172 nextElement = endElement+1;
202 // both next*() methods will test: if (nextElement <= endElement)
204 nextElement = 0;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSetIterator.java 116 if (nextElement <= endElement) {
117 codepoint = codepointEnd = nextElement++;
122 codepoint = codepointEnd = nextElement++;
160 if (nextElement <= endElement) {
162 codepoint = nextElement;
163 nextElement = endElement+1;
169 codepoint = nextElement;
170 nextElement = endElement+1;
207 nextElement = 0;
257 protected int nextElement;
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeMapIterator.java 118 if (nextElement <= endElement) {
119 codepoint = codepointEnd = nextElement++;
126 codepoint = codepointEnd = nextElement++;
159 if (nextElement <= endElement) {
161 codepoint = nextElement;
162 nextElement = endElement+1;
170 codepoint = nextElement;
171 nextElement = endElement+1;
201 // both next*() methods will test: if (nextElement <= endElement)
203 nextElement = 0;
    [all...]
  /external/icu/icu4c/source/common/
usetiter.cpp 48 if (nextElement <= endElement) {
49 codepoint = codepointEnd = nextElement++;
55 codepoint = codepointEnd = nextElement++;
79 if (nextElement <= endElement) {
81 codepoint = nextElement;
82 nextElement = endElement+1;
88 codepoint = nextElement;
89 nextElement = endElement+1;
121 nextElement = 0;
130 nextElement = set->getRangeStart(iRange)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
StringTokenizerTest.java 47 && (st.nextElement().equals("This")));
67 st.nextElement();
69 && (st.nextElement().equals(":")));
98 st.nextElement();
101 st.nextElement();
102 st.nextElement();
103 st.nextElement();
104 st.nextElement();
126 * java.util.StringTokenizer#nextElement()
130 // java.util.StringTokenizer.nextElement()
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
CompoundEnumeration.java 57 public E nextElement() {
61 return (E)enums[index].nextElement();
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliAnnotationElement.java 75 PsiElement nextElement = equalNode.getPsi().getNextSibling();
76 while (nextElement != null) {
77 if (nextElement instanceof PsiAnnotationMemberValue) {
78 return (PsiAnnotationMemberValue)nextElement;
80 nextElement = nextElement.getNextSibling();
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/helpers/
NullEnumeration.java 44 public Object nextElement() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
RSAPrivateKey.java 77 BigInteger v = ((ASN1Integer)e.nextElement()).getValue();
84 modulus = ((ASN1Integer)e.nextElement()).getValue();
85 publicExponent = ((ASN1Integer)e.nextElement()).getValue();
86 privateExponent = ((ASN1Integer)e.nextElement()).getValue();
87 prime1 = ((ASN1Integer)e.nextElement()).getValue();
88 prime2 = ((ASN1Integer)e.nextElement()).getValue();
89 exponent1 = ((ASN1Integer)e.nextElement()).getValue();
90 exponent2 = ((ASN1Integer)e.nextElement()).getValue();
91 coefficient = ((ASN1Integer)e.nextElement()).getValue();
95 otherPrimeInfos = (ASN1Sequence)e.nextElement();
    [all...]
RSAPrivateKeyStructure.java 79 BigInteger v = ((ASN1Integer)e.nextElement()).getValue();
86 modulus = ((ASN1Integer)e.nextElement()).getValue();
87 publicExponent = ((ASN1Integer)e.nextElement()).getValue();
88 privateExponent = ((ASN1Integer)e.nextElement()).getValue();
89 prime1 = ((ASN1Integer)e.nextElement()).getValue();
90 prime2 = ((ASN1Integer)e.nextElement()).getValue();
91 exponent1 = ((ASN1Integer)e.nextElement()).getValue();
92 exponent2 = ((ASN1Integer)e.nextElement()).getValue();
93 coefficient = ((ASN1Integer)e.nextElement()).getValue();
97 otherPrimeInfos = (ASN1Sequence)e.nextElement();
    [all...]
DHParameter.java 57 p = ASN1Integer.getInstance(e.nextElement());
58 g = ASN1Integer.getInstance(e.nextElement());
62 l = (ASN1Integer)e.nextElement();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
NetworkInterfaceTest.java 69 .nextElement();
78 .nextElement();
90 InetAddress theAddress = (InetAddress) addresses.nextElement();
101 .nextElement();
113 .nextElement();
122 .nextElement();
137 .nextElement();
146 .nextElement();
262 InetAddress theAddress = (InetAddress) addresses.nextElement();
275 InetAddress theAddress = (InetAddress) addresses.nextElement();
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERSequence.java 52 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
68 out.writeObject((ASN1Encodable)e.nextElement());
BERSet.java 56 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
72 out.writeObject((ASN1Encodable)e.nextElement());
  /libcore/ojluni/src/main/java/sun/util/
ResourceBundleEnumeration.java 63 next = enumeration.nextElement();
73 public String nextElement() {
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyPermissionCollection.java 45 public Permission nextElement() {
  /cts/tools/dasm/src/java_cup/
non_terminal.java 135 nt = (non_terminal)e.nextElement();
152 prod = (production)e.nextElement();
180 nt = (non_terminal)n.nextElement();
185 prod = (production)p.nextElement();
264 if (((production)e.nextElement()).check_nullable())
symbol_set.java 78 if (!other.contains((symbol)e.nextElement()))
140 result = add((symbol)e.nextElement()) || result;
156 remove((symbol)e.nextElement());
198 result ^= ((symbol)e.nextElement()).hashCode();
220 result += ((symbol)e.nextElement()).name();
lalr_item_set.java 92 if (!other.contains((lalr_item)e.nextElement()))
171 add((lalr_item)e.nextElement());
185 remove((lalr_item)e.nextElement());
199 result = (lalr_item)the_set.nextElement();
274 prod = (production)p.nextElement();
340 result ^= ((lalr_item)e.nextElement()).hashCode();
358 result.append(" " + (lalr_item)e.nextElement() + "\n");
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixNetworkInterfaceTest.java 39 NetworkInterface netif = netifs.nextElement();
64 NetworkInterface netif = netifs.nextElement();
91 NetworkInterface netif = netifs.nextElement();
122 NetworkInterface netif = netifs.nextElement();
146 NetworkInterface netif = netifs.nextElement();
153 NetworkInterface sub1 = subInterfaces1.nextElement();
154 NetworkInterface sub2 = subInterfaces2.nextElement();
167 NetworkInterface netif = netifs.nextElement();
174 NetworkInterface sub = subInterfaces.nextElement();
193 NetworkInterface netif = netifs.nextElement();
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
SignerInfo.java 191 version = (ASN1Integer)e.nextElement();
192 sid = SignerIdentifier.getInstance(e.nextElement());
193 digAlgorithm = AlgorithmIdentifier.getInstance(e.nextElement());
195 Object obj = e.nextElement();
201 digEncryptionAlgorithm = AlgorithmIdentifier.getInstance(e.nextElement());
209 encryptedDigest = DEROctetString.getInstance(e.nextElement());
213 unauthenticatedAttributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DSAParameter.java 62 p = ASN1Integer.getInstance(e.nextElement());
63 q = ASN1Integer.getInstance(e.nextElement());
64 g = ASN1Integer.getInstance(e.nextElement());

Completed in 1060 milliseconds

1 2 3 4 5 6 7 8 91011>>