/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRRuleMemo.m | 37 @synthesize startIndex; 53 startIndex = nil; 63 startIndex = aStartIndex; 75 copy.startIndex = startIndex; 84 if (startIndex != nil) aCnt++; 98 if (aStartIndex == [aMatchMemo.startIndex integerValue] ) { 110 if (aStartIndex == [aMatchMemo.startIndex integerValue] ) { 122 if (aStartIndex == [aMatchMemo.startIndex integerValue] ) { 132 return startIndex; [all...] |
ANTLRCommonTree.m | 73 startIndex = -1; 87 startIndex = aNode.startIndex; 101 startIndex = -1; 114 // startIndex = token.startIndex; 115 startIndex = -1; 129 // startIndex = token.startIndex; 130 startIndex = -1 [all...] |
ANTLRBufferedTokenStream.m | 215 - (AMutableArray *)getFrom:(NSInteger)startIndex To:(NSInteger)stopIndex 217 if ( startIndex < 0 || stopIndex < 0 ) 226 for (NSInteger i = startIndex; i <= stopIndex; i++) { 289 - (AMutableArray *)getTokensFrom:(NSInteger) startIndex To:(NSInteger) stopIndex 291 return [self getTokensFrom:startIndex To:stopIndex With:(ANTLRBitSet *)nil]; 298 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex With:(ANTLRBitSet *)types 306 if ( startIndex < 0 ) 307 startIndex = 0; 308 if ( startIndex > stopIndex ) 313 for (NSInteger i = startIndex; i <= stopIndex; i++) [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
nav_braille.js | 22 * startIndex: (undefined|number), 26 * startIndex The beginning of a selection within text. 42 this.startIndex = goog.isDef(kwargs.startIndex) ? kwargs.startIndex : -1; 49 kwargs.endIndex : this.startIndex; 69 if (typeof json.startIndex !== 'number' || 75 startIndex: json.startIndex, 94 ' startIndex="' + this.startIndex + '" ' [all...] |
braille_util_test.js | 60 startIndex: actual.startIndex, 78 startIndex: 0, 87 startIndex: 0, 96 startIndex: 8, 105 startIndex: 16, 124 startIndex: 0, 134 startIndex: 0, 140 startIndex: 8, 161 startIndex: 0 [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...] |
/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/base/core/java/android/alsa/ |
LineTokenizer.java | 32 int nextToken(String line, int startIndex) { 34 int offset = startIndex; 45 int nextDelimiter(String line, int startIndex) { 47 int offset = startIndex;
|
/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/lzma/Java/SevenZip/Compression/RangeCoder/ |
BitTreeEncoder.java | 72 public static int ReverseGetPrice(short[] Models, int startIndex,
81 price += Encoder.GetPrice(Models[startIndex + m], bit);
87 public static void ReverseEncode(short[] Models, int startIndex,
94 rangeEncoder.Encode(Models, startIndex + m, bit);
|
BitTreeDecoder.java | 41 public static int ReverseDecode(short[] Models, int startIndex,
48 int bit = rangeDecoder.DecodeBit(Models, startIndex + m);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
GestureTrailDrawingPoints.java | 178 int startIndex; 179 for (startIndex = mTrailStartIndex; startIndex < trailSize; startIndex++) { 180 final int elapsedTime = sinceDown - eventTimes[startIndex]; 186 mTrailStartIndex = startIndex; 188 if (startIndex < trailSize) { 192 int p1x = getXCoordValue(xCoords[startIndex]); 193 int p1y = yCoords[startIndex]; 194 final int lastTime = sinceDown - eventTimes[startIndex]; [all...] |
/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/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/ |
braille_display_manager.js | 229 var startIndex = this.content_.startIndex; 232 if (startIndex >= 0) { 235 if (startIndex >= textToBraille.length) { 245 translatedStartIndex = textToBraille[startIndex]; 249 // startIndex is too, so we don't have to do another 334 * @param {number} startIndex The start index to place the cursor. 339 buffer, startIndex, endIndex) { 340 if (startIndex < 0 || startIndex >= buffer.byteLength | [all...] |
/external/lzma/CS/7zip/Compress/RangeCoder/ |
RangeCoderBitTree.cs | 74 public static UInt32 ReverseGetPrice(BitEncoder[] Models, UInt32 startIndex,
83 price += Models[startIndex + m].GetPrice(bit);
89 public static void ReverseEncode(BitEncoder[] Models, UInt32 startIndex,
96 Models[startIndex + m].Encode(rangeEncoder, bit);
142 public static uint ReverseDecode(BitDecoder[] Models, UInt32 startIndex,
149 uint bit = Models[startIndex + m].Decode(rangeDecoder);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
AbstractInlineTextBox.h | 62 WordBoundaries(int startIndex, int endIndex) : startIndex(startIndex), endIndex(endIndex) { } 63 int startIndex;
|
/external/icu/icu4c/source/tools/toolutil/ |
collationinfo.h | 31 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex);
|
/external/proguard/src/proguard/classfile/util/ |
ExternalTypeEnumeration.java | 81 int startIndex = index; 85 startIndex); 91 startIndex); 98 return descriptor.substring(startIndex, index++).trim();
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zExtract.cpp | 127 CNum startIndex = db.FolderStartFileIndex[folderIndex];
129 index <= fileIndex - startIndex; index++)
131 // UInt64 unpackSize = _db.Files[startIndex + index].UnpackSize;
135 efi.ExtractStatuses.Add(index == fileIndex - startIndex);
182 CNum startIndex;
184 startIndex = efi.FileIndex;
186 startIndex = db.FolderStartFileIndex[efi.FolderIndex];
194 startIndex,
|
/frameworks/av/media/libeffects/loudness/dsp/core/ |
basic.h | 32 // StartIndex: the minimum searched index 35 // StartIndex <= i <= (EndIndex-1)
|
/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/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/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()));
|