/external/mdnsresponder/mDNSWindows/ |
loclibrary.c | 63 int startIndex = i * MODULO_ISOCODES; 65 langCode = (ISOCODES[startIndex] << 8); 66 langCode = langCode + ( (unsigned short) (ISOCODES[startIndex + 1]) ); 69 char *langStr = (char *)&(ISOCODES[startIndex+2]);
|
/external/skia/src/gpu/ |
GrOpFlushState.cpp | 166 uint16_t* GrOpFlushState::makeIndexSpace(int indexCount, const GrBuffer** buffer, int* startIndex) { 167 return reinterpret_cast<uint16_t*>(fIndexPool.makeSpace(indexCount, buffer, startIndex)); 178 const GrBuffer** buffer, int* startIndex, 181 minIndexCount, fallbackIndexCount, buffer, startIndex, actualIndexCount));
|
GrDrawingManager.cpp | 206 int startIndex, stopIndex; 217 while (alloc.assign(&startIndex, &stopIndex, &error)) { 219 for (int i = startIndex; i < stopIndex; ++i) { 224 if (this->executeOpLists(startIndex, stopIndex, &flushState)) { 248 bool GrDrawingManager::executeOpLists(int startIndex, int stopIndex, GrOpFlushState* flushState) { 249 SkASSERT(startIndex <= stopIndex && stopIndex <= fOpLists.count()); 254 for (int i = startIndex; i < stopIndex; ++i) { 293 for (int i = startIndex; i < stopIndex; ++i) { 311 for (int i = startIndex; i < stopIndex; ++i) {
|
/external/skqp/src/gpu/ |
GrOpFlushState.cpp | 162 uint16_t* GrOpFlushState::makeIndexSpace(int indexCount, const GrBuffer** buffer, int* startIndex) { 163 return reinterpret_cast<uint16_t*>(fIndexPool.makeSpace(indexCount, buffer, startIndex)); 174 const GrBuffer** buffer, int* startIndex, 177 minIndexCount, fallbackIndexCount, buffer, startIndex, actualIndexCount));
|
GrDrawingManager.cpp | 174 int startIndex, stopIndex; 185 startIndex = 0; 189 while (alloc.assign(&startIndex, &stopIndex, &error)) 194 for (int i = startIndex; i < stopIndex; ++i) { 199 if (this->executeOpLists(startIndex, stopIndex, &flushState)) { 223 bool GrDrawingManager::executeOpLists(int startIndex, int stopIndex, GrOpFlushState* flushState) { 224 SkASSERT(startIndex <= stopIndex && stopIndex <= fOpLists.count()); 228 for (int i = startIndex; i < stopIndex; ++i) { 263 for (int i = startIndex; i < stopIndex; ++i) { 281 for (int i = startIndex; i < stopIndex; ++i) [all...] |
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ |
parseConst.cpp | 170 const int startIndex = index; 172 for (int i = startIndex; i < endIndex; i++) { 175 if (i == startIndex || (i - startIndex) % (matrixRows + 1) == 0 )
|
/external/clang/test/Index/ |
load-exprs.c | 27 enum { StartIndex = 1 }; 30 struct Y y0 = { .array[StartIndex].b = bval, .array[StartIndex].a = aval }; 31 __builtin_offsetof(struct Y, array[StartIndex].b); 70 // CHECK: load-exprs.c:30:26: DeclRefExpr=StartIndex:27:8 Extent=[30:26 - 30:36] 74 // CHECK: load-exprs.c:30:55: DeclRefExpr=StartIndex:27:8 Extent=[30:55 - 30:65] 79 // CHECK: load-exprs.c:31:38: DeclRefExpr=StartIndex:27:8 Extent=[31:38 - 31:48]
|
/external/markdown/markdown/ |
treeprocessors.py | 91 startIndex = 0 93 data, matched, startIndex = self.__applyPattern( 95 data, patternIndex, startIndex) 198 def __applyPattern(self, pattern, data, patternIndex, startIndex=0): 208 * startIndex: string index, from which we starting search 213 match = pattern.getCompiledRegExp().match(data[startIndex:]) 214 leftData = data[:startIndex]
|
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
UriUtils.java | 241 * @param startIndex the focused action in actions list when started. 245 int startIndex) { 246 return getSubactionDialogUri(uri, dialogTitle, dialogDescription, null, startIndex); 273 * @param startIndex the focused action in actions list when started. 279 String startName, int startIndex) { 294 if (startIndex != -1) { 296 Integer.toString(startIndex));
|
/external/proguard/src/proguard/retrace/ |
ReTrace.java | 214 int startIndex = matcher.start(expressionTypeIndex + 1); 215 if (startIndex >= 0) 255 int startIndex = matcher.start(expressionTypeIndex + 1); 256 if (startIndex >= 0) 262 outLine.append(line.substring(lineIndex, startIndex)); 522 int startIndex = 0; 525 int endIndex = obfuscatedArguments.indexOf(',', startIndex); 531 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex, endIndex).trim())).append(','); 533 startIndex = endIndex + 1; 536 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex).trim())) [all...] |
/frameworks/av/media/libstagefright/ |
MediaCodecList.cpp | 237 const char *type, bool encoder, size_t startIndex) const { 244 for (; startIndex < numCodecInfos; ++startIndex) { 245 const MediaCodecInfo &info = *mCodecInfos[startIndex]; 267 return startIndex;
|
/frameworks/base/core/java/com/android/internal/os/ |
KernelUidCpuTimeReader.java | 193 final int startIndex = mLastSystemTimeUs.indexOfKey(startUid); 195 mLastSystemTimeUs.removeAtRange(startIndex, endIndex - startIndex + 1); 196 mLastUserTimeUs.removeAtRange(startIndex, endIndex - startIndex + 1);
|
/packages/apps/Settings/src/com/android/settings/widget/ |
DonutView.java | 242 int startIndex = percentString.indexOf(percentageSignString); 243 int endIndex = startIndex + percentageSignString.length(); 246 if (startIndex < 0) { 247 startIndex = 0; 253 startIndex,
|
/external/lzma/CPP/Common/ |
MyString.h | 222 void Find(wchar_t c, unsigned startIndex) const;
306 AString Mid(unsigned startIndex, unsigned count) const { return AString(count, _chars + startIndex); }
333 int Find(char c, unsigned startIndex) const
335 int pos = FindCharPosInString(_chars + startIndex, c);
336 return pos < 0 ? -1 : (int)startIndex + pos;
344 int Find(const char *s, unsigned startIndex) const throw();
455 void Find(char c, unsigned startIndex) const;
456 void Find(unsigned char c, unsigned startIndex) const;
540 UString Mid(unsigned startIndex, unsigned count) const { return UString(count, _chars + startIndex); } [all...] |
/external/python/cpython2/Lib/idlelib/ |
AutoCompleteWindow.py | 43 self.startindex = None 62 self.widget.delete("%s+%dc" % (self.startindex, i), 63 "%s+%dc" % (self.startindex, len(self.start))) 65 self.widget.insert("%s+%dc" % (self.startindex, i), 156 self.startindex = self.widget.index(index) 157 self.start = self.widget.get(self.startindex, "insert") 224 text.see(self.startindex) 225 x, y, cx, cy = text.bbox(self.startindex) 368 self.widget.index("%s+%dc" % (self.startindex, len(self.start))):
|
/external/python/cpython3/Lib/idlelib/ |
autocomplete_w.py | 45 self.startindex = None 64 self.widget.delete("%s+%dc" % (self.startindex, i), 65 "%s+%dc" % (self.startindex, len(self.start))) 67 self.widget.insert("%s+%dc" % (self.startindex, i), 158 self.startindex = self.widget.index(index) 159 self.start = self.widget.get(self.startindex, "insert") 227 text.see(self.startindex) 228 x, y, cx, cy = text.bbox(self.startindex) 378 self.widget.index("%s+%dc" % (self.startindex, len(self.start))):
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Analysis/ |
CloneDetection.h | 45 /// [StartIndex, EndIndex). 46 unsigned StartIndex; 59 /// \param StartIndex The inclusive start index in the children array of 62 StmtSequence(const CompoundStmt *Stmt, const Decl *D, unsigned StartIndex, 101 return EndIndex - StartIndex; 137 return std::tie(S, StartIndex, EndIndex) == 138 std::tie(Other.S, Other.StartIndex, Other.EndIndex); 142 return std::tie(S, StartIndex, EndIndex) != 143 std::tie(Other.S, Other.StartIndex, Other.EndIndex);
|