OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startIndex
(Results
1 - 25
of
250
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSubstring.java
58
int
startIndex
;
66
startIndex
= 0;
71
startIndex
= (start > 0) ? (int) start - 1 : 0;
85
if (
startIndex
> lenOfS1)
86
startIndex
= lenOfS1;
88
substr = s1.substring(
startIndex
, end);
92
if (
startIndex
> lenOfS1)
93
startIndex
= lenOfS1;
94
substr = s1.substring(
startIndex
);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Utils.java
63
int
startIndex
= 0;
66
result.append(src.substring(
startIndex
,endIndex));
70
startIndex
= endIndex + replacee.length();
71
endIndex = src.indexOf(replacee,
startIndex
);
73
result.append(src.substring(
startIndex
,src.length()));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlv.java
84
* @param
startIndex
Index in data at which to start parsing
88
public static List<ComprehensionTlv> decodeMany(byte[] data, int
startIndex
)
92
while (
startIndex
< endIndex) {
93
ComprehensionTlv ctlv = ComprehensionTlv.decode(data,
startIndex
);
96
startIndex
= ctlv.mValueIndex + ctlv.mLength;
110
* @param
startIndex
Index in data at which to start parsing
114
public static ComprehensionTlv decode(byte[] data, int
startIndex
)
116
int curIndex =
startIndex
;
129
",
startIndex
=" +
startIndex
+ " curIndex=" + curIndex
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
WspTypeDecoder.java
213
* @param
startIndex
The starting position of the "Text-string" in this pdu
219
public boolean decodeTextString(int
startIndex
) {
220
int index =
startIndex
;
224
mDataLength = index -
startIndex
+ 1;
225
if (mWspData[
startIndex
] == 127) {
226
mStringValue = new String(mWspData,
startIndex
+ 1, mDataLength - 2);
228
mStringValue = new String(mWspData,
startIndex
, mDataLength - 1);
236
* @param
startIndex
The starting position of the "Token-text" in this pdu
242
public boolean decodeTokenText(int
startIndex
) {
243
int index =
startIndex
;
[
all
...]
/external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java
81
int
startIndex
= index;
85
startIndex
);
91
startIndex
);
98
return descriptor.substring(
startIndex
, index++).trim();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs
56
protected int
startIndex
= -1;
74
this.
startIndex
= node.
startIndex
;
152
if (
startIndex
== -1 && token != null) {
155
return
startIndex
;
158
startIndex
= value;
196
if (
startIndex
< 0 || stopIndex < 0) {
197
startIndex
= stopIndex = token.TokenIndex;
204
if (
startIndex
>= 0 && stopIndex >= 0)
209
startIndex
= firstChild.TokenStartIndex
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs
56
protected int
startIndex
= -1;
76
this.
startIndex
= node.
startIndex
;
194
if (
startIndex
== -1 && Token != null )
197
return
startIndex
;
202
startIndex
= value;
255
if (
startIndex
< 0 || stopIndex < 0 )
256
startIndex
= stopIndex = Token.TokenIndex;
270
if (
startIndex
>= 0 && stopIndex >= 0 )
277
startIndex
= firstChild.TokenStartIndex
[
all
...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTree.java
45
protected int
startIndex
=-1, stopIndex=-1;
58
this.
startIndex
= node.
startIndex
;
113
if (
startIndex
==-1 && token!=null ) {
116
return
startIndex
;
120
startIndex
= index;
140
if (
startIndex
<0 || stopIndex<0 ) {
141
startIndex
= stopIndex = token.getTokenIndex();
148
if (
startIndex
>=0 && stopIndex>=0 ) return; // already set
152
startIndex
= firstChild.getTokenStartIndex()
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
ArgList.cpp
33
void ArgList::getSlice(int
startIndex
, ArgList& result) const
35
if (
startIndex
<= 0 || static_cast<unsigned>(
startIndex
) >= m_argCount) {
39
result = ArgList(m_args +
startIndex
, m_argCount -
startIndex
);
/external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java
58
private int
startIndex
;
69
startIndex
= 0;
82
startIndex
= aJavascriptTokenBuffer.
startIndex
;
117
if (endIndex ==
startIndex
) {
118
startIndex
= (endIndex + 1) % buffer.length;
129
if (
startIndex
== endIndex) {
250
int len = endIndex -
startIndex
;
/external/webkit/Source/WebCore/fileapi/
BlobURL.cpp
59
unsigned
startIndex
= url.pathAfterLastSlash();
60
return url.string().substring(
startIndex
);
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
SearchUtil.java
28
public int
startIndex
= -1;
35
",
startIndex
=" +
startIndex
+
46
* @return A MatchedLine object containing the matching line and the
startIndex
of the substring
72
matched.
startIndex
= index - (start + 1);
131
* @param
startIndex
The index to start searching. 0 based indexing.
135
static int findNextTokenStart(String line, int
startIndex
) {
136
int index =
startIndex
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTokenStream.h
81
- (NSMutableArray *)getFrom:(NSInteger)
startIndex
To:(NSInteger) stopIndex;
90
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex;
91
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
92
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithList:(NSMutableArray *)types;
93
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
94
- (NSString *) toStringFromStart:(NSInteger)
startIndex
ToEnd:(NSInteger)stopIndex;
95
- (NSString *) toStringFromToken:(id<ANTLRToken>)
startIndex
ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h
36
NSNumber *
startIndex
;
40
@property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *
startIndex
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTokenStream.h
81
- (NSMutableArray *)getFrom:(NSInteger)
startIndex
To:(NSInteger) stopIndex;
90
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex;
91
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
92
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithList:(NSMutableArray *)types;
93
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
94
- (NSString *) toStringFromStart:(NSInteger)
startIndex
ToEnd:(NSInteger)stopIndex;
95
- (NSString *) toStringFromToken:(id<ANTLRToken>)
startIndex
ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h
36
NSNumber *
startIndex
;
40
@property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *
startIndex
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTokenStream.h
81
- (NSMutableArray *)getFrom:(NSInteger)
startIndex
To:(NSInteger) stopIndex;
90
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex;
91
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
92
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithList:(NSMutableArray *)types;
93
- (NSMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
94
- (NSString *) toStringFromStart:(NSInteger)
startIndex
ToEnd:(NSInteger)stopIndex;
95
- (NSString *) toStringFromToken:(id<ANTLRToken>)
startIndex
ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h
36
NSNumber *
startIndex
;
40
@property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *
startIndex
;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTokenStream.h
84
- (AMutableArray *)getFrom:(NSInteger)
startIndex
To:(NSInteger) stopIndex;
93
- (AMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex;
94
- (AMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
95
- (AMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithList:(AMutableArray *)types;
96
- (AMutableArray *)getTokensFrom:(NSInteger)
startIndex
To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
98
- (NSString *) toStringFromStart:(NSInteger)
startIndex
ToEnd:(NSInteger)stopIndex;
99
- (NSString *) toStringFromToken:(id<ANTLRToken>)
startIndex
ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h
36
NSNumber *
startIndex
;
40
@property (retain, getter=getStartIndex, setter=setStartIndex:) NSNumber *
startIndex
;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTree.as
45
public var
startIndex
:int=-1, stopIndex:int=-1;
57
this.
startIndex
= node.
startIndex
;
115
if (
startIndex
==-1 && _token!=null ) {
118
return
startIndex
;
122
startIndex
= index;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrail.java
217
int
startIndex
;
218
for (
startIndex
= mTrailStartIndex;
startIndex
< trailSize;
startIndex
++) {
219
final int elapsedTime = sinceDown - eventTimes[
startIndex
];
225
mTrailStartIndex =
startIndex
;
227
if (
startIndex
< trailSize) {
231
int p1x = getXCoordValue(xCoords[
startIndex
]);
232
int p1y = yCoords[
startIndex
];
233
final int lastTime = sinceDown - eventTimes[
startIndex
];
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
ListIteratorTester.java
44
Iterable<E> expectedElements, int
startIndex
) {
46
KnownOrder.KNOWN_ORDER,
startIndex
);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js
11
this.
startIndex
= -1;
26
this.
startIndex
= node.
startIndex
;
85
return this.
startIndex
;
89
this.
startIndex
= index;
/external/proguard/src/proguard/
WordReader.java
176
int
startIndex
= currentIndex;
179
char startChar = currentLine.charAt(
startIndex
);
190
startIndex
++;
200
currentWord = currentLine.substring(
startIndex
-1, currentIndex);
229
currentWord = currentLine.substring(
startIndex
, endIndex);
Completed in 1188 milliseconds
1
2
3
4
5
6
7
8
9
10