Searched refs:targetOffset (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DSliceOps.java563 private final long targetOffset, targetSize; field in class:SliceOps.SliceTask
576 this.targetOffset = offset;
584 this.targetOffset = parent.targetOffset;
643 && isLeftCompleted(targetOffset + targetSize))
657 long to = targetSize >= 0 ? Math.min(input.count(), targetOffset + targetSize) : thisNodeSize;
658 return input.truncate(targetOffset, to, generator);
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeConverter.cpp238 jint* targetOffset = &myData[1]; local
241 char* cTarget = reinterpret_cast<char*>(uTarget.get() + *targetOffset);
246 *targetOffset = (reinterpret_cast<jbyte*>(cTarget) - uTarget.get());
294 jint* targetOffset = &myData[1]; local
297 UChar* cTarget = reinterpret_cast<UChar*>(uTarget.get()) + *targetOffset;
302 *targetOffset = cTarget - reinterpret_cast<UChar*>(uTarget.get()) - *targetOffset;
/libcore/ojluni/src/main/java/java/lang/
H A DString.java1775 * @param targetOffset offset of the target string.
1780 char[] target, int targetOffset, int targetCount,
1792 char first = target[targetOffset];
1805 for (int k = targetOffset + 1; j < end && source[j]
1926 * @param targetOffset offset of the target string.
1931 char[] target, int targetOffset, int targetCount,
1949 int strLastIndex = targetOffset + targetCount - 1;
1779 indexOf(char[] source, int sourceOffset, int sourceCount, char[] target, int targetOffset, int targetCount, int fromIndex) argument
1930 lastIndexOf(char[] source, int sourceOffset, int sourceCount, char[] target, int targetOffset, int targetCount, int fromIndex) argument

Completed in 151 milliseconds