HomeSort by relevance Sort by last modified time
    Searched refs:lastPos (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/base/core/java/com/android/internal/util/
FastXmlSerializer.java 134 int lastPos = 0;
141 if (lastPos < pos) append(string, lastPos, pos-lastPos);
142 lastPos = pos + 1;
145 if (lastPos < pos) append(string, lastPos, pos-lastPos);
152 int lastPos = start;
159 if (lastPos < pos) append(buf, lastPos, pos-lastPos)
    [all...]
  /external/webrtc/src/system_wrappers/source/spreadsortlib/
spreadsort.hpp 188 RandomAccessIter lastPos = first;
189 for(unsigned u = cache_offset; u < cache_end; lastPos = bin_cache[u], ++u) {
190 size_t count = bin_cache[u] - lastPos;
196 std::sort(lastPos, bin_cache[u]);
198 spread_sort_rec<RandomAccessIter, div_type, data_type>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes);
275 RandomAccessIter lastPos = first;
276 for(unsigned u = cache_offset; u < cache_end; lastPos = bin_cache[u], ++u) {
277 size_t count = bin_cache[u] - lastPos;
281 std::sort(lastPos, bin_cache[u], comp);
283 spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes, shift, comp);
    [all...]
  /external/harfbuzz/src/
harfbuzz-arabic.c 381 int lastPos = 0;
402 properties[lastPos].shape = joining_table[shape][j].form1;
407 if (properties[lastPos].shape == XInitial || properties[lastPos].shape == XMedial)
411 if (properties[lastPos].shape == XFinal)
412 properties[lastPos-1].justification = HB_Arabic_HaaDal;
415 if (properties[lastPos].shape == XFinal)
416 properties[lastPos-1].justification = HB_Arabic_Alef;
419 if (properties[lastPos].shape == XFinal)
420 properties[lastPos-1].justification = HB_Arabic_Waw
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-arabic.c 381 int lastPos = 0;
402 properties[lastPos].shape = joining_table[shape][j].form1;
407 if (properties[lastPos].shape == XInitial || properties[lastPos].shape == XMedial)
411 if (properties[lastPos].shape == XFinal)
412 properties[lastPos-1].justification = HB_Arabic_HaaDal;
415 if (properties[lastPos].shape == XFinal)
416 properties[lastPos-1].justification = HB_Arabic_Alef;
419 if (properties[lastPos].shape == XFinal)
420 properties[lastPos-1].justification = HB_Arabic_Waw
    [all...]
  /external/tinyxml/
tinyxml.cpp 1029 const char* lastPos = buf;
1038 data.append( lastPos, p-lastPos+1 ); // append, include the newline
1040 lastPos = p; // and point to the new buffer (may be 0)
1046 if ( (p-lastPos) > 0 ) {
1047 data.append( lastPos, p-lastPos ); // do not add the CR
1054 lastPos = p;
1060 lastPos = p;
1069 if ( p-lastPos ) {
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 38 private int lastPos;
67 this.lastPos = pos;
652 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component);
674 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component);
774 throw new BadBytecode("bad LDC [pos = " + lastPos + "]: " + tag);
928 throw new BadBytecode("Could not find class [pos = " + lastPos + "]: " + name);
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/input/android/
AndroidInput.java 267 Vector2f lastPos = lastPositions.get(pointerIndex);
268 if (lastPos == null) {
269 lastPos = new Vector2f(event.getX(pointerIndex), this.getHeight() - event.getY(pointerIndex));
270 lastPositions.put(pointerId, lastPos);
273 touch.set(Type.MOVE, event.getX(pointerIndex), this.getHeight() - event.getY(pointerIndex), event.getX(pointerIndex) - lastPos.x, this.getHeight() - event.getY(pointerIndex) - lastPos.y);
278 lastPos.set(event.getX(pointerIndex), this.getHeight() - event.getY(pointerIndex));
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 379 pArchive.inputs().insert(parent->lastPos, *(parent->move), *member);
383 parent->move->move(parent->lastPos);
388 pArchive.addObjectMember(pFileOffset, parent->lastPos);
399 parent->lastPos,
Archive.cpp 136 ar.lastPos = pLastPos;
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
ListView.java     [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 414 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
415 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
417 while (std::string::npos != pos || std::string::npos != lastPos) {
418 std::string token = CommandLine.substr(lastPos, pos - lastPos);
424 lastPos = CommandLine.find_first_not_of(delimiters, pos);
426 pos = CommandLine.find_first_of(delimiters, lastPos);
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 90 InputTree::iterator lastPos;
  /frameworks/base/services/java/com/android/server/am/
ProcessStatsService.java 388 int lastPos = 0;
395 if (lastPos == 0) {
402 if (lastPos < (i-1)) {
403 String str = arg.substring(lastPos, i);
416 lastPos = i + 1;
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ushape.c     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 923 std::string::size_type pos, lastPos = 0;
927 pos = name.find_first_of(':', lastPos);
928 Out << " " << name.substr(lastPos, pos - lastPos);
931 lastPos = pos + 1;
    [all...]
  /external/icu4c/common/
ushape.cpp     [all...]
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java     [all...]
  /libcore/crypto/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/libs/
android-support-v4.jar 
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 

Completed in 2317 milliseconds

1 2 3