Home
last modified time | relevance | path

Searched refs:representation (Results 1 – 25 of 1048) sorted by relevance

12345678910>>...42

/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java57 Representation representation, String baseUrl, RangedUri requestUri, int flags) { in buildDataSpec() argument
62 .setKey(resolveCacheKey(representation, requestUri)) in buildDataSpec()
79 Representation representation, RangedUri requestUri, int flags) { in buildDataSpec() argument
80 return buildDataSpec(representation, representation.baseUrls.get(0).url, requestUri, flags); in buildDataSpec()
107 Representation representation = getFirstRepresentation(period, primaryTrackType); in loadFormatWithDrmInitData() local
108 if (representation == null) { in loadFormatWithDrmInitData()
110 representation = getFirstRepresentation(period, primaryTrackType); in loadFormatWithDrmInitData()
111 if (representation == null) { in loadFormatWithDrmInitData()
115 Format manifestFormat = representation.format; in loadFormatWithDrmInitData()
117 Format sampleFormat = DashUtil.loadSampleFormat(dataSource, primaryTrackType, representation); in loadFormatWithDrmInitData()
[all …]
DDefaultDashChunkSource.java212 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i)); in DefaultDashChunkSource() local
214 BaseUrl selectedBaseUrl = baseUrlExclusionList.selectBaseUrl(representation.baseUrls); in DefaultDashChunkSource()
218 representation, in DefaultDashChunkSource()
219 selectedBaseUrl != null ? selectedBaseUrl : representation.baseUrls.get(0), in DefaultDashChunkSource()
222 representation.format, in DefaultDashChunkSource()
228 representation.getIndex()); in DefaultDashChunkSource()
262 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i));
264 representationHolders[i].copyWithNewRepresentation(periodDurationUs, representation);
362 Representation selectedRepresentation = representationHolder.representation;
464 chunkIndex, representationHolder.representation.presentationTimeOffsetUs));
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java56 Representation representation, String baseUrl, RangedUri requestUri, int flags) { in buildDataSpec() argument
61 .setKey(resolveCacheKey(representation, requestUri)) in buildDataSpec()
78 Representation representation, RangedUri requestUri, int flags) { in buildDataSpec() argument
79 return buildDataSpec(representation, representation.baseUrls.get(0).url, requestUri, flags); in buildDataSpec()
106 Representation representation = getFirstRepresentation(period, primaryTrackType); in loadFormatWithDrmInitData() local
107 if (representation == null) { in loadFormatWithDrmInitData()
109 representation = getFirstRepresentation(period, primaryTrackType); in loadFormatWithDrmInitData()
110 if (representation == null) { in loadFormatWithDrmInitData()
114 Format manifestFormat = representation.format; in loadFormatWithDrmInitData()
116 Format sampleFormat = DashUtil.loadSampleFormat(dataSource, primaryTrackType, representation); in loadFormatWithDrmInitData()
[all …]
DDefaultDashChunkSource.java212 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i)); in DefaultDashChunkSource() local
214 BaseUrl selectedBaseUrl = baseUrlExclusionList.selectBaseUrl(representation.baseUrls); in DefaultDashChunkSource()
218 representation, in DefaultDashChunkSource()
219 selectedBaseUrl != null ? selectedBaseUrl : representation.baseUrls.get(0), in DefaultDashChunkSource()
222 representation.format, in DefaultDashChunkSource()
228 representation.getIndex()); in DefaultDashChunkSource()
262 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i));
264 representationHolders[i].copyWithNewRepresentation(periodDurationUs, representation);
362 Representation selectedRepresentation = representationHolder.representation;
464 chunkIndex, representationHolder.representation.presentationTimeOffsetUs));
[all …]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DGenericKey.java8 private Object representation; field in GenericKey
14 public GenericKey(Object representation) in GenericKey() argument
17 this.representation = representation; in GenericKey()
20 public GenericKey(AlgorithmIdentifier algorithmIdentifier, byte[] representation) in GenericKey() argument
23 this.representation = representation; in GenericKey()
26 protected GenericKey(AlgorithmIdentifier algorithmIdentifier, Object representation) in GenericKey() argument
29 this.representation = representation; in GenericKey()
39 return representation; in getRepresentation()
/external/bouncycastle/repackaged_platform/bcpkix/src/main/java/com/android/internal/org/bouncycastle/operator/
DGenericKey.java12 private Object representation; field in GenericKey
18 public GenericKey(Object representation) in GenericKey() argument
21 this.representation = representation; in GenericKey()
24 public GenericKey(AlgorithmIdentifier algorithmIdentifier, byte[] representation) in GenericKey() argument
27 this.representation = representation; in GenericKey()
30 protected GenericKey(AlgorithmIdentifier algorithmIdentifier, Object representation) in GenericKey() argument
33 this.representation = representation; in GenericKey()
43 return representation; in getRepresentation()
/external/libchrome/base/
Dvalue_conversions.cc67 UnguessableTokenRepresentation representation; in CreateUnguessableTokenValue() local
68 representation.field.high = token.GetHighForSerialization(); in CreateUnguessableTokenValue()
69 representation.field.low = token.GetLowForSerialization(); in CreateUnguessableTokenValue()
72 HexEncode(representation.buffer, sizeof(representation.buffer))); in CreateUnguessableTokenValue()
87 UnguessableTokenRepresentation representation; in GetValueAsUnguessableToken() local
88 if (high_low_bytes.size() != sizeof(representation.buffer)) { in GetValueAsUnguessableToken()
93 std::begin(representation.buffer)); in GetValueAsUnguessableToken()
94 *token = UnguessableToken::Deserialize(representation.field.high, in GetValueAsUnguessableToken()
95 representation.field.low); in GetValueAsUnguessableToken()
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DAbstractListChromosome.java34 private final List<T> representation; field in AbstractListChromosome
40 public AbstractListChromosome(final List<T> representation) { in AbstractListChromosome() argument
42 checkValidity(representation); in AbstractListChromosome()
46 this.representation = Collections.unmodifiableList(new ArrayList<T> (representation)); in AbstractListChromosome()
53 public AbstractListChromosome(final T[] representation) { in AbstractListChromosome() argument
54 this(Arrays.asList(representation)); in AbstractListChromosome()
71 return representation; in getRepresentation()
DRandomKey.java81 public RandomKey(List<Double> representation) { in RandomKey() argument
82 super(representation); in RandomKey()
98 public RandomKey(Double[] representation) { in RandomKey() argument
99 this(Arrays.asList(representation)); in RandomKey()
119 …private static <S> List<S> decodeGeneric(List<S> sequence, List<Double> representation, List<Doubl… in decodeGeneric() argument
122 if (representation.size() != l) { in decodeGeneric()
123 …for decoding (%s) has to be equal to the length of the RandomKey (%s)", l, representation.size())); in decodeGeneric()
125 if (representation.size() != sortedRepr.size()) { in decodeGeneric()
126 …rmat("Representation and sortedRepr must have same sizes, %d != %d", representation.size(), sorted… in decodeGeneric()
129 …List<Double> reprCopy = new ArrayList<Double> (representation);// do not modify the orig. represen… in decodeGeneric()
DBinaryChromosome.java35 public BinaryChromosome(List<Integer> representation) { in BinaryChromosome() argument
36 super(representation); in BinaryChromosome()
43 public BinaryChromosome(Integer[] representation) { in BinaryChromosome() argument
44 super(representation); in BinaryChromosome()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/offline/
DDashDownloader.java151 Representation representation = adaptationSet.representations.get(i); in addSegmentsForAdaptationSet() local
154 index = getSegmentIndex(dataSource, adaptationSet.type, representation, removing); in addSegmentsForAdaptationSet()
172 String baseUrl = castNonNull(baseUrlExclusionList.selectBaseUrl(representation.baseUrls)).url; in addSegmentsForAdaptationSet()
173 @Nullable RangedUri initializationUri = representation.getInitializationUri(); in addSegmentsForAdaptationSet()
175 out.add(createSegment(representation, baseUrl, periodStartUs, initializationUri)); in addSegmentsForAdaptationSet()
177 @Nullable RangedUri indexUri = representation.getIndexUri(); in addSegmentsForAdaptationSet()
179 out.add(createSegment(representation, baseUrl, periodStartUs, indexUri)); in addSegmentsForAdaptationSet()
186 representation, in addSegmentsForAdaptationSet()
195 Representation representation, String baseUrl, long startTimeUs, RangedUri rangedUri) { in createSegment() argument
196 DataSpec dataSpec = DashUtil.buildDataSpec(representation, baseUrl, rangedUri, /* flags= */ 0); in createSegment()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/offline/
DDashDownloader.java151 Representation representation = adaptationSet.representations.get(i); in addSegmentsForAdaptationSet() local
154 index = getSegmentIndex(dataSource, adaptationSet.type, representation, removing); in addSegmentsForAdaptationSet()
172 String baseUrl = castNonNull(baseUrlExclusionList.selectBaseUrl(representation.baseUrls)).url; in addSegmentsForAdaptationSet()
173 @Nullable RangedUri initializationUri = representation.getInitializationUri(); in addSegmentsForAdaptationSet()
175 out.add(createSegment(representation, baseUrl, periodStartUs, initializationUri)); in addSegmentsForAdaptationSet()
177 @Nullable RangedUri indexUri = representation.getIndexUri(); in addSegmentsForAdaptationSet()
179 out.add(createSegment(representation, baseUrl, periodStartUs, indexUri)); in addSegmentsForAdaptationSet()
186 representation, in addSegmentsForAdaptationSet()
195 Representation representation, String baseUrl, long startTimeUs, RangedUri rangedUri) { in createSegment() argument
196 DataSpec dataSpec = DashUtil.buildDataSpec(representation, baseUrl, rangedUri, /* flags= */ 0); in createSegment()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
DDynamicSymmetry.h68 std::vector<int> representation; member
72 for (std::size_t i = 0; i < representation.size(); i++) in isId()
73 if (i != (size_t)representation[i]) in isId()
93 …return std::array<Index, N>{{ idx[n >= m_numIndices ? n : m_elements[which].representation[n]]... … in h_permute()
101 for (auto k : m_elements[which].representation) in h_permute()
111 result.representation.reserve(m_numIndices); in ge()
115 result.representation.push_back(g.two); in ge()
117 result.representation.push_back(g.one); in ge()
119 result.representation.push_back(int(k)); in ge()
143 if (ee.representation == e.representation) in findElement()
[all …]
/external/cronet/net/third_party/quiche/src/quiche/spdy/core/hpack/
Dhpack_encoder.cc152 void HpackEncoder::EmitIndexedLiteral(const Representation& representation) { in EmitIndexedLiteral() argument
153 QUICHE_DVLOG(2) << "Emitting indexed literal: (" << representation.first in EmitIndexedLiteral()
154 << ", " << representation.second << ")"; in EmitIndexedLiteral()
156 EmitLiteral(representation); in EmitIndexedLiteral()
157 header_table_.TryAddEntry(representation.first, representation.second); in EmitIndexedLiteral()
160 void HpackEncoder::EmitNonIndexedLiteral(const Representation& representation, in EmitNonIndexedLiteral() argument
162 QUICHE_DVLOG(2) << "Emitting nonindexed literal: (" << representation.first in EmitNonIndexedLiteral()
163 << ", " << representation.second << ")"; in EmitNonIndexedLiteral()
165 size_t name_index = header_table_.GetByName(representation.first); in EmitNonIndexedLiteral()
170 EmitString(representation.first); in EmitNonIndexedLiteral()
[all …]
/external/ruy/ruy/
Dtime.h38 Duration DurationFromSeconds(RepresentationType representation) { in DurationFromSeconds() argument
40 std::chrono::duration<RepresentationType>(representation)); in DurationFromSeconds()
44 Duration DurationFromMilliseconds(RepresentationType representation) { in DurationFromMilliseconds() argument
46 std::chrono::duration<RepresentationType, std::milli>(representation)); in DurationFromMilliseconds()
50 Duration DurationFromNanoseconds(RepresentationType representation) { in DurationFromNanoseconds() argument
52 std::chrono::duration<RepresentationType, std::nano>(representation)); in DurationFromNanoseconds()
/external/python/pyasn1/pyasn1/type/
Dtagmap.py59 representation = '%s object' % self.__class__.__name__
62 representation += ', present %s' % repr(self.__presentTypes)
65 representation += ', skip %s' % repr(self.__skipTypes)
68 representation += ', default %s' % repr(self.__defaultType)
70 return '<%s>' % representation
Dtag.py67 representation = '[%s:%s:%s]' % (
70 self.__class__.__name__, representation)
197 representation = '-'.join(['%s:%s:%s' % (x.tagClass, x.tagFormat, x.tagId)
199 if representation:
200 representation = 'tags ' + representation
202 representation = 'untagged'
204 return '<%s object, %s>' % (self.__class__.__name__, representation)
Dnamedval.py107 representation = ', '.join(['%s=%d' % x for x in self.items()])
109 if len(representation) > 64:
110 representation = representation[:32] + '...' + representation[-32:]
113 self.__class__.__name__, representation)
/external/tensorflow/tensorflow/core/function/trace_type/
Dserialization.py84 serialized.representation.Pack(actual_proto)
91 if proto.representation.Is(proto_class.DESCRIPTOR):
93 proto.representation.Unpack(actual_proto)
98 "Can not deserialize proto of url: ", proto.representation.type_url,
100 proto.representation.value)
/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_psa_crypto_storage_format.function14 * Test that it has the expected representation.
16 * On error, including if the key representation in storage differs,
63 /** Write a key with the given representation to storage, then check
66 * On error, including if the key representation in storage differs,
72 const data_t *representation,
83 PSA_ASSERT( psa_its_set( uid, representation->len, representation->x, 0 ) );
154 data_t *representation )
186 uid, representation ) );
199 data_t *representation, int flags )
225 /* Test that we can use a key with the given representation. This
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DSegmentBase.java61 public RangedUri getInitialization(Representation representation) { in getInitialization() argument
238 public abstract RangedUri getSegmentUrl(Representation representation, long index); in getSegmentUrl() argument
348 public RangedUri getSegmentUrl(Representation representation, long sequenceNumber) { in getSegmentUrl() argument
427 public RangedUri getInitialization(Representation representation) { in getInitialization() argument
431 representation.format.id, 0, representation.format.bitrate, 0); in getInitialization()
434 return super.getInitialization(representation); in getInitialization()
439 public RangedUri getSegmentUrl(Representation representation, long sequenceNumber) { in getSegmentUrl() argument
448 representation.format.id, sequenceNumber, representation.format.bitrate, time); in getSegmentUrl()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DSegmentBase.java61 public RangedUri getInitialization(Representation representation) { in getInitialization() argument
238 public abstract RangedUri getSegmentUrl(Representation representation, long index); in getSegmentUrl() argument
348 public RangedUri getSegmentUrl(Representation representation, long sequenceNumber) { in getSegmentUrl() argument
427 public RangedUri getInitialization(Representation representation) { in getInitialization() argument
431 representation.format.id, 0, representation.format.bitrate, 0); in getInitialization()
434 return super.getInitialization(representation); in getInitialization()
439 public RangedUri getSegmentUrl(Representation representation, long sequenceNumber) { in getSegmentUrl() argument
448 representation.format.id, sequenceNumber, representation.format.bitrate, time); in getSegmentUrl()
/external/rust/crates/protobuf-parse/src/proto/google/protobuf/
Dwrappers.proto55 // The JSON representation for `DoubleValue` is JSON number.
63 // The JSON representation for `FloatValue` is JSON number.
71 // The JSON representation for `Int64Value` is JSON string.
79 // The JSON representation for `UInt64Value` is JSON string.
87 // The JSON representation for `Int32Value` is JSON number.
95 // The JSON representation for `UInt32Value` is JSON number.
103 // The JSON representation for `BoolValue` is JSON `true` and `false`.
111 // The JSON representation for `StringValue` is JSON string.
119 // The JSON representation for `BytesValue` is JSON string.
/external/protobuf/src/google/protobuf/
Dwrappers.proto55 // The JSON representation for `DoubleValue` is JSON number.
63 // The JSON representation for `FloatValue` is JSON number.
71 // The JSON representation for `Int64Value` is JSON string.
79 // The JSON representation for `UInt64Value` is JSON string.
87 // The JSON representation for `Int32Value` is JSON number.
95 // The JSON representation for `UInt32Value` is JSON number.
103 // The JSON representation for `BoolValue` is JSON `true` and `false`.
111 // The JSON representation for `StringValue` is JSON string.
119 // The JSON representation for `BytesValue` is JSON string.
/external/cronet/third_party/protobuf/src/google/protobuf/
Dwrappers.proto55 // The JSON representation for `DoubleValue` is JSON number.
63 // The JSON representation for `FloatValue` is JSON number.
71 // The JSON representation for `Int64Value` is JSON string.
79 // The JSON representation for `UInt64Value` is JSON string.
87 // The JSON representation for `Int32Value` is JSON number.
95 // The JSON representation for `UInt32Value` is JSON number.
103 // The JSON representation for `BoolValue` is JSON `true` and `false`.
111 // The JSON representation for `StringValue` is JSON string.
119 // The JSON representation for `BytesValue` is JSON string.

12345678910>>...42