/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/offline/ |
D | StreamKey.java | 34 public final int groupIndex; field in StreamKey 42 public StreamKey(int groupIndex, int trackIndex) { in StreamKey() argument 43 this(0, groupIndex, trackIndex); in StreamKey() 51 public StreamKey(int periodIndex, int groupIndex, int trackIndex) { in StreamKey() argument 53 this.groupIndex = groupIndex; in StreamKey() 59 groupIndex = in.readInt(); in StreamKey() 65 return periodIndex + "." + groupIndex + "." + trackIndex; in toString() 79 && groupIndex == that.groupIndex in equals() 86 result = 31 * result + groupIndex; in hashCode() 97 result = groupIndex - o.groupIndex; in compareTo() [all …]
|
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/ |
D | TrackSelectionView.java | 214 this.overrides.put(override.groupIndex, override); in init() 258 for (int groupIndex = 0; groupIndex < trackGroups.length; groupIndex++) { in updateViews() 259 TrackGroup group = trackGroups.get(groupIndex); in updateViews() 260 boolean enableMultipleChoiceForAdaptiveSelections = shouldEnableAdaptiveSelection(groupIndex); in updateViews() 261 trackViews[groupIndex] = new CheckedTextView[group.length]; in updateViews() 274 if (mappedTrackInfo.getTrackSupport(rendererIndex, groupIndex, trackIndex) in updateViews() 277 trackView.setTag(Pair.create(groupIndex, trackIndex)); in updateViews() 283 trackViews[groupIndex][trackIndex] = trackView; in updateViews() 330 int groupIndex = tag.first; in onTrackViewClicked() local 332 SelectionOverride override = overrides.get(groupIndex); in onTrackViewClicked() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | ext_inst.cpp | 163 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableNameLookup() local 164 const auto& group = table->groups[groupIndex]; in spvExtInstTableNameLookup() 185 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableValueLookup() local 186 const auto& group = table->groups[groupIndex]; in spvExtInstTableValueLookup()
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | ext_inst.cpp | 163 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableNameLookup() local 164 const auto& group = table->groups[groupIndex]; in spvExtInstTableNameLookup() 185 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableValueLookup() local 186 const auto& group = table->groups[groupIndex]; in spvExtInstTableValueLookup()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/ |
D | ext_inst.cpp | 171 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableNameLookup() local 172 const auto& group = table->groups[groupIndex]; in spvExtInstTableNameLookup() 193 for (uint32_t groupIndex = 0; groupIndex < table->count; groupIndex++) { in spvExtInstTableValueLookup() local 194 const auto& group = table->groups[groupIndex]; in spvExtInstTableValueLookup()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | V_D_M_X_.py | 60 for groupIndex in range(self.numRecs): 80 (group.startsz, minSize, groupIndex) 83 (group.endsz, maxSize, groupIndex) 92 self.ratRanges[offsetIndex]['groupIndex'] = groupIndex 121 groupIndex = ratio['groupIndex'] 122 offsets.append(groupOffsets[groupIndex]) 153 groupIndex = ratio['groupIndex'] 160 groupIndex=groupIndex 167 for groupIndex in range(self.numRecs): 168 group = self.groups[groupIndex] [all …]
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/trackselection/ |
D | MappingTrackSelector.java | 230 public int getTrackFormatSupport(int rendererIndex, int groupIndex, int trackIndex) { in getTrackFormatSupport() argument 231 return getTrackSupport(rendererIndex, groupIndex, trackIndex); in getTrackFormatSupport() 243 public int getTrackSupport(int rendererIndex, int groupIndex, int trackIndex) { in getTrackSupport() argument 245 rendererFormatSupports[rendererIndex][groupIndex][trackIndex]); in getTrackSupport() 269 int rendererIndex, int groupIndex, boolean includeCapabilitiesExceededTracks) { in getAdaptiveSupport() argument 270 int trackCount = rendererTrackGroups[rendererIndex].get(groupIndex).length; in getAdaptiveSupport() 275 @FormatSupport int fixedSupport = getTrackSupport(rendererIndex, groupIndex, i); in getAdaptiveSupport() 283 return getAdaptiveSupport(rendererIndex, groupIndex, trackIndices); in getAdaptiveSupport() 295 public int getAdaptiveSupport(int rendererIndex, int groupIndex, int[] trackIndices) { in getAdaptiveSupport() argument 303 rendererTrackGroups[rendererIndex].get(groupIndex).getFormat(trackIndex).sampleMimeType; in getAdaptiveSupport() [all …]
|
D | DefaultTrackSelector.java | 1301 public final int groupIndex; field in DefaultTrackSelector.SelectionOverride 1311 public SelectionOverride(int groupIndex, int... tracks) { in SelectionOverride() argument 1312 this(groupIndex, tracks, C.SELECTION_REASON_MANUAL, /* data= */ 0); in SelectionOverride() 1321 public SelectionOverride(int groupIndex, int[] tracks, int reason, int data) { in SelectionOverride() argument 1322 this.groupIndex = groupIndex; in SelectionOverride() 1331 groupIndex = in.readInt(); in SelectionOverride() 1351 int hash = 31 * groupIndex + Arrays.hashCode(tracks); in hashCode() 1365 return groupIndex == other.groupIndex in equals() 1380 dest.writeInt(groupIndex); in writeToParcel() 1537 rendererTrackGroups.get(override.groupIndex), in selectTracks() [all …]
|
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/ |
D | MultiGroupConversionRule.java | 59 public void addReplacement(int groupIndex, String replacement) { in addReplacement() argument 60 if (groupIndex == 0) { in addReplacement() 63 replacementTable[groupIndex] = replacement; in addReplacement() 71 public String getReplacement(int groupIndex) { in getReplacement() argument 72 return replacementTable[groupIndex]; in getReplacement()
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/command/PCR/ |
D | PCR_SetAuthPolicy.c | 53 UINT32 groupIndex; in TPM2_PCR_SetAuthPolicy() local 67 if(!PCRBelongsPolicyGroup(in->pcrNum, &groupIndex)) in TPM2_PCR_SetAuthPolicy() 73 gp.pcrPolicies.hashAlg[groupIndex] = in->hashAlg; in TPM2_PCR_SetAuthPolicy() 74 gp.pcrPolicies.policy[groupIndex] = in->authPolicy; in TPM2_PCR_SetAuthPolicy()
|
D | PCR_SetAuthValue.c | 51 UINT32 groupIndex; in TPM2_PCR_SetAuthValue() local 55 if(!PCRBelongsAuthGroup(in->pcrHandle, &groupIndex)) in TPM2_PCR_SetAuthValue() 68 gc.pcrAuthValues.auth[groupIndex] = in->auth; in TPM2_PCR_SetAuthValue()
|
/external/exoplayer/tree/extensions/ima/src/androidTest/java/com/google/android/exoplayer2/ext/ima/ |
D | ImaPlaybackTest.java | 96 private static AdId ad(int groupIndex) { in ad() argument 97 return new AdId(groupIndex, /* indexInGroup= */ 0); in ad() 102 public final int groupIndex; field in ImaPlaybackTest.AdId 105 public AdId(int groupIndex, int indexInGroup) { in AdId() argument 106 this.groupIndex = groupIndex; in AdId() 112 return "(" + groupIndex + ", " + indexInGroup + ')'; in toString() 126 if (groupIndex != that.groupIndex) { in equals() 134 int result = groupIndex; in hashCode()
|
/external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/ |
D | linq_groupby.hpp | 84 std::map<key_type, group_type*, Compare> groupIndex; member 95 , groupIndex(comp) in impl_t() 111 auto groupPos = groupIndex.find(key); in insert() 112 if(groupPos == groupIndex.end()) { in insert() 126 groupIndex.insert( std::make_pair(key, &newGroup) ); in insert()
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/subsystem/ |
D | PCR.c | 88 UINT32 *groupIndex // OUT: group index if PCR belongs a in PCRBelongsAuthGroup() argument 103 *groupIndex = 0; in PCRBelongsAuthGroup() 123 UINT32 *groupIndex // OUT: group index if PCR belongs a group that in PCRBelongsPolicyGroup() argument 136 *groupIndex = 0; in PCRBelongsPolicyGroup() 177 UINT32 groupIndex; in PCRPolicyIsAvailable() local 179 return PCRBelongsPolicyGroup(handle, &groupIndex); in PCRPolicyIsAvailable() 190 UINT32 groupIndex; in PCRGetAuthValue() local 192 if(PCRBelongsAuthGroup(handle, &groupIndex)) in PCRGetAuthValue() 194 return &gc.pcrAuthValues.auth[groupIndex]; in PCRGetAuthValue() 212 UINT32 groupIndex; in PCRGetAuthPolicy() local [all …]
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/util/ |
D | EventLogger.java | 223 for (int groupIndex = 0; groupIndex < rendererTrackGroups.length; groupIndex++) { in onTracksChanged() 224 TrackGroup trackGroup = rendererTrackGroups.get(groupIndex); in onTracksChanged() 229 rendererIndex, groupIndex, /* includeCapabilitiesExceededTracks= */ false)); in onTracksChanged() 230 logd(" Group:" + groupIndex + ", adaptive_supported=" + adaptiveSupport + " ["); in onTracksChanged() 235 mappedTrackInfo.getTrackSupport(rendererIndex, groupIndex, trackIndex)); in onTracksChanged() 267 for (int groupIndex = 0; groupIndex < unassociatedTrackGroups.length; groupIndex++) { in onTracksChanged() 268 logd(" Group:" + groupIndex + " ["); in onTracksChanged() 269 TrackGroup trackGroup = unassociatedTrackGroups.get(groupIndex); in onTracksChanged()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/offline/ |
D | ActionFile.java | 144 int groupIndex; 151 groupIndex = input.readInt(); 155 groupIndex = input.readInt(); 158 return new StreamKey(periodIndex, groupIndex, trackIndex);
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/ |
D | prettify.js | 500 for (var i = 0, groupIndex = 0; i < n; ++i) { 504 ++groupIndex; 507 if (decimalValue && decimalValue <= groupIndex) { 520 for (var i = 0, groupIndex = 0; i < n; ++i) { 523 ++groupIndex; 524 if (capturedGroups[groupIndex] === undefined) { 529 if (decimalValue && decimalValue <= groupIndex) { 530 parts[i] = '\\' + capturedGroups[groupIndex]; 537 for (var i = 0, groupIndex = 0; i < n; ++i) {
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | InternalSubchannel.java | 728 private int groupIndex; 737 return groupIndex < addressGroups.size(); 741 return groupIndex == 0 && addressIndex == 0; 745 EquivalentAddressGroup group = addressGroups.get(groupIndex); 748 groupIndex++; 754 groupIndex = 0; 759 return addressGroups.get(groupIndex).getAddresses().get(addressIndex); 763 return addressGroups.get(groupIndex).getAttributes(); 784 this.groupIndex = i;
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/ |
D | PCR_fp.h | 54 UINT32 *groupIndex // OUT: group index if PCR belongs a 73 UINT32 *groupIndex // OUT: group index if PCR belongs a group that
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | TestGroupDataSource.java | 96 public List<List<String>> getHeaderGroupValues(int groupIndex) { in getHeaderGroupValues() argument 97 JSONArray headerList = headerGroupValues.get(groupIndex).isArray(); in getHeaderGroupValues()
|
/external/exoplayer/tree/library/hls/src/main/java/com/google/android/exoplayer2/source/hls/playlist/ |
D | HlsMasterPlaylist.java | 296 List<T> streams, int groupIndex, List<StreamKey> streamKeys) { in copyStreams() argument 312 if (streamKey.groupIndex == groupIndex && streamKey.trackIndex == i) { in copyStreams()
|
/external/catch2/include/internal/ |
D | catch_run_context.h | 44 …void testGroupStarting( std::string const& testSpec, std::size_t groupIndex, std::size_t groupsCou… 45 …pEnded( std::string const& testSpec, Totals const& totals, std::size_t groupIndex, std::size_t gro…
|
D | catch_run_context.cpp | 88 …void RunContext::testGroupStarting(std::string const& testSpec, std::size_t groupIndex, std::size_… in testGroupStarting() argument 89 m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount)); in testGroupStarting() 92 …upEnded(std::string const& testSpec, Totals const& totals, std::size_t groupIndex, std::size_t gro… in testGroupEnded() argument 93 …m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, ab… in testGroupEnded()
|
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/ |
D | DashManifest.java | 216 int adaptationSetIndex = key.groupIndex; in copyAdaptationSets() 225 } while (key.periodIndex == periodIndex && key.groupIndex == adaptationSetIndex); in copyAdaptationSets()
|
/external/swiftshader/src/Pipeline/ |
D | ComputeProgram.cpp | 252 for(uint32_t groupIndex = batchID; groupIndex < groupCount; groupIndex += batchCount) in run() local 254 auto modulo = groupIndex; in run()
|