/dalvik/libcore/icu/src/main/native/ |
NativeConverter.cpp | 706 static int32_t copyString(char* dest, int32_t destCapacity, int32_t startIndex, 712 if(dest == NULL || src == NULL || destCapacity < startIndex) { 722 dest[startIndex++] = src[i]; 725 dest[startIndex] = 0; /* no bounds check already made sure that we have enough room */ 726 return startIndex; [all...] |
/external/webkit/WebCore/css/ |
CSSStyleSelector.h | 178 void applyDeclarations(bool firstPass, bool important, int startIndex, int endIndex);
|
/external/icu4c/common/ |
uhash.c | 334 int32_t theIndex, startIndex; 340 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length; 366 } while (theIndex != startIndex); [all...] |
uiter.cpp | 362 return ((CharacterIterator *)(iter->context))->startIndex(); 447 } else if((int32_t)state<((CharacterIterator *)(iter->context))->startIndex() || ((CharacterIterator *)(iter->context))->endIndex()<(int32_t)state) {
|
normlzr.cpp | 413 int32_t Normalizer::startIndex() const {
|
rbbi.cpp | 413 if (newText==NULL || newText->startIndex() != 0) { 414 // startIndex !=0 wants to be an error, but there's no way to report it. [all...] |
/external/v8/src/ |
string.js | 563 var startIndex = 0; 568 if (startIndex === length) { 573 var matchInfo = splitMatch(separator, subject, currentIndex, startIndex); 583 if (startIndex === endIndex && endIndex === currentIndex) { 584 startIndex++; 603 startIndex = currentIndex = endIndex;
|
/external/icu4c/i18n/ |
rbnf.cpp | [all...] |
usearch.cpp | 611 int32_t startindex = ubrk_first(breakiterator); local 615 if (start < startindex || start > endindex || 616 end < startindex || end > endindex) { 622 UBool result = (start == startindex || [all...] |
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
DoubleBufferTest.java | 963 private void assertContentLikeTestData1(DoubleBuffer buf, int startIndex, 967 assertEquals(buf.get(startIndex + i), value, 0.01);
|
FloatBufferTest.java | 971 int startIndex, float startValue, int length) { 974 assertEquals(buf.get(startIndex + i), value, 0.01);
|
IntBufferTest.java | 947 int startIndex, int startValue, int length) { 950 assertEquals(buf.get(startIndex + i), value);
|
LongBufferTest.java | 929 int startIndex, long startValue, int length) { 932 assertEquals(buf.get(startIndex + i), value);
|
ShortBufferTest.java | 940 int startIndex, short startValue, int length) { 943 assertEquals(buf.get(startIndex + i), value);
|
CharBufferTest.java | [all...] |
ByteBufferTest.java | [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
GridViewSpecial.java | 669 int startIndex = startRow * mColumns; 675 for (int i = startIndex; i < endIndex; i++) { [all...] |
/external/quake/quake/src/QW/scitech/include/ |
mgraph.h | [all...] |
/external/quake/quake/src/WinQuake/scitech/INCLUDE/ |
MGRAPH.H | [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherModel.java | [all...] |
/external/icu4c/test/intltest/ |
ssearch.cpp | [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
BatteryStatsImpl.java | 878 int startIndex, endIndex; 884 startIndex = endIndex = i + 1; 891 for (endIndex=startIndex; 904 for (int j = startIndex; j < endIndex; j++) { 907 boolean parsed = Process.parseProcLine(wlBuffer, startIndex, endIndex, [all...] |
/external/skia/src/effects/ |
SkGradientShader.cpp | 231 int startIndex = dummyFirst ? 0 : 1; 233 for (int i = startIndex; i < count; i++) { [all...] |
/cts/tools/host/src/com/android/cts/ |
ConsoleUi.java | 629 * @param startIndex The start index. 633 private int getUserInputId(String notification, int startIndex, int endIndex) [all...] |
/external/webkit/WebCore/editing/ |
ApplyStyleCommand.cpp | 603 int startIndex = TextIterator::rangeLength(startRange.get(), true); 627 startRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), startIndex, 0, true); [all...] |