HomeSort by relevance Sort by last modified time
    Searched full:startpos (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/core/jni/
android_database_SQLiteQuery.cpp 39 jint statementPtr, jint windowPtr, jint startPos, jint offsetParam) {
48 int err = sqlite3_bind_int(statement, offsetParam, startPos);
54 LOG_WINDOW("Bound to startPos %d", startPos);
56 LOG_WINDOW("Not binding to startPos %d", startPos);
76 const bool countAllRows = (startPos == 0); // when startPos is 0, we count all rows
85 if (startPos >= totalRows || windowFull) {
94 LOG_WINDOW("Failed allocating fieldDir at startPos %d row %d, error=%d"
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebEntities.cpp 66 const UChar* startPos = value.characters();
67 const UChar* curPos = startPos;
74 if (curPos > startPos)
75 result.append(String(startPos, curPos - startPos));
79 startPos = ++curPos;
84 if (curPos > startPos)
85 result.append(String(startPos, curPos - startPos));
  /system/media/wilhelm/src/itf/
ISeek.c 52 SLmillisecond startPos, SLmillisecond endPos)
56 if (!(startPos < endPos)) {
62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
97 thiz->mStartPos = startPos;
119 SLmillisecond startPos = thiz->mStartPos;
123 *pStartPos = startPos;
  /external/llvm/test/CodeGen/SystemZ/
2009-06-05-InvalidArgLoad.ll 8 define i32 @xre_search_2(%struct.re_pattern_buffer* nocapture %bufp, i8* %string1, i32 %size1, i8* %string2, i32 %size2, i32 %startpos, i32 %range, %struct.re_registers* %regs, i32 %stop) nounwind {
10 %cmp17.i = icmp slt i32 undef, %startpos ; <i1> [#uses=1]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 42 # define re_search(bufp, string, size, startpos, range, regs) \
43 __re_search (bufp, string, size, startpos, range, regs)
47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 138 public CursorWindow getWindow(int startPos) {
151 mCursor.moveToPosition(startPos);
159 mCursor.moveToPosition(startPos);
162 || startPos < window.getStartPosition()
163 || startPos >= window.getStartPosition() + window.getNumRows()) {
164 mCursor.fillWindow(startPos, window);
BulkCursorNative.java 63 int startPos = data.readInt();
64 CursorWindow window = getWindow(startPos);
183 public CursorWindow getWindow(int startPos) throws RemoteException
189 data.writeInt(startPos);
  /external/icu4c/test/intltest/
ustrtest.cpp 716 int32_t startPos = 0;
718 startPos != -1 && startPos < test1.length();
719 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
724 for ( occurrences = 0, startPos = 10;
725 startPos != -1 && startPos < test1.length();
726 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0
    [all...]
  /external/webkit/Source/WebCore/platform/text/brew/
TextBoundariesBrew.cpp 63 int startPos = (currentPosition < 0) ? 0 : ++currentPosition;
70 *start = startPos;
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 606 unsigned startPos = 0;
608 while ((endPos = find(separator, startPos)) != notFound) {
609 if (allowEmptyEntries || startPos != endPos)
610 result.append(substring(startPos, endPos - startPos));
611 startPos = endPos + separator.length();
613 if (allowEmptyEntries || startPos != length())
614 result.append(substring(startPos));
626 unsigned startPos = 0;
628 while ((endPos = find(separator, startPos)) != notFound)
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathParser.cpp 193 int startPos = m_nextPos + 1;
195 for (m_nextPos = startPos; m_nextPos < m_data.length(); ++m_nextPos) {
197 String value = m_data.substring(startPos, m_nextPos - startPos);
211 int startPos = m_nextPos;
227 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos));
232 int startPos = m_nextPos;
244 name = m_data.substring(startPos, m_nextPos - startPos);
    [all...]
  /external/webkit/Source/WebCore/plugins/win/
PluginDatabaseWin.cpp 173 unsigned startPos = 0;
176 while (startPos < versionString.length()) {
177 for (endPos = startPos; endPos < versionString.length(); ++endPos)
181 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
184 startPos = endPos + 1;
  /external/webkit/Source/WebKit2/UIProcess/Plugins/win/
PluginInfoStoreWin.cpp 42 unsigned startPos = 0;
45 while (startPos < versionString.length()) {
46 for (endPos = startPos; endPos < versionString.length(); ++endPos)
50 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
53 startPos = endPos + 1;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DragClientGtk.cpp 83 void DragClient::willPerformDragSourceAction(DragSourceAction, const IntPoint& startPos, Clipboard*)
85 m_startPos = startPos;
  /external/icu4c/common/
brkeng.h 66 * @param startPos The start of the run within the supplied text.
75 int32_t startPos,
191 * @param startPos The start of the run within the supplied text.
200 int32_t startPos,
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 182 final int startPos = objArray.length / 4;
184 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
186 aSubSet.size() == (endPos - startPos));
187 for (int counter = startPos; counter < endPos; counter++)
  /packages/apps/Browser/src/com/android/browser/
TitleBar.java 140 float startPos = (-getEmbeddedHeight() + visibleHeight);
142 startPos = Math.max(startPos, getTranslationY());
146 startPos, 0);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
MoreSuggestions.java 101 private boolean fitInWidth(int startPos, int endPos, int width) {
102 for (int pos = startPos; pos < endPos; pos++) {
109 private int calcurateMaxRowWidth(int startPos, int endPos) {
111 int pos = startPos;
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.h 100 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
101 bool isSelected(int startPos, int endPos) const;
160 void paintCompositionBackground(GraphicsContext*, const FloatPoint& boxOrigin, RenderStyle*, const Font&, int startPos, int endPos);
RenderText.cpp 323 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos)
334 int ellipsisStartPosition = max<int>(startPos - box->start(), 0);
    [all...]
  /frameworks/base/media/libmedia/
MediaScanner.cpp 115 int startPos = 0;
121 && (strncmp(path, &mSkipList[startPos], len) == 0)) {
124 startPos += mSkipIndex[idx] + 1; // extra char for the delimiter
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.cpp 289 CFIndex startPos = 0;
295 CFRange range = CFRangeMake(startPos, charactersLeft);
305 unsigned badChar = CFStringGetCharacterAtIndex(cfs.get(), startPos + charactersConverted);
308 UniChar low = CFStringGetCharacterAtIndex(cfs.get(), startPos + charactersConverted);
323 startPos += charactersConverted;
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 319 private int startPos;
387 startPos = output.getPos();
449 output.writeShort(startPos + 6, maxStack);
450 output.writeShort(startPos + 8, maxLocals);
451 output.writeInt(startPos + 10, output.getPos() - startPos - 14); // code_length
502 output.writeInt(startPos + 2, output.getPos() - startPos - 6);
522 protected int startPos;
527 startPos = out.getPos()
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 265 int startPos = 0;
274 int endPos = (asciiCharsLen - startPos > addCount) ?
275 (startPos + addCount) : asciiCharsLen;
276 sb.append(sAsciiChars, startPos, endPos);
277 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
298 int startPos = 0;
308 int endPos = (unicodeCharsLen - startPos > addCount) ?
309 (startPos + addCount) : unicodeCharsLen;
310 sb.append(sUnicodeChars, startPos, endPos);
311 startPos = (endPos == unicodeCharsLen) ? 0 : endPos
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 106 int startPos = 0;
112 startPos = m.start();
122 snippetString = mFullText.substring(startPos, startPos + searchStringLength);
137 int newstart = Math.max(0, startPos - offset);
138 int newend = Math.min(bodyLength, startPos + searchStringLength + offset);

Completed in 2975 milliseconds

1 2 3 4 5 6 7