HomeSort by relevance Sort by last modified time
    Searched defs:streams (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/core/fxcrt/
cfx_seekablemultistream_unittest.cpp 18 std::vector<CPDF_Stream*> streams; local
19 auto fileread = pdfium::MakeRetain<CFX_SeekableMultiStream>(streams);
28 std::vector<CPDF_Stream*> streams; local
30 streams.push_back(stream1.get());
31 auto fileread = pdfium::MakeRetain<CFX_SeekableMultiStream>(streams);
40 std::vector<CPDF_Stream*> streams; local
53 streams.push_back(stream1.get());
54 streams.push_back(stream2.get());
55 streams.push_back(stream3.get());
56 auto fileread = pdfium::MakeRetain<CFX_SeekableMultiStream>(streams);
    [all...]
  /external/kotlinc/lib/
kotlin-stdlib-jdk8.jar 
kotlin-stdlib-jre8.jar 
  /external/pdfium/core/fpdfdoc/
cpdf_filespec_unittest.cpp 187 const char* const streams[] = {"test1", "test2", "test3", "test4", "test5"}; local
188 static_assert(FX_ArraySize(keys) == FX_ArraySize(streams), "size mismatch");
199 size_t buf_len = strlen(streams[i]) + 1;
201 memcpy(buf.get(), streams[i], buf_len);
207 streams[i],
  /external/webrtc/webrtc/call/
call_unittest.cc 68 std::list<AudioSendStream*> streams; local
75 streams.push_back(stream);
77 streams.push_front(stream);
80 for (auto s : streams) {
83 streams.clear();
91 std::list<AudioReceiveStream*> streams; local
98 streams.push_back(stream);
100 streams.push_front(stream);
103 for (auto s : streams) {
106 streams.clear()
    [all...]
  /hardware/interfaces/camera/device/3.3/default/
CameraDeviceSession.cpp 81 hidl_vec<camera3_stream_t*> streams; local
82 if (!preProcessConfigurationLocked(requestedConfiguration, &stream_list, &streams)) {
92 // the corresponding resources of the deleted streams.
  /art/test/151-OpenFileLimit/src/
Main.java 30 List<OutputStream> streams = new ArrayList<OutputStream>(); local
35 streams.add(Files.newOutputStream(file.toPath(), CREATE, APPEND));
58 for (int i = 0; i < streams.size(); i++) {
59 streams.get(i).close();
  /external/libbrillo/brillo/http/
http_form_data_unittest.cc 12 #include <brillo/streams/file_stream.h>
13 #include <brillo/streams/input_stream_set.h>
20 std::vector<StreamPtr> streams; local
21 CHECK(field->ExtractDataStreams(&streams));
22 StreamPtr stream = InputStreamSet::Create(std::move(streams), nullptr);
  /external/libopus/tests/
opus_encode_regressions.c 49 int streams; local
53 enc = opus_multistream_surround_encoder_create(16000, 1, 1, &streams,
399 int streams; local
403 enc = opus_multistream_surround_encoder_create(24000, 3, 1, &streams,
    [all...]
  /external/adhd/cras/src/server/
stream_list.c 13 struct cras_rstream *streams; member in struct:stream_list
74 return list->streams;
87 DL_APPEND(list->streams, *stream);
90 DL_DELETE(list->streams, *stream);
101 DL_SEARCH_SCALAR(list->streams, to_remove, stream_id, id);
104 DL_DELETE(list->streams, to_remove);
121 DL_FOREACH(list->streams, to_remove) {
123 DL_DELETE(list->streams, to_remove);
  /external/vogar/test/vogar/testing/
InterceptOutputStreams.java 37 * The streams that can be intercepted.
69 * The streams to intercept.
71 private final EnumSet<Stream> streams; field in class:InterceptOutputStreams
75 * The streams to intercept.
77 public InterceptOutputStreams(Stream... streams) {
78 this.streams = EnumSet.of(streams[0], streams);
91 if (!streams.contains(stream)) {
92 EnumSet<Stream> extra = streams.clone()
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipFile.java 358 private final Map<InputStream, Inflater> streams = new WeakHashMap<>(); field in class:ZipFile
365 * streams that have been returned by invocations of this method.
396 synchronized (streams) {
397 streams.put(in, null);
410 synchronized (streams) {
411 streams.put(is, inf);
438 synchronized (streams) {
439 inf = streams.remove(this);
636 * <p> Closing this ZIP file will close all of the input streams
649 // Close streams, release their inflater
    [all...]
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
StreamFlagsTest.java 30 import java.util.stream.Streams;
50 Stream<?>[] streams = { arrayList, linkedList, hashSet, treeSet, linkedHashSet, repeat }; field in class:StreamFlagsTest
88 for (Stream<?> s : streams) {
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 191 /** Input stream stack, which allows the C programmer to switch input streams
195 pANTLR3_STACK streams; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
197 /// A stack of token/tree rewrite streams that are available for use
200 /// allocate and deallocate rewtire streams on entry and exit. As
202 /// of the maximum number of allocated streams, which instead of
204 /// reuse. The streams are then all finally freed when this stack
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 50 protected Stack streams = new Stack(); field in class:GrammarSerializerFoo
130 //streams.push(out);
138 //out = (DataOutputStream)streams.pop(); // restore previous stream
  /external/sonivox/arm-wt-22k/lib_src/
eas_data.h 115 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
hlo_schedule_test.cc 40 const HloModule& module, const StreamAssignment& streams) {
41 return HloSchedule::Build(module, streams, /*pointer_size=*/8)
75 std::unique_ptr<StreamAssignment> streams = AssignStreams(*module); local
76 EXPECT_EQ(streams->StreamNumberForHlo(*dot1),
77 streams->StreamNumberForHlo(*dot2));
79 auto schedule = BuildHloSchedule(*module, *streams);
135 std::unique_ptr<StreamAssignment> streams = AssignStreams(*module); local
136 EXPECT_EQ(streams->StreamNumberForHlo(*add1),
137 streams->StreamNumberForHlo(*add2));
138 EXPECT_EQ(streams->StreamNumberForHlo(*add1)
205 std::unique_ptr<StreamAssignment> streams = AssignStreams(*module); local
284 std::unique_ptr<StreamAssignment> streams = AssignStreams(*module); local
    [all...]
  /external/webrtc/webrtc/base/
diskcache.h 26 // DiskCache - An LRU cache of streams, stored on disk.
28 // Streams are identified by a unique resource id. Multiple streams can be
30 // resources are flushed from the cache, all streams associated with those
67 size_t streams; member in struct:rtc::DiskCache::Entry
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SequenceInputStreamTest.java 69 InputStream streams[] = new InputStream[2]; field in class:SequenceInputStreamTest.StreamEnumerator
74 streams[0] = new ByteArrayInputStream(s1.getBytes("UTF-8"));
75 streams[1] = new ByteArrayInputStream(s2.getBytes("UTF-8"));
79 return count < streams.length;
83 return streams[count++];
  /system/security/keystore/
authorization_set.cpp 280 OutStreams streams = { indirect, elements }; local
282 serialize(streams, param);
411 InStreams streams = { indirect, elements }; local
416 deserialize(streams, &(*params)[i]);
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_sol.h 98 struct ilo_state_sol_stream_info streams[ILO_STATE_SOL_MAX_STREAM_COUNT]; member in struct:ilo_state_sol_info
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_sol_state.c 404 const int streams = BRW_MAX_XFB_STREAMS; local
408 obj->prim_count_buffer_index + 2 * streams >= 4096 / sizeof(uint64_t)) {
417 for (int i = 0; i < streams; i++) {
425 obj->prim_count_buffer_index += streams;
  /external/skia/tests/
DataRefTest.cpp 261 SkSTArray<N, std::unique_ptr<SkStream>> streams; local
268 streams.push_back(buffer.makeStreamSnapshot());
277 check_alphabet_stream(reporter, streams[i].get());
  /external/skqp/tests/
DataRefTest.cpp 261 SkSTArray<N, std::unique_ptr<SkStream>> streams; local
268 streams.push_back(buffer.makeStreamSnapshot());
277 check_alphabet_stream(reporter, streams[i].get());

Completed in 624 milliseconds

1 2 3 4 5 6 7 8 91011>>