HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 226 - 250 of 5728) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/vogar/src/vogar/
FileCache.java 2 * Copyright (C) 2010 The Android Open Source Project
28 void copyToCache(File source, String key);
  /external/guava/guava-tests/test/com/google/common/io/
MultiReaderTest.java 35 final CharSource source = newCharSource(testString); local
41 throw new IllegalStateException("More than one source open");
43 return new FilterReader(source.openStream()) {
57 CharSource source = newCharSource("a"); local
58 Iterable<? extends CharSource> list = ImmutableList.of(source, source);
70 CharSource source = newCharSource(testString); local
71 Reader joinedReader = CharSource.concat(source, source).openStream();
105 CharSource source = newCharSource("a")
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimators_test.cc 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
44 VideoSource source(0, 30, 300, 0, 0);
45 VideoSender sender(&uplink_, &source, GetParam());
51 VideoSource source(0, 30, 300, 0, 0);
52 VideoSender sender(&uplink_, &source, GetParam());
60 VideoSource source(0, 30, 300, 0, 0);
61 VideoSender sender(&uplink_, &source, GetParam());
71 VideoSource source(0, 30, 300, 0, 0)
    [all...]
  /frameworks/av/media/libstagefright/
DataSourceFactory.cpp 2 * Copyright (C) 2017 The Android Open Source Project
43 sp<DataSource> source; local
45 source = new FileSource(uri + 7);
73 ALOGE("Failed to connect http source!");
81 source = NuCachedSource2::Create(
86 source = DataURISource::Create(uri);
89 source = new FileSource(uri);
92 if (source == NULL || source->initCheck() != OK) {
96 return source;
100 sp<FileSource> source = new FileSource(fd, offset, length); local
    [all...]
  /external/ImageMagick/MagickCore/
image-view.c 176 % source and duplex pixel extent is not confined to the image canvas-- that is
184 % MagickBooleanType DuplexTransferImageViewMethod(const ImageView *source,
197 % MagickBooleanType DuplexTransferImageViewIterator(ImageView *source,
203 % o source: the source image view.
215 ImageView *source,ImageView *duplex,ImageView *destination,
236 assert(source != (ImageView *) NULL);
237 assert(source->signature == MagickCoreSignature);
240 source_image=source->image;
249 height=source->extent.height-source->extent.y
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_addrtype.h 11 *** source file (e.g. under external/kernel-headers/original/) then
43 __u16 source; member in struct:xt_addrtype_info_v1
48 __u16 source; member in struct:xt_addrtype_info
  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
take_until.cpp 8 auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7); variable
10 auto values = source.take_until(trigger);
20 auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7); variable
21 auto values = source.take_until(std::chrono::steady_clock::now() + std::chrono::milliseconds(25));
34 auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7).map([](long v){ variable
35 printf("[thread %s] Source emits, value = %ld\n", get_pid().c_str(), v);
42 auto values = source.take_until(trigger, rxcpp::observe_on_new_thread());
55 auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7).map([](long v){ variable
56 printf("[thread %s] Source emits, value = %ld\n", get_pid().c_str(), v);
60 auto values = source.take_until(scheduler.now() + std::chrono::milliseconds(25), scheduler)
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
SplitToArray.java 14 String[] split(String source) {
15 List<String> parts = splitter.splitToList(source);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
FileDecoder.java 14 public Resource<File> decode(File source, int width, int height) {
15 return new FileResource(source);
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
InterfaceNode.java 27 public InterfaceNode(NodeId id, Object source) {
28 super(id, source);
43 return "InterfaceNode{id=" + getId() + " source=" + getSource() + "}";
  /external/iptables/include/linux/netfilter/
xt_addrtype.h 31 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info_v1
38 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info
  /external/jarjar/src/main/com/tonicsystems/jarjar/
DepFindVisitor.java 30 public DepFindVisitor(Map<String, String> classes, String source, DepHandler handler) throws IOException {
31 super(null, new DepFindRemapper(classes, source, handler));
42 private final String source; field in class:DepFindVisitor.DepFindRemapper
46 public DepFindRemapper(Map<String, String> classes, String source, DepHandler handler) throws IOException {
48 this.source = source;
53 curPathClass = new PathClass(source, name);
60 if (!source.equals(otherSource)) {
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_addrtype.h 32 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info_v1
39 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info
  /external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons/
deduct.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
33 std::priority_queue<int> source; local
34 std::priority_queue pri(source, 45); // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'priority_queue'}}
  /external/libvpx/libvpx/vpx_dsp/
bitwriter.c 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
15 void vpx_start_encode(vpx_writer *br, uint8_t *source) {
19 br->buffer = source;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 49 private String source; field in class:MessageLog
84 String source,
95 this.source = source;
117 String source,
128 this.source = source;
151 + source
  /external/nist-sip/java/javax/sip/
IOExceptionEvent.java 10 public IOExceptionEvent(Object source, String host, int port,
12 super(source);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
NameValueBlockReader.java 29 import okio.Source;
38 /** This source transforms compressed bytes into uncompressed bytes. */
47 /** This source holds inflated bytes. */
48 private final BufferedSource source; field in class:NameValueBlockReader
50 public NameValueBlockReader(BufferedSource source) {
52 // block. We cut the inflater off at its source because we can't predict the
54 Source throttleSource = new ForwardingSource(source) {
78 this.source = Okio.buffer(inflaterSource);
84 int numberOfPairs = source.readInt()
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
VectorPool.java 2 * Copyright (C) 2010 The Android Open Source Project
41 /** Allocates a vector and assigns the value of the passed source vector to it. */
42 public Vector2 allocate(Vector2 source) {
44 entry.set(source);
  /external/v8/src/compiler/
gap-resolver.h 2 // Use of this source code is governed by a BSD-style license that can be
22 virtual void AssembleMove(InstructionOperand* source,
25 virtual void AssembleSwap(InstructionOperand* source,
  /external/webrtc/talk/session/media/
rtcpmuxfilter.cc 5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
142 bool RtcpMuxFilter::ExpectOffer(bool offer_enable, ContentSource source) {
145 (state_ == ST_SENTOFFER && source == CS_LOCAL) ||
146 (state_ == ST_RECEIVEDOFFER && source == CS_REMOTE));
149 bool RtcpMuxFilter::ExpectAnswer(ContentSource source) {
150 return ((state_ == ST_SENTOFFER && source == CS_REMOTE) ||
151 (state_ == ST_RECEIVEDOFFER && source == CS_LOCAL) ||
152 (state_ == ST_SENTPRANSWER && source == CS_LOCAL) ||
153 (state_ == ST_RECEIVEDPRANSWER && source == CS_REMOTE))
    [all...]
rtcpmuxfilter.h 5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
60 bool ExpectOffer(bool offer_enable, ContentSource source);
61 bool ExpectAnswer(ContentSource source);
  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.h 2 * Copyright (C) 2010 The Android Open Source Project
40 virtual AssemblyStatus assembleMore(const sp<ARTPSource> &source);
51 AssemblyStatus addPacket(const sp<ARTPSource> &source);
AMPEG2TSAssembler.h 2 * Copyright (C) 2012 The Android Open Source Project
36 virtual AssemblyStatus assembleMore(const sp<ARTPSource> &source);
45 AssemblyStatus addPacket(const sp<ARTPSource> &source);
  /art/compiler/optimizing/
register_allocation_resolver.h 2 * Copyright (C) 2016 The Android Open Source Project
69 Location source,
73 Location source,
75 void InsertMoveAfter(HInstruction* instruction, Location source, Location destination) const;
78 Location source,
82 Location source,
85 Location source,

Completed in 1144 milliseconds

1 2 3 4 5 6 7 8 91011>>