Searched refs:endIndex (Results 1 - 25 of 92) sorted by relevance

1234

/external/icu4c/common/unicode/
H A Dumisc.h47 int32_t endIndex; member in struct:UFieldPosition
H A Dchariter.h145 * (toward endIndex()). If there are
155 * (toward endIndex()). If there are
495 * (toward endIndex()), and returns that code unit. If there are
504 * (toward endIndex()), and returns that code point. If there are
564 inline int32_t endIndex(void) const;
707 CharacterIterator::endIndex(void) const { function in class:CharacterIterator
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java61 private int endIndex; field in class:JavascriptTokenBuffer
70 endIndex = 0;
83 endIndex = aJavascriptTokenBuffer.endIndex;
115 buffer[endIndex] = input;
116 endIndex = (endIndex + 1) % buffer.length;
117 if (endIndex == startIndex) {
118 startIndex = (endIndex + 1) % buffer.length;
129 if (startIndex == endIndex) {
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DUtils.java64 int endIndex = src.indexOf(replacee);
65 while(endIndex != -1) {
66 result.append(src.substring(startIndex,endIndex));
70 startIndex = endIndex + replacee.length();
71 endIndex = src.indexOf(replacee,startIndex);
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java206 public int indexOf(int ch, int beginIndex, int endIndex) { argument
210 if (endIndex > this.len) {
211 endIndex = this.len;
213 if (beginIndex > endIndex) {
216 for (int i = beginIndex; i < endIndex; i++) {
228 public String substring(int beginIndex, int endIndex) { argument
232 if (endIndex > this.len) {
235 if (beginIndex > endIndex) {
238 return new String(this.buffer, beginIndex, endIndex - beginIndex);
241 public String substringTrimmed(int beginIndex, int endIndex) { argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DNonCopyingSort.h69 ptrdiff_t endIndex = count - 1; local
70 while (endIndex > 0) {
71 swap(start[endIndex], start[0]);
72 siftDown(start, 0, endIndex - 1, compareLess);
73 endIndex--;
/external/proguard/src/proguard/
H A DWordReader.java177 int endIndex;
184 endIndex = ++currentIndex;
206 endIndex = currentIndex++;
225 endIndex = currentIndex;
229 currentWord = currentLine.substring(startIndex, endIndex);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs16 public SubList( IList source, int startIndex, int endIndex )
20 if ( startIndex < 0 || endIndex < 0 )
22 if ( startIndex > endIndex || endIndex >= source.Count )
27 _endIndex = endIndex;
177 public SubList( IList<T> source, int startIndex, int endIndex )
181 if ( startIndex < 0 || endIndex < 0 )
183 if ( startIndex > endIndex || endIndex >= source.Count )
188 _endIndex = endIndex;
[all...]
/external/webkit/Tools/Scripts/
H A Dbisect-builds132 my $endIndex = $revisions[1] ? findNearestNightlyIndex(@nightlies, $revisions[1], 'floor') : $#nightlies;
154 $nightlies[$endIndex]->{rev};
155 downloadNightly($nightlies[$endIndex]->{file}, $nightlyFilesURLBase, $nightlyDownloadDirectory);
156 mountAndRunNightly($nightlies[$endIndex]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
157 $didReproduceBug = promptForTest($nightlies[$endIndex]->{rev});
158 $endIndex++ if $didReproduceBug < 0;
166 printStatus($nightlies[$startIndex]->{rev}, $nightlies[$endIndex]->{rev}, $isProgression);
169 while (abs($endIndex - $startIndex) > 1) {
170 my $index = $startIndex + int(($endIndex - $startIndex) / 2);
175 my $buildsLeft = max(max(0, $endIndex
[all...]
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java105 int endIndex = pos;
106 String s = buffer.substring(beginIndex, endIndex);
/external/webkit/Source/WebCore/platform/audio/
H A DAudioResamplerKernel.cpp59 int endIndex = static_cast<int>(nextFractionalIndex + 1.0); // round up to next integer index local
62 // We need to fill the buffer up to and including endIndex (so add 1) but we've already buffered m_fillIndex frames from last time.
63 size_t framesNeeded = 1 + endIndex - m_fillIndex;
/external/icu4c/samples/citer/
H A Dciter.cpp76 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
77 u_fprintf(out, "startIndex() or endIndex() failed\n");
135 int32_t i = iter.endIndex();
140 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
141 u_fprintf(out, "startIndex() or endIndex() failed\n");
/external/icu4c/test/intltest/
H A Dtstnrapi.cpp90 copy.endIndex()!=iter.endIndex()
115 if(copy.endIndex()!=s.length()-1) {
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dsplit-002.js189 e = z.endIndex; // 14
229 return { endIndex : reResult.index + reResult[0].length, captures : cap };
242 return { endIndex : q + r, captures : cap }; // 7
/external/webkit/Source/WebCore/html/parser/
H A DHTMLSourceTracker.cpp59 int length = token.endIndex() - token.startIndex() - m_sourceFromPreviousSegments.length();
/external/proguard/src/proguard/retrace/
H A DReTrace.java253 int endIndex = matcher.end(expressionTypeIndex + 1);
308 lineIndex = endIndex;
518 int endIndex = obfuscatedArguments.indexOf(',', startIndex);
519 if (endIndex < 0)
524 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex, endIndex).trim())).append(',');
526 startIndex = endIndex + 1;
/external/webkit/Source/WebCore/dom/
H A DSelectElement.cpp787 int endIndex = 0; local
794 endIndex = nextSelectableListIndex(data, element, startIndex);
796 endIndex = nextSelectableListIndexPageAway(data, element, startIndex, SkipForwards);
801 endIndex = previousSelectableListIndex(data, element, startIndex);
803 endIndex = nextSelectableListIndexPageAway(data, element, startIndex, SkipBackwards);
808 endIndex = nextSelectableListIndex(data, element, data.activeSelectionEndIndex());
811 endIndex = previousSelectableListIndex(data, element, data.activeSelectionEndIndex());
814 endIndex = nextSelectableListIndexPageAway(data, element, data.activeSelectionEndIndex(), SkipForwards);
817 endIndex = nextSelectableListIndexPageAway(data, element, data.activeSelectionEndIndex(), SkipBackwards);
822 endIndex
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DAbstractAuthenticationHandler.java98 int endIndex = pos;
99 String s = buffer.substring(beginIndex, endIndex);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLStringDefault.java641 * extends to the character at index <code>endIndex - 1</code>.
642 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
645 * @param endIndex the ending index, exclusive.
649 * <code>endIndex</code> is larger than the length of
652 * <code>endIndex</code>.
654 public XMLString substring(int beginIndex, int endIndex) argument
656 return new XMLStringDefault(m_str.substring(beginIndex, endIndex));
H A DXMLString.java548 * extends to the character at index <code>endIndex - 1</code>.
549 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
552 * @param endIndex the ending index, exclusive.
556 * <code>endIndex</code> is larger than the length of
559 * <code>endIndex</code>.
561 public abstract XMLString substring(int beginIndex, int endIndex); argument
/external/llvm/lib/CodeGen/
H A DSpiller.cpp141 SlotIndex endIndex = loadIndex.getNextIndex(); local
144 newLI->addRange(LiveRange(loadIndex, endIndex, loadVNI));
/external/icu4c/i18n/
H A Dudateintervalformat.cpp99 position->endIndex = fp.getEndIndex();
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3string.c82 static pANTLR3_STRING subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
83 static pANTLR3_STRING subStringUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
1280 subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) argument
1284 if (endIndex > string->len)
1286 endIndex = string->len + 1;
1288 newStr = string->factory->newPtr(string->factory, string->chars + startIndex, endIndex - startIndex);
1297 subStringUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) argument
1301 if (endIndex > string->len)
1303 endIndex = string->len + 1;
1305 newStr = string->factory->newPtr(string->factory, (pANTLR3_UINT8)((pANTLR3_UINT16)(string->chars) + startIndex), endIndex
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3string.h179 (*subString) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
/external/arduino/hardware/arduino/cores/arduino/
H A DWString.h75 String substring( unsigned int beginIndex, unsigned int endIndex ) const;

Completed in 644 milliseconds

1234