Searched refs:lastPos (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGlyphPageTreeNodeWinCE.cpp33 typedef unsigned (*funcGetCharCodePages)(unsigned short c, unsigned& lastPos);
45 unsigned lastPos = 0; local
47 DWORD actualCodePages = getCharCodePages(buffer[i], lastPos);
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp188 RandomAccessIter lastPos = first; local
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; local
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_cach
323 RandomAccessIter lastPos = first; local
516 RandomAccessIter lastPos = first; local
567 RandomAccessIter lastPos = first; local
618 RandomAccessIter lastPos = first; local
667 RandomAccessIter lastPos = first; local
739 RandomAccessIter lastPos = first; local
824 RandomAccessIter lastPos = first; local
908 RandomAccessIter lastPos = first; local
1173 RandomAccessIter lastPos = bin_cache[cache_offset]; local
1263 RandomAccessIter lastPos = first; local
1350 RandomAccessIter lastPos = bin_cache[cache_offset]; local
1437 RandomAccessIter lastPos = bin_cache[cache_offset]; local
1528 RandomAccessIter lastPos = first; local
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DRegularExpression.cpp135 int lastPos = -1; local
141 if (pos + matchLength > lastPos + lastMatchLength) {
143 lastPos = pos;
150 return lastPos;
/external/harfbuzz/src/
H A Dharfbuzz-arabic.c381 int lastPos = 0; local
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
509 int lastPos = 0; local
[all...]
/external/tinyxml/
H A Dtinyxml.cpp1029 const char* lastPos = buf; local
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/
H A DShapeArabic.c356 int32_t prevPos, lastPos,Nx, Nw; local
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/
H A DExecutor.java38 private int lastPos; field in class:Executor
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);
937 throw new BadBytecode("Could not find class in descriptor [pos = " + lastPos + "]: " + e.getMessage());
941 throw new BadBytecode("Could not obtain parameters for descriptor [pos = " + lastPos + "]: " + desc);
955 throw new BadBytecode("Could not find class in descriptor [pos = " + lastPos + "]: " + e.getMessage());
959 throw new BadBytecode("Could not obtain return type for descriptor [pos = " + lastPos
[all...]
/external/webkit/Source/WebCore/plugins/win/
H A DPluginDatabaseWin.cpp59 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/
H A DAndroidInput.java267 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));
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebEventFactoryQt.cpp99 FloatPoint delta(event->pos().x() - event->lastPos().x(), event->pos().y() - event->lastPos().y());
/external/llvm/tools/bugpoint/
H A DToolRunner.cpp386 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0); local
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);
/external/clang/lib/AST/
H A DDeclPrinter.cpp860 std::string::size_type pos, lastPos = 0; local
864 pos = name.find_first_of(':', lastPos);
865 Out << " " << name.substr(lastPos, pos - lastPos);
867 lastPos = pos + 1;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage.cpp297 // events by comparing lastPos with newPos.
298 // NOTE: lastPos from the event always comes empty, so we work
300 static QPointF lastPos = QPointF(); local
301 if (lastPos == ev->pos())
303 lastPos = ev->pos();
/external/icu4c/common/
H A Dushape.c1201 int32_t lastPos,Nx, Nw; local
1242 lastPos = i;
1268 dest[lastPos] =wLamalef; /* it by LAMALEF_SPACE_SUB which is the last character in the */
1269 i=lastPos; /* unicode private use area, this is done to make */
1334 lastPos = i;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 388 milliseconds