/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
content_editable_extractor.js | 43 * @type {Object.<number, {startIndex: number, endIndex: number}>} 64 * @type {Object.<number, {startIndex: number, endIndex: number}>} 66 var lines = {0: {startIndex: 0, endIndex: 0}}; 151 lines[lineIndex] = {startIndex: textSize, endIndex: textSize}; 174 for (var j = lines[i].startIndex; j <= lines[i].endIndex; j++) { 225 return this.lines_[index].startIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRCommonToken.m | 46 @synthesize startIndex; 139 startIndex = 0; 157 startIndex = aStart; 162 text = [input substringWithRange:NSMakeRange(startIndex, (stopIndex-startIndex)+1)]; 181 startIndex = oldToken.startIndex; 229 copy.startIndex = startIndex; 273 return [input substringWithRange:NSMakeRange(startIndex, (stopIndex-startIndex)+1)] [all...] |
ANTLRCommonTree.h | 33 NSInteger startIndex; 80 @property (assign, getter=getTokenStartIndex, setter=setTokenStartIndex:) NSInteger startIndex; 87 @property (assign) NSInteger startIndex;
|
ANTLRRuleMemo.h | 36 NSNumber *startIndex; 40 @property (retain, getter=getStartIndex, setter=setStartIndex:) NSNumber *startIndex;
|
/libcore/luni/src/main/java/java/util/ |
HugeEnumSet.java | 325 int startIndex = startOrdinal / BIT_IN_LONG; 332 if (startIndex == endIndex) { 334 size -= Long.bitCount(bits[startIndex]); 335 bits[startIndex] |= range; 336 size += Long.bitCount(bits[startIndex]); 340 size -= Long.bitCount(bits[startIndex]); 341 bits[startIndex] |= range; 342 size += Long.bitCount(bits[startIndex]); 350 for (int i = (startIndex + 1); i <= (endIndex - 1); i++) {
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
QuadraticReduceOrder.cpp | 68 int startIndex = 0; 70 while (quad[startIndex].approximatelyEqual(quad[endIndex])) { 77 if (!isLinear(quad, startIndex, endIndex)) { 127 bool isLinear(const Quadratic& quad, int startIndex, int endIndex) { 129 lineParameters.quadEndPoints(quad, startIndex, endIndex);
|
/external/chromium_org/third_party/skia/platform_tools/nacl/src/ |
nacl_debugger.cpp | 59 size_t startIndex = strlen("LoadSKP"); 60 size_t dataSize = msg.size()/sizeof(char) - startIndex; 62 decodedData.decode(msg.c_str() + startIndex, dataSize); 99 size_t startIndex = strlen("CommandSelected:"); 100 int index = atoi(msg.c_str() + startIndex);
|
/external/skia/experimental/Intersection/ |
QuadraticReduceOrder.cpp | 68 int startIndex = 0; 70 while (quad[startIndex].approximatelyEqual(quad[endIndex])) { 77 if (!isLinear(quad, startIndex, endIndex)) { 127 bool isLinear(const Quadratic& quad, int startIndex, int endIndex) { 129 lineParameters.quadEndPoints(quad, startIndex, endIndex);
|
/external/skia/platform_tools/nacl/src/ |
nacl_debugger.cpp | 59 size_t startIndex = strlen("LoadSKP"); 60 size_t dataSize = msg.size()/sizeof(char) - startIndex; 62 decodedData.decode(msg.c_str() + startIndex, dataSize); 99 size_t startIndex = strlen("CommandSelected:"); 100 int index = atoi(msg.c_str() + startIndex);
|
/frameworks/av/media/libmedia/ |
IMediaCodecList.cpp | 68 const char *type, bool encoder, size_t startIndex = 0) const 70 if (startIndex > INT32_MAX) { 78 data.writeInt32(startIndex); 133 size_t startIndex = static_cast<size_t>(data.readInt32()); 134 ssize_t index = findCodecByType(type, isEncoder, startIndex);
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
StaggeredGridDefault.java | 138 int startIndex = itemIndex; 140 while (startRow > 0 && startIndex > firstIndex) { 141 startIndex--; 142 startRow = getLocation(startIndex).row; 145 for (int i = firstIndex; i < startIndex; i++) {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
IntRangeManager.java | 206 for (int startIndex = 0; startIndex < len; startIndex++) { 207 IntRange range = mRanges.get(startIndex); 220 if ((startIndex + 1) < len) { 221 nextRange = mRanges.get(startIndex + 1); 258 mRanges.add(startIndex, new IntRange(startId, endId, client)); 275 for (int endIndex = startIndex+1; endIndex < len; endIndex++) { 287 // of the next range to join is always startIndex+1. 290 int joinIndex = startIndex + 1 [all...] |
/external/fonttools/Lib/fontTools/ttLib/tables/ |
C_P_A_L_.py | 20 startIndex = struct.unpack(">H", data[pos:pos+2])[0] 21 assert (startIndex + self.numPaletteEntries <= numColorRecords) 24 ppos = goffsetFirstColorRecord + startIndex * 4
|
/external/icu/icu4c/source/tools/toolutil/ |
collationinfo.cpp | 111 CollationInfo::getDataLength(const int32_t indexes[], int32_t startIndex) { 112 return indexes[startIndex + 1] - indexes[startIndex];
|
/external/llvm/unittests/Support/ |
raw_ostream_test.cpp | 35 unsigned StartIndex = 256 - BytesLeftInBuffer; 36 for (unsigned i = 0; i != StartIndex; ++i) 39 return OS.str().substr(StartIndex);
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
AttendeesView.java | 290 final int startIndex = 0; 293 addView(mDividerForYes, startIndex); 297 index = startIndex + mYes; 301 final int startIndex = (mYes == 0 ? 0 : 1 + mYes); 304 addView(mDividerForNo, startIndex); 308 index = startIndex + mNo; 312 final int startIndex = (mYes == 0 ? 0 : 1 + mYes) + (mNo == 0 ? 0 : 1 + mNo); 315 addView(mDividerForMaybe, startIndex); 319 index = startIndex + mMaybe; 323 final int startIndex = (mYes == 0 ? 0 : 1 + mYes) + (mNo == 0 ? 0 : 1 + mNo [all...] |
/external/proguard/src/proguard/ |
WordReader.java | 187 int startIndex = currentIndex; 190 char startChar = currentLine.charAt(startIndex); 196 startIndex++; 206 currentWord = currentLine.substring(startIndex-1, currentIndex); 236 while (endIndex > startIndex && 268 currentWord = currentLine.substring(startIndex, endIndex);
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
HtmlUtils.java | 160 final int start = lastSeen.startIndex; 171 final int start = wrapper.startIndex; 217 final int startIndex; 219 TagWrapper(HtmlDocument.Tag tag, int startIndex) { 221 this.startIndex = startIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRRuleMemo.h | 36 NSNumber *startIndex; 40 @property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *startIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRRuleMemo.h | 36 NSNumber *startIndex; 40 @property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *startIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRRuleMemo.h | 36 NSNumber *startIndex; 40 @property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *startIndex;
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLSourceTracker.cpp | 69 ASSERT(!token.startIndex()); 70 length = static_cast<size_t>(token.endIndex() - token.startIndex());
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
PlatformLocale.cpp | 310 bool Locale::detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex) 312 startIndex = 0; 317 startIndex = m_positivePrefix.length(); 325 startIndex = m_negativePrefix.length(); 330 startIndex = m_positivePrefix.length(); 359 unsigned startIndex; 361 if (!detectSignAndGetDigitRange(input, isNegative, startIndex, endIndex)) 368 for (unsigned i = startIndex; i < endIndex;) {
|
/frameworks/base/services/usage/java/com/android/server/usage/ |
UsageStatsDatabase.java | 79 final int startIndex = files.closestIndexOnOrAfter(currentTimeMillis); 80 if (startIndex < 0) { 85 for (int i = startIndex; i < fileCount; i++) { 91 for (int i = startIndex; i < fileCount; i++) { 278 int startIndex = intervalStats.closestIndexOnOrBefore(beginTime); 279 if (startIndex < 0) { 282 startIndex = 0; 309 for (int i = startIndex; i <= endIndex; i++) {
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/ |
HarfBuzzShaper.cpp | 218 static inline unsigned countGraphemesInCluster(const UChar* normalizedBuffer, unsigned normalizedBufferLength, uint16_t startIndex, uint16_t endIndex) 220 if (startIndex > endIndex) { 221 uint16_t tempIndex = startIndex; 222 startIndex = endIndex; 225 uint16_t length = endIndex - startIndex; 226 ASSERT(static_cast<unsigned>(startIndex + length) <= normalizedBufferLength); 227 TextBreakIterator* cursorPosIterator = cursorMovementIterator(&normalizedBuffer[startIndex], length); 238 inline HarfBuzzShaper::HarfBuzzRun::HarfBuzzRun(const SimpleFontData* fontData, unsigned startIndex, unsigned numCharacters, TextDirection direction, hb_script_t script) 240 , m_startIndex(startIndex) 821 const UChar* src = m_normalizedBuffer.get() + currentRun->startIndex(); [all...] |