Home
last modified time | relevance | path

Searched full:representation (Results 1 – 25 of 10296) sorted by relevance

12345678910>>...412

/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java33 import com.google.android.exoplayer2.source.dash.manifest.Representation;
47 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
49 * @param representation The {@link Representation} to which the request belongs.
57 Representation representation, String baseUrl, RangedUri requestUri, int flags) { in buildDataSpec() argument
62 .setKey(resolveCacheKey(representation, requestUri)) in buildDataSpec()
68 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
70 * <p>Uses the first base URL of the representation to build the data spec.
72 * @param representation The {@link Representation} to which the request belongs.
79 Representation representation, RangedUri requestUri, int flags) { in buildDataSpec() argument
80 return buildDataSpec(representation, representation.baseUrls.get(0).url, requestUri, flags); in buildDataSpec()
[all …]
DDefaultDashChunkSource.java46 import com.google.android.exoplayer2.source.dash.manifest.Representation;
209 List<Representation> representations = getRepresentations(); in DefaultDashChunkSource()
212 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()
260 List<Representation> representations = getRepresentations();
262 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i));
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java33 import com.google.android.exoplayer2.source.dash.manifest.Representation;
46 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
48 * @param representation The {@link Representation} to which the request belongs.
56 Representation representation, String baseUrl, RangedUri requestUri, int flags) { in buildDataSpec() argument
61 .setKey(resolveCacheKey(representation, requestUri)) in buildDataSpec()
67 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
69 * <p>Uses the first base URL of the representation to build the data spec.
71 * @param representation The {@link Representation} to which the request belongs.
78 Representation representation, RangedUri requestUri, int flags) { in buildDataSpec() argument
79 return buildDataSpec(representation, representation.baseUrls.get(0).url, requestUri, flags); in buildDataSpec()
[all …]
DDefaultDashChunkSource.java46 import com.google.android.exoplayer2.source.dash.manifest.Representation;
209 List<Representation> representations = getRepresentations(); in DefaultDashChunkSource()
212 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()
260 List<Representation> representations = getRepresentations();
262 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i));
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math3/genetics/
DAbstractListChromosome.java27 * @param <T> type of the representation list
33 private final List<T> representation; field in AbstractListChromosome
36 * Constructor, copying the input representation.
38 * @param representation inner representation of the chromosome
39 * @throws InvalidRepresentationException iff the <code>representation</code> can not represent
42 public AbstractListChromosome(final List<T> representation) in AbstractListChromosome() argument
44 this(representation, true); in AbstractListChromosome()
48 * Constructor, copying the input representation.
50 * @param representation inner representation of the chromosome
51 * @throws InvalidRepresentationException iff the <code>representation</code> can not represent
[all …]
DRandomKey.java30 * Random Key chromosome is used for permutation representation. It is a vector of a fixed length of
38 * <p>With this representation, common operators like n-point crossover can be used, because any
41 * <p>Since the chromosome (and thus its arrayRepresentation) is immutable, the array representation
59 /** Cache of sorted representation (unmodifiable). */
62 /** Base sequence [0,1,...,n-1], permuted according to the representation (unmodifiable). */
68 * @param representation list of [0,1] values representing the permutation
69 * @throws InvalidRepresentationException iff the <code>representation</code> can not represent
72 public RandomKey(final List<Double> representation) throws InvalidRepresentationException { in RandomKey() argument
73 super(representation); in RandomKey()
74 // store the sorted representation in RandomKey()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.java32 /** A DASH representation. */
33 public abstract class Representation { class
39 * Identifies the revision of the media contained within the representation. If the media can
45 /** The format of the representation. */
47 /** The base URLs of the representation. */
51 /** The in-band event streams in the representation. May be empty. */
53 /** Essential properties in the representation. May be empty. */
64 * @param format The format of the representation.
65 * @param baseUrls The list of base URLs of the representation.
66 * @param segmentBase A segment base element for the representation.
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.java32 /** A DASH representation. */
33 public abstract class Representation { class
39 * Identifies the revision of the media contained within the representation. If the media can
45 /** The format of the representation. */
47 /** The base URLs of the representation. */
51 /** The in-band event streams in the representation. May be empty. */
53 /** Essential properties in the representation. May be empty. */
64 * @param format The format of the representation.
65 * @param baseUrls The list of base URLs of the representation.
66 * @param segmentBase A segment base element for the representation.
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DAbstractListChromosome.java27 * @param <T> type of the representation list
34 private final List<T> representation; field in AbstractListChromosome
38 * @param representation inner representation of the chromosome
40 public AbstractListChromosome(final List<T> representation) { in AbstractListChromosome() argument
42 checkValidity(representation); in AbstractListChromosome()
44 …throw new IllegalArgumentException(String.format("Invalid representation for %s", getClass().getSi… in AbstractListChromosome()
46 this.representation = Collections.unmodifiableList(new ArrayList<T> (representation)); in AbstractListChromosome()
51 * @param representation inner representation of the chromosome
53 public AbstractListChromosome(final T[] representation) { in AbstractListChromosome() argument
54 this(Arrays.asList(representation)); in AbstractListChromosome()
[all …]
DRandomKey.java27 * Random Key chromosome is used for permutation representation. It is a vector
39 * With this representation, common operators like n-point crossover can be
45 * array representation is sorted only once in the constructor.
67 * Cache of sorted representation (unmodifiable).
72 * Base sequence [0,1,...,n-1], permuted accorting to the representation (unmodifiable).
79 * @param representation list of [0,1] values representing the permutation
81 public RandomKey(List<Double> representation) { in RandomKey() argument
82 super(representation); in RandomKey()
83 // store the sorted representation in RandomKey()
96 * @param representation array of [0,1] values representing the permutation
[all …]
/external/sdv/vsomeip/third_party/boost/spirit/doc/karma/
Dbinary.qbk87 [[`byte_`] [Output the binary representation of the least
91 [[`word`] [Output the binary representation of the least
93 in native endian representation. This generator
96 [[`dword`] [Output the binary representation of the least
98 in native endian representation. This generator
101 [[`qword`] [Output the binary representation of the least
103 in native endian representation. This generator
106 [[`bin_float`] [Output the binary representation of the mandatory
107 float attribute in native endian representation.
110 [[`bin_double`] [Output the binary representation of the mandatory
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testdata/src/test/assets/media/mpd/
Dsample_mpd_stream_keys5 <Representation id="135" bandwidth="1000000" codecs="avc1.42c01f"/>
13 <Representation id="1001" bandwidth="200000" codecs="avc1.42c01f">
18 </Representation>
19 <Representation id="1002" bandwidth="400000" codecs="avc1.42c01f">
24 </Representation>
25 <Representation id="1003" bandwidth="600000" codecs="avc1.42c01f">
30 </Representation>
36 <Representation id="1011" bandwidth="48000" codecs="mp4a.40.2"/>
37 <Representation id="1012" bandwidth="96000" codecs="mp4a.40.2"/>
43 <Representation id="1021" bandwidth="256000" codecs="mp4a.40.2"/>
[all …]
Dsample_mpd_availabilityTimeOffset_segmentTemplate13 <Representation>
16 </Representation>
21 <Representation/>
25 <Representation>
28 </Representation>
33 <Representation>
36 </Representation>
41 <Representation>
43 </Representation>
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testdata/src/test/assets/media/mpd/
Dsample_mpd_stream_keys5 <Representation id="135" bandwidth="1000000" codecs="avc1.42c01f"/>
13 <Representation id="1001" bandwidth="200000" codecs="avc1.42c01f">
18 </Representation>
19 <Representation id="1002" bandwidth="400000" codecs="avc1.42c01f">
24 </Representation>
25 <Representation id="1003" bandwidth="600000" codecs="avc1.42c01f">
30 </Representation>
36 <Representation id="1011" bandwidth="48000" codecs="mp4a.40.2"/>
37 <Representation id="1012" bandwidth="96000" codecs="mp4a.40.2"/>
43 <Representation id="1021" bandwidth="256000" codecs="mp4a.40.2"/>
[all …]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DGenericKey.java8 private Object representation; field in GenericKey
12 * @param representation key data
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
16 * @param representation key data
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/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/source/dash/
DDashUtil.html157Representation,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)">buildDataSpec</a…
161 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
166Representation,java.lang.String,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)"…
171 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
176 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation)">loadChunkInd…
178 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
180 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
185 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation,int)">loadChun…
187 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
190 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/source/dash/
DDashUtil.html157Representation,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)">buildDataSpec</a…
161 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
166Representation,java.lang.String,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)"…
171 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
176 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation)">loadChunkInd…
178 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
180 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
185 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation,int)">loadChun…
187 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
190 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_debug_flush.h48 * Create a buffer (AKA allocation) representation.
52 * representation.
58 * Reference a buffer representation.
63 * Replace a pointer to a buffer representation with proper refcounting.
70 * Create a context representation.
75 * representation.
81 * Destroy a context representation.
83 * @param fctx The context representation to destroy.
91 * @param fbuf The buffer representation to map.
94 * Used to annotate a map of the buffer described by the buffer representation.
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/offline/
DDashDownloader.java34 import com.google.android.exoplayer2.source.dash.manifest.Representation;
58 * // Create a downloader for the first representation of the first adaptation set of the first
151 Representation representation = adaptationSet.representations.get(i); in addSegmentsForAdaptationSet() local
154 index = getSegmentIndex(dataSource, adaptationSet.type, representation, removing); in addSegmentsForAdaptationSet()
163 // Generating an incomplete segment list is allowed. Advance to the next representation. 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()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/offline/
DDashDownloader.java34 import com.google.android.exoplayer2.source.dash.manifest.Representation;
58 * // Create a downloader for the first representation of the first adaptation set of the first
151 Representation representation = adaptationSet.representations.get(i); in addSegmentsForAdaptationSet() local
154 index = getSegmentIndex(dataSource, adaptationSet.type, representation, removing); in addSegmentsForAdaptationSet()
163 // Generating an incomplete segment list is allowed. Advance to the next representation. 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()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.SingleSegmentRepresentation.html5 <title>Representation.SingleSegmentRepresentation (ExoPlayer library)</title>
22 parent.document.title="Representation.SingleSegmentRepresentation (ExoPlayer library)";
117 <h2 title="Class Representation.SingleSegmentRepresentation" class="title">Class Representation.Sin…
124Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifest">com.googl…
127 <li>com.google.android.exoplayer2.source.dash.manifest.Representation.SingleSegmentRepresentation</…
138 <dd><a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifes…
141 <pre>public static class <span class="typeNameLabel">Representation.SingleSegmentRepresentation</sp…
142 extends <a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.man…
143 <div class="block">A DASH representation consisting of a single segment.</div>
158 …ed.classes.inherited.from.class.com.google.android.exoplayer2.source.dash.manifest.Representation">
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.SingleSegmentRepresentation.html5 <title>Representation.SingleSegmentRepresentation (ExoPlayer library)</title>
22 parent.document.title="Representation.SingleSegmentRepresentation (ExoPlayer library)";
117 <h2 title="Class Representation.SingleSegmentRepresentation" class="title">Class Representation.Sin…
124Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifest">com.googl…
127 <li>com.google.android.exoplayer2.source.dash.manifest.Representation.SingleSegmentRepresentation</…
138 <dd><a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifes…
141 <pre>public static class <span class="typeNameLabel">Representation.SingleSegmentRepresentation</sp…
142 extends <a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.man…
143 <div class="block">A DASH representation consisting of a single segment.</div>
158 …ed.classes.inherited.from.class.com.google.android.exoplayer2.source.dash.manifest.Representation">
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/time/
Dconversion.sql17 -- representation of time durations in trace processor. Provided for
28 -- representation of time durations in trace processor.
38 -- representation of time durations in trace processor.
48 -- representation of time durations in trace processor.
58 -- representation of time durations in trace processor.
68 -- representation of time durations in trace processor.
78 -- representation of time durations in trace processor.
88 -- representation of time durations in trace processor. Provided for
99 -- representation of time durations in trace processor.
109 -- representation of time durations in trace processor.
[all …]
/external/opencensus-java/api/src/main/java/io/opencensus/trace/
DSpanId.java49 // The internal representation of the SpanId.
57 * Returns a {@code SpanId} built from a byte representation.
59 * @param src the representation of the {@code SpanId}.
60 * @return a {@code SpanId} whose representation is given by the {@code src} parameter.
73 * Returns a {@code SpanId} whose representation is copied from the {@code src} beginning at the
76 * @param src the buffer where the representation of the {@code SpanId} is copied.
77 * @param srcOffset the offset in the buffer where the representation of the {@code SpanId}
79 * @return a {@code SpanId} whose representation is copied from the buffer.
91 * Returns a {@code SpanId} built from a lowercase base16 representation.
93 * @param src the lowercase base16 representation.
[all …]

12345678910>>...412