Searched defs:startPos (Results 1 - 25 of 49) sorted by relevance

12

/external/webkit/Source/WebKit/chromium/src/
H A DWebEntities.cpp66 const UChar* startPos = value.characters(); local
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));
/external/webkit/Source/WebCore/platform/text/brew/
H A DTextBoundariesBrew.cpp63 int startPos = (currentPosition < 0) ? 0 : ++currentPosition; local
70 *start = startPos;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java132 // of the node at index "startPos". IF IT IS, DO NOT ACCEPT IT AND
137 int specialFind(int startPos, int position) argument
141 int ancestor = startPos;
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDragClientGtk.cpp83 void DragClient::willPerformDragSourceAction(DragSourceAction, const IntPoint& startPos, Clipboard*) argument
85 m_startPos = startPos;
/external/icu4c/common/
H A Dbrkeng.cpp76 int32_t startPos,
84 while((int32_t)utext_getNativeIndex(text) > startPos && fHandled[breakType]->contains(c)) {
75 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack & ) const argument
H A Ddictbe.cpp45 int32_t startPos,
60 while((current = (int32_t)utext_getNativeIndex(text)) > startPos && isDict) {
64 rangeStart = (current < startPos) ? startPos : current+(isDict ? 0 : 1);
44 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
H A Drbbi.cpp564 int32_t startPos = current(); local
567 result = checkDictionary(startPos, result, FALSE);
578 int32_t startPos; local
600 if (fText == NULL || (startPos = current()) == 0) {
609 result = checkDictionary(result, startPos, TRUE);
1573 int32_t RuleBasedBreakIterator::checkDictionary(int32_t startPos, argument
1580 if (dictionaryCount <= 1 || (endPos - startPos) <= 1) {
1581 return (reverse ? startPos : endPos);
1605 return (reverse ? startPos : endPos);
1611 utext_setNativeIndex(fText, reverse ? endPos : startPos);
[all...]
/external/icu4c/samples/ugrep/
H A Dugrep.cpp374 void nextLine(int startPos) { argument
375 if (startPos == 0) {
380 lineStart = lineEnd = startPos;
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.cpp289 CFIndex startPos = 0; local
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/aac/libSBRenc/src/
H A Dnf_est.cpp308 INT nNoiseEnvelopes, startPos[2], stopPos[2], env, band; local
317 startPos[0] = startIndex;
321 startPos[0] = startIndex;
325 startPos[0] = startIndex;
327 startPos[1] = startIndex + 1;
340 startPos[env],
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_pcmdata.h82 EAS_I32 startPos; /* start of PCM stream */ member in struct:s_pcm_state_tag
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_pcmdata.h82 EAS_I32 startPos; /* start of PCM stream */ member in struct:s_pcm_state_tag
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_pcmdata.h82 EAS_I32 startPos; /* start of PCM stream */ member in struct:s_pcm_state_tag
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
/external/webkit/Source/WebCore/xml/
H A DXPathParser.cpp193 int startPos = m_nextPos + 1; local
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; local
227 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos));
232 int startPos = m_nextPos; local
244 name = m_data.substring(startPos, m_nextPos - startPos);
[all...]
H A DXPathFunctions.cpp339 size_t startPos = 0; local
342 while (startPos < length && isWhitespace(idList[startPos]))
343 ++startPos;
345 if (startPos == length)
348 size_t endPos = startPos;
354 Node* node = contextDocument->getElementById(String(&idList[startPos], endPos - startPos));
358 startPos = endPos;
/external/webkit/Source/WebKit2/UIProcess/Plugins/win/
H A DPluginInfoStoreWin.cpp42 unsigned startPos = 0; local
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/aac/libSBRdec/src/
H A Denv_extr.cpp1319 int startPos; local
1333 startPos = pFrameInfo->borders[0];
1348 if( (startPos < 0) || (startPos >= stopPos) )
1350 if( startPos > maxPos-numberOfTimeSlots ) /* First env. must start in or directly after the overlap buffer */
1372 if(startPos != startPosNoise || stopPos != stopPosNoise)
H A Dsbrdecoder.cpp896 INT startPos; local
905 startPos = FDKgetValidBits(hBs);
1058 valBits = bsPayLen - ((INT)startPos - (INT)FDKgetValidBits(hBs));
1068 INT payloadbits = (INT)startPos - (INT)FDKgetValidBits(hBs) - startPos;
1134 *count -= startPos - FDKgetValidBits(hBs);
/external/javassist/src/main/javassist/bytecode/
H A DClassFileWriter.java319 private int startPos; field in class:ClassFileWriter.MethodWriter
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; field in class:ClassFileWriter.ConstPoolWriter
527 startPos
[all...]
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.cpp606 unsigned startPos = 0; local
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; local
628 while ((endPos = find(separator, startPos)) !
[all...]
/external/webkit/Source/WebCore/plugins/win/
H A DPluginDatabaseWin.cpp173 unsigned startPos = 0; local
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/aac/libMpegTPDec/src/
H A Dtpdec_lib.cpp496 INT numFramesTraversed = 0, fTraverseMoreFrames, fConfigFound = 0, startPos, startPosFirstFrame = -1; local
582 startPos = FDKgetValidBits(hBs);
617 syncLayerFrameBits = (hTp->parser.adts.bs.frame_length<<3) - (startPos - FDKgetValidBits(hBs)) - syncLength;
652 syncLayerFrameBits -= startPos - FDKgetValidBits(hBs) - (13);
675 headerBits += startPos - (INT)FDKgetValidBits(hBs);
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h529 PathDiagnosticControlFlowPiece(const PathDiagnosticLocation &startPos, argument
533 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
536 PathDiagnosticControlFlowPiece(const PathDiagnosticLocation &startPos, argument
539 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
/external/icu4c/i18n/
H A Dnfrule.cpp974 * @param startPos The position in "text" where we should start looking
999 int32_t startPos,
1023 int32_t dPos = findText(text, delimiter, startPos, &dLen);
998 matchToDelimiter(const UnicodeString& text, int32_t startPos, double _baseValue, const UnicodeString& delimiter, ParsePosition& pp, const NFSubstitution* sub, double upperBound) const argument
/external/icu4c/test/intltest/
H A Dustrtest.cpp721 int32_t startPos = 0; local
723 startPos != -1 && startPos < test1.length();
724 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
729 for ( occurrences = 0, startPos = 10;
730 startPos != -1 && startPos < test1.length();
731 (startPos
[all...]

Completed in 477 milliseconds

12