Searched defs:index (Results 151 - 175 of 4630) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java44 * current input position, index(), or some other marker so that
47 * track line/col info as well as input index so its markers are
52 /** Return the current input symbol index 0..n where n indicates the
53 * last symbol has been read. The index is the symbol about to be
56 int index(); method in interface:IntStream
58 /** Reset the stream so that next call to index would return marker.
59 * The marker will usually be index() but it doesn't have to be. It's
89 /** Set the input cursor to the position indicated by index. This is
95 * requirement and in that its argument is strictly an input cursor (index).
105 * The index i
109 seek(int index) argument
[all...]
H A DRecognitionException.java56 * state can change before the exception is reported so current token index
66 /** What is index of token/char were we looking at when the error occurred? */
67 public int index; field in class:RecognitionException
104 this.index = input.index();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DIntArray.java73 public void ensureCapacity(int index) { argument
77 else if ( (index+1)>=data.length ) {
79 if ( index>newSize ) {
80 newSize = index+1;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonToken.h40 NSUInteger index; variable
55 @property (assign, getter=getTokenIndex, setter=setTokenIndex:) NSUInteger index; variable
95 // the index of this Token into the TokenStream
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonToken.h40 NSUInteger index; variable
55 @property (assign, getter=getTokenIndex, setter=setTokenIndex:) NSUInteger index; variable
95 // the index of this Token into the TokenStream
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonToken.h40 NSUInteger index; variable
55 @property (assign, getter=getTokenIndex, setter=setTokenIndex:) NSUInteger index; variable
95 // the index of this Token into the TokenStream
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DIntArray.h73 public void ensureCapacity(int index) { argument
77 else if ( (index+1)>=data.length ) {
79 if ( index>newSize ) {
80 newSize = index+1;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DBreakpoint.java34 public long index; field in class:Breakpoint
42 index = 0;
55 index = location;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DLocation.java37 public long index; field in class:Location
46 index = 0;
52 public Location(byte tag, long classID, long methodID, long index) { argument
56 this.index = index;
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
74 && index == loc.index;
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpConnector.java42 public String getHeaderField(int index) throws IOException; argument
44 public String getHeaderFieldKey(int index) throws IOException; argument
/external/apache-http/src/org/apache/http/
H A DHeaderElement.java62 NameValuePair getParameter(int index); argument
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestInterceptorList.java66 * Inserts a request interceptor at the specified index.
69 * @param index the index to insert the interceptor at
71 void addRequestInterceptor(HttpRequestInterceptor itcp, int index); argument
86 * @param index the index of the interceptor to obtain,
89 * @return the interceptor at the given index, or
90 * <code>null</code> if the index is out of range
92 HttpRequestInterceptor getRequestInterceptor(int index) argument
H A DHttpResponseInterceptorList.java67 * Inserts a response interceptor at the specified index.
70 * @param index the index to insert the interceptor at
72 void addResponseInterceptor(HttpResponseInterceptor itcp, int index); argument
87 * @param index the index of the interceptor to obtain,
90 * @return the interceptor at the given index, or
91 * <code>null</code> if the index is out of range
93 HttpResponseInterceptor getResponseInterceptor(int index) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMAxisIterNodeList.java96 * Returns the <code>index</code>th item in the collection. If
97 * <code>index</code> is greater than or equal to the number of nodes in
99 * @param index Index into the collection.
100 * @return The node at the <code>index</code>th position in the
102 * index.
104 public Node item(int index) { argument
109 if (count > index) {
110 node = m_cachedNodes.elementAt(index);
114 && count <= index) {
H A DDTMChildIterNodeList.java87 * Returns the <code>index</code>th item in the collection. If
88 * <code>index</code> is greater than or equal to the number of nodes in
90 * @param index Index into the collection.
91 * @return The node at the <code>index</code>th position in the
93 * index.
95 public Node item(int index) { argument
97 while(--index>=0 && handle!=DTM.NULL) {
H A DDTMNodeList.java99 * Returns the <code>index</code>th item in the collection. If
100 * <code>index</code> is greater than or equal to the number of nodes in
102 * @param index Index into the collection.
103 * @return The node at the <code>index</code>th position in the
105 * index.
107 public Node item(int index) argument
110 int handle=m_iter.item(index);
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMStringListImpl.java67 public String item(int index) { argument
69 return (String) fStrings.elementAt(index);
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DCharArrayWrapper.java35 public char getChar(int index){ argument
36 return m_char[index];
H A DIntArrayWrapper.java35 public int getInt(int index){ argument
36 return m_int[index];
H A DLongArrayWrapper.java35 public long getLong(int index){ argument
36 return m_long[index];
H A DStringArrayWrapper.java35 public String getString(int index){ argument
36 return m_string[index];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DLazyEncodedSequence.java33 public synchronized ASN1Encodable getObjectAt(int index) argument
40 return super.getObjectAt(index);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DX500NameTokenizer.java12 private int index; field in class:X500NameTokenizer
27 this.index = -1;
33 return (index != value.length());
38 if (index == value.length())
43 int end = index + 1;
86 index = end;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DX509NameTokenizer.java13 private int index; field in class:X509NameTokenizer
28 this.index = -1;
34 return (index != value.length());
39 if (index == value.length())
44 int end = index + 1;
98 index = end;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathBuilderException.java19 CertPath certPath, int index)
18 ExtCertPathBuilderException(String msg, Throwable cause, CertPath certPath, int index) argument

Completed in 792 milliseconds

1234567891011>>