/external/icu4c/common/ |
brkeng.cpp | 77 int32_t endPos, 89 while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[breakType]->contains(c)) {
|
dictbe.h | 86 * @param endPos The end of the run within the supplied text. 95 int32_t endPos,
|
dictbe.cpp | 46 int32_t endPos, 68 while((current = (int32_t)utext_getNativeIndex(text)) < endPos && fSet.contains(c)) {
|
rbbi.cpp | [all...] |
/frameworks/base/tools/localize/ |
XMLHandler.h | 159 virtual int OnDone(const SourcePos& endPos); 179 virtual int OnDone(const SourcePos& endPos);
|
/external/quake/quake/src/WinQuake/ |
world.cpp | 698 VectorCopy (mid, trace->endpos); 708 VectorCopy (mid, trace->endpos); 733 VectorCopy (end, trace.endpos); 768 // rotate endpos back to world frame of reference 781 VectorCopy (trace.endpos, temp); 782 trace.endpos[0] = DotProduct (temp, forward); 783 trace.endpos[1] = -DotProduct (temp, right); 784 trace.endpos[2] = DotProduct (temp, up); 796 VectorAdd (trace.endpos, offset, trace.endpos); [all...] |
gl_test.cpp | 56 VectorCopy (end, trace.endpos);
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/ |
tncc.c | 806 char *endpos; local 817 endpos = end; 821 *endpos = '<'; 829 *endpos = '<'; 852 char *xml, *xmlend, *endpos; local 862 endpos = end; 866 *endpos = '<'; 882 *endpos = '<'; 891 *endpos = '<';
|
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
TreeSetTest.java | 476 final int endPos = 3 * objArray.length / 4; 477 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]); 479 aSubSet.size() == (endPos - startPos)); 480 for (int counter = startPos; counter < endPos; counter++)
|
/external/grub/stage2/ |
fsys_xfs.c | 492 int toread, startpos, endpos; local 501 endpos = filepos + len; 509 toread = (endofcur >= endpos) 521 toread = ((offset << xfs.blklog) >= endpos)
|
/external/quake/quake/src/QW/client/ |
cl_cam.c | 162 // v is endpos 167 VectorCopy(trace.endpos, vec); 168 VectorSubtract(trace.endpos, player->origin, v); 173 VectorSubtract(trace.endpos, self->origin, v);
|
gl_test.c | 56 VectorCopy (end, trace.endpos);
|
pmove.c | 145 VectorCopy (trace.endpos, pmove.origin); 255 VectorCopy (trace.endpos, pmove.origin); 279 VectorCopy (trace.endpos, pmove.origin); 293 VectorCopy (trace.endpos, pmove.origin); 488 VectorCopy (trace.endpos, pmove.origin); 602 VectorCopy (tr.endpos, pmove.origin);
|
/external/srec/portable/include/ |
pstream.h | 43 const unsigned char *endPos;
|
/external/webkit/WebCore/rendering/ |
RenderView.h | 70 void setSelection(RenderObject* start, int startPos, RenderObject* end, int endPos, SelectionRepaintMode = RepaintNewXOROld); 100 void selectionStartEnd(int& startPos, int& endPos) const;
|
RenderView.cpp | 395 void RenderView::setSelection(RenderObject* start, int startPos, RenderObject* end, int endPos, SelectionRepaintMode blockRepaintMode) 404 m_selectionEnd == end && m_selectionEndPos == endPos) 452 m_selectionEndPos = endPos; 465 stop = rendererAfterPosition(end, endPos); 567 void RenderView::selectionStartEnd(int& startPos, int& endPos) const 570 endPos = m_selectionEndPos;
|
/external/webkit/WebCore/xml/ |
XPathFunctions.cpp | 348 size_t endPos = startPos; 349 while (endPos < length && !isWhitespace(idList[endPos])) 350 ++endPos; 354 Node* node = contextDocument->getElementById(String(&idList[startPos], endPos - startPos)); 358 startPos = endPos;
|
/external/dropbear/ |
packet.c | 570 unsigned int endpos = src->pos + len; local 577 ses.keys->trans_zstream->avail_in = endpos - src->pos; 587 buf_setpos(src, endpos - ses.keys->trans_zstream->avail_in);
|
/external/opencore/oscl/oscl/osclio/src/ |
oscl_file_native.cpp | 220 TOsclFileOffset endPos = Tell(); 223 return endPos;
|
/external/webkit/WebCore/accessibility/ |
AccessibilityObject.cpp | 172 VisiblePosition endPos; 185 endPos = visiblePos2; 188 endPos = visiblePos1; 191 return VisiblePositionRange(startPos, endPos); [all...] |
/external/icu4c/common/unicode/ |
rbbi.h | 677 * breaking. Covering at least the range from startPos to endPos, 681 * the range startPos to endPos. 682 * If going forward, endPos is the normal Unicode break result, and 685 * @param endPos The end position of a range of text 689 int32_t checkDictionary(int32_t startPos, int32_t endPos, UBool reverse);
|
/external/quake/quake/src/QW/server/ |
world.c | 650 VectorCopy (mid, trace->endpos); 660 VectorCopy (mid, trace->endpos); 685 VectorCopy (end, trace.endpos); 698 VectorAdd (trace.endpos, offset, trace.endpos);
|
/external/v8/src/ |
messages.js | 573 function ErrorMessage(type, args, startPos, endPos, script, stackTrace) { 575 this.endPos = endPos; 583 function MakeMessage(type, args, startPos, endPos, script, stackTrace) { 584 return new ErrorMessage(type, args, startPos, endPos, script, stackTrace);
|
/external/webkit/WebCore/loader/appcache/ |
ApplicationCacheStorage.cpp | 809 int endPos; 810 while ((endPos = headers.find('\n', startPos)) != -1) { 811 ASSERT(startPos != endPos); 813 parseHeader(headers.characters() + startPos, endPos - startPos, response); 815 startPos = endPos + 1; [all...] |
/external/webkit/WebCore/editing/ |
SelectionController.cpp | [all...] |