Searched refs:nextElement (Results 1 - 25 of 343) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/
H A DHeaderElementIterator.java64 HeaderElement nextElement(); method in interface:HeaderElementIterator
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnicodeSetIterator.java109 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; field in class:UnicodeSetIterator
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DUnicodeMapIterator.java119 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
235 protected int nextElement; field in class:UnicodeMapIterator
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSetIterator.java116 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; field in class:UnicodeSetIterator
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeMapIterator.java118 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
234 protected int nextElement; field in class:UnicodeMapIterator
[all...]
/external/icu/icu4c/source/common/
H A Dusetiter.cpp48 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
[all...]
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliAnnotationElement.java75 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/
H A DNullEnumeration.java44 public Object nextElement() { method in class:NullEnumeration
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DRSAPrivateKey.java77 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...]
H A DRSAPrivateKeyStructure.java79 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...]
H A DDHParameter.java57 p = ASN1Integer.getInstance(e.nextElement());
58 g = ASN1Integer.getInstance(e.nextElement());
62 l = (ASN1Integer)e.nextElement();
H A DPrivateKeyInfo.java79 BigInteger version = ((ASN1Integer)e.nextElement()).getValue();
85 algId = AlgorithmIdentifier.getInstance(e.nextElement());
86 privKey = ASN1OctetString.getInstance(e.nextElement());
90 attributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false);
H A DSignedData.java65 version = (ASN1Integer)e.nextElement();
66 digestAlgorithms = ((ASN1Set)e.nextElement());
67 contentInfo = ContentInfo.getInstance(e.nextElement());
71 ASN1Primitive o = (ASN1Primitive)e.nextElement();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERSequence.java52 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
68 out.writeObject((ASN1Encodable)e.nextElement());
H A DBERSet.java56 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
72 out.writeObject((ASN1Encodable)e.nextElement());
H A DASN1EncodableVector.java39 v.addElement(en.nextElement());
H A DBEROctetString.java85 public Object nextElement()
129 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
148 out.writeObject((ASN1Encodable)e.nextElement());
163 v[index++] = (ASN1OctetString)e.nextElement();
H A DLazyConstructionEnumeration.java23 public Object nextElement() method in class:LazyConstructionEnumeration
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyPermissionCollection.java45 public Permission nextElement() {
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
H A DUnixNetworkInterfaceTest.java39 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/
H A DSignerInfo.java191 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/
H A DDSAParameter.java62 p = ASN1Integer.getInstance(e.nextElement());
63 q = ASN1Integer.getInstance(e.nextElement());
64 g = ASN1Integer.getInstance(e.nextElement());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DDomainParameters.java113 this.p = ASN1Integer.getInstance(e.nextElement());
114 this.g = ASN1Integer.getInstance(e.nextElement());
115 this.q = ASN1Integer.getInstance(e.nextElement());
141 return e.hasMoreElements() ? (ASN1Encodable)e.nextElement() : null;
/external/guice/core/test/com/google/inject/
H A DSuiteUtils.java31 Test test = (Test) e.nextElement();
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DStringTokenizerTest.java57 if (!(defaultst.nextElement().equals(expected[i])
58 && stdelimiter.nextElement().equals(expected[i])
59 && stdelimiterreturn.nextElement().equals(expected[i])
60 && stdelimiterset.nextElement().equals(expected[i])
61 && stdelimitersetreturn.nextElement().equals(expected[i]))) {
68 if(!(stdelimiterset1.nextElement().equals(str)))
78 if (!(stdelimiterreturn.nextElement().equals(expected1[i])
79 && stdelimitersetreturn.nextElement().equals(expected1[i]))) {
90 if (!(stdelimiter.nextElement().equals(str)
91 && stdelimiterreturn.nextElement()
[all...]

Completed in 592 milliseconds

1234567891011>>