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

1 2

  /frameworks/base/core/java/com/android/internal/util/
FastXmlSerializer.java 120 int lastPos = 0;
127 if (lastPos < pos) append(string, lastPos, pos-lastPos);
128 lastPos = pos + 1;
131 if (lastPos < pos) append(string, lastPos, pos-lastPos);
138 int lastPos = start;
145 if (lastPos < pos) append(buf, lastPos, pos-lastPos)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GlyphPageTreeNodeWinCE.cpp 33 typedef unsigned (*funcGetCharCodePages)(unsigned short c, unsigned& lastPos);
45 unsigned lastPos = 0;
47 DWORD actualCodePages = getCharCodePages(buffer[i], lastPos);
  /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/webkit/Source/WebCore/platform/text/
RegularExpression.cpp 135 int lastPos = -1;
141 if (pos + matchLength > lastPos + lastMatchLength) {
143 lastPos = pos;
150 return lastPos;
  /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/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/webkit/Source/WebCore/platform/text/mac/
ShapeArabic.c 356 int32_t prevPos, lastPos,Nx, Nw;
388 lastPos = i;
414 dest[lastPos] =wLamalef; /* it by a space. */
415 i=lastPos;
458 prevPos = lastPos;
459 lastPos = i;
  /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/webkit/Source/WebCore/plugins/win/
PluginDatabaseWin.cpp 59 LPWSTR lastPos = 0;
63 lastPos = curPos;
66 if (lastPos == curPos - 1)
69 if (lastPos)
70 *lastPos = 0;
  /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/base/core/java/android/widget/
AbsListView.java     [all...]
  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 99 FloatPoint delta(event->pos().x() - event->lastPos().x(), event->pos().y() - event->lastPos().y());
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 386 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
387 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
389 while (std::string::npos != pos || std::string::npos != lastPos) {
390 std::string token = CommandLine.substr(lastPos, pos - lastPos);
396 lastPos = CommandLine.find_first_not_of(delimiters, pos);
398 pos = CommandLine.find_first_of(delimiters, lastPos);
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 860 std::string::size_type pos, lastPos = 0;
864 pos = name.find_first_of(':', lastPos);
865 Out << " " << name.substr(lastPos, pos - lastPos);
867 lastPos = pos + 1;
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.cpp 297 // events by comparing lastPos with newPos.
298 // NOTE: lastPos from the event always comes empty, so we work
300 static QPointF lastPos = QPointF();
301 if (lastPos == ev->pos())
303 lastPos = ev->pos();
  /frameworks/base/icu4j/java/android/icu/text/
ArabicShaping.java     [all...]
  /external/icu4c/common/
ushape.c     [all...]
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java     [all...]
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 
  /development/samples/training/bitmapfun/libs/
android-support-v4.jar 
  /development/samples/training/location-aware/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/app/libs/
android-support-v4.jar 

Completed in 1079 milliseconds

1 2