/external/perfetto/ui/src/frontend/ |
D | search_handler.ts | 33 const index = state.searchIndex; 75 const searchIndex = globals.frontendLocalState.searchIndex; constant 76 if (searchIndex === -1) return; 77 const currentTs = globals.currentSearchResults.tsStarts[searchIndex]; constant 78 const trackId = globals.currentSearchResults.trackIds[searchIndex]; constant 84 const searchIndex = state.searchIndex; constant 85 const source = globals.currentSearchResults.sources[searchIndex]; constant 86 const currentId = globals.currentSearchResults.sliceIds[searchIndex]; constant 87 const trackId = globals.currentSearchResults.trackIds[searchIndex]; constant
|
D | track_group_panel.ts | 79 const searchIndex = globals.frontendLocalState.searchIndex; constant 80 if (searchIndex !== -1) { 82 .trackIds[globals.frontendLocalState.searchIndex];
|
D | topbar.ts | 134 `${state.searchIndex + 1} / ${ 138 disabled: state.searchIndex <= 0, 146 disabled: state.searchIndex ===
|
D | track_panel.ts | 64 const searchIndex = globals.frontendLocalState.searchIndex; constant 65 if (searchIndex !== -1) { 67 .trackIds[globals.frontendLocalState.searchIndex];
|
D | frontend_local_state.ts | 83 searchIndex = -1; property in FrontendLocalState 170 this.searchIndex = index;
|
D | tickmark_panel.ts | 56 const index = globals.frontendLocalState.searchIndex;
|
D | globals.ts | 423 globals.frontendLocalState.searchIndex = -1;
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/ |
D | CommandCodeAttributes.c | 100 COMMAND_INDEX searchIndex = (COMMAND_INDEX)commandCode; in GetClosestCommandIndex() local 107 if((commandCode & ~CC_VEND) != searchIndex) in GetClosestCommandIndex() 128 commandIndex) >= searchIndex) in GetClosestCommandIndex() 136 < searchIndex) in GetClosestCommandIndex() 150 - searchIndex; in GetClosestCommandIndex() 178 commandIndex) < searchIndex) in GetClosestCommandIndex() 197 if(GET_ATTRIBUTE(s_ccAttr[0], TPMA_CC, commandIndex) >= searchIndex) in GetClosestCommandIndex() 220 commandIndex) - searchIndex; in GetClosestCommandIndex() 243 return NextImplementedIndex(searchIndex in GetClosestCommandIndex() 261 COMMAND_INDEX searchIndex = (COMMAND_INDEX)commandCode; in CommandCodeToCommandIndex() local [all …]
|
/external/python/pyasn1/pyasn1/codec/cer/ |
D | encoder.py | 72 searchIndex = min(numbers.index(self.DOT_CHAR) + 4, len(numbers) - 1) 74 while numbers[searchIndex] != self.DOT_CHAR: 75 if numbers[searchIndex] == self.ZERO_CHAR: 76 del numbers[searchIndex] 79 searchIndex -= 1 81 searchIndex += 1 83 if searchIndex < len(numbers): 84 if numbers[searchIndex] == self.Z_CHAR: 86 del numbers[searchIndex - 1]
|
/external/tinyxml2/docs/search/ |
D | search.js | 72 this.searchIndex = 0; 258 this.searchIndex = id; 270 if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down 272 this.searchIndex++; 273 this.OnSelectItem(this.searchIndex); 275 else if (e.keyCode==38 && this.searchIndex>0) // Up 277 this.searchIndex--; 278 this.OnSelectItem(this.searchIndex); 282 this.OnSelectItem(this.searchIndex); 323 var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); [all …]
|
/external/oboe/docs/reference/search/ |
D | search.js | 95 this.searchIndex = 0; 281 this.searchIndex = id; 293 if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down 295 this.searchIndex++; 296 this.OnSelectItem(this.searchIndex); 298 else if (e.keyCode==38 && this.searchIndex>0) // Up 300 this.searchIndex--; 301 this.OnSelectItem(this.searchIndex); 305 this.OnSelectItem(this.searchIndex); 346 var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); [all …]
|
/external/angle/third_party/vulkan_memory_allocator/docs/html/search/ |
D | search.js | 96 this.searchIndex = 0; 281 this.searchIndex = id; 293 if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down 295 this.searchIndex++; 296 this.OnSelectItem(this.searchIndex); 298 else if (e.keyCode==38 && this.searchIndex>0) // Up 300 this.searchIndex--; 301 this.OnSelectItem(this.searchIndex); 305 this.OnSelectItem(this.searchIndex); 346 var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); [all …]
|
/external/jline/src/src/main/java/jline/ |
D | ConsoleReader.java | 134 private int searchIndex = -1; field in ConsoleReader 542 if (searchIndex == -1) { in readLine() 543 searchIndex = history.searchBackwards(searchTerm.toString()); in readLine() 545 … searchIndex = history.searchBackwards(searchTerm.toString(), searchIndex); in readLine() 552 searchIndex = history.searchBackwards(searchTerm.toString()); in readLine() 558 searchIndex = history.searchBackwards(searchTerm.toString()); in readLine() 563 if (searchIndex != -1) { in readLine() 564 history.setCurrentIndex(searchIndex); in readLine() 577 if (searchIndex == -1) { in readLine() 580 … printSearchStatus(searchTerm.toString(), history.getHistory(searchIndex)); in readLine() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
D | BicubicSplineInterpolatingFunction.java | 160 final int i = searchIndex(x, xval); in value() 164 final int j = searchIndex(y, yval); in value() 237 final int i = searchIndex(x, xval); in partialDerivative() 241 final int j = searchIndex(y, yval); in partialDerivative() 285 private int searchIndex(double c, double[] val) { in searchIndex() method in BicubicSplineInterpolatingFunction
|
D | TricubicSplineInterpolatingFunction.java | 310 final int i = searchIndex(x, xval); in value() 314 final int j = searchIndex(y, yval); in value() 318 final int k = searchIndex(z, zval); in value() 337 private int searchIndex(double c, double[] val) { in searchIndex() method in TricubicSplineInterpolatingFunction
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/ |
D | SampleQueue.java | 847 int searchIndex = relativeStartIndex; in findSampleBefore() local 848 for (int i = 0; i < length && timesUs[searchIndex] <= timeUs; i++) { in findSampleBefore() 849 if (!keyframe || (flags[searchIndex] & C.BUFFER_FLAG_KEY_FRAME) != 0) { in findSampleBefore() 853 searchIndex++; in findSampleBefore() 854 if (searchIndex == capacity) { in findSampleBefore() 855 searchIndex = 0; in findSampleBefore()
|
/external/libphonenumber/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/ |
D | PhoneNumberMatcher.java | 209 private int searchIndex = 0; field in PhoneNumberMatcher 698 lastMatch = find(searchIndex); in hasNext() 702 searchIndex = lastMatch.end(); in hasNext()
|
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
D | PhoneNumberMatcher.java | 208 private int searchIndex = 0; field in PhoneNumberMatcher 697 lastMatch = find(searchIndex); in hasNext() 701 searchIndex = lastMatch.end(); in hasNext()
|
/external/dng_sdk/source/ |
D | dng_info.cpp | 2073 for (uint32 searchIndex = searchedIFDs; in Parse() local 2074 searchIndex < searchLimit && !tooManySubIFDs; in Parse() 2075 searchIndex++) in Parse() 2079 subIndex < fIFD [searchIndex]->fSubIFDsCount; in Parse() 2092 stream.SetReadPosition (fIFD [searchIndex]->fSubIFDsOffset + in Parse()
|
/external/mdnsresponder/mDNSCore/ |
D | uDNS.h | 108 …etNextSearchDomain(mDNS *const m, mDNSInterfaceID InterfaceID, mDNSs8 *searchIndex, mDNSBool ignor…
|
D | uDNS.c | 4872 …etNextSearchDomain(mDNS *const m, mDNSInterfaceID InterfaceID, mDNSs8 *searchIndex, mDNSBool ignor… in uDNS_GetNextSearchDomain() argument 4875 int count = *searchIndex; in uDNS_GetNextSearchDomain() 4892 (*searchIndex)++; in uDNS_GetNextSearchDomain() 4899 (*searchIndex)++; in uDNS_GetNextSearchDomain() 4905 (*searchIndex)++; in uDNS_GetNextSearchDomain()
|
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/ |
D | FragmentedMp4Extractor.java | 1548 int searchIndex = currentSampleIndex; in seek() local 1549 while (searchIndex < fragment.sampleCount in seek() 1550 && fragment.getSamplePresentationTimeUs(searchIndex) < timeUs) { in seek() 1551 if (fragment.sampleIsSyncFrameTable[searchIndex]) { in seek() 1552 firstSampleToOutputIndex = searchIndex; in seek() 1554 searchIndex++; in seek()
|