HomeSort by relevance Sort by last modified time
    Searched refs:srcs (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /build/kati/testcase/
static_pattern.mk 0 srcs := a.cc b.cc c.cc
2 srcs := $(addprefix ./,$(srcs)) macro
3 objs := $(patsubst ./%.cc,./%.o,$(srcs))
1 srcs := a.cc b.cc c.cc macro
  /libcore/ojluni/src/main/java/java/nio/channels/
GatheringByteChannel.java 62 * srcs[offset].remaining()
63 * + srcs[offset+1].remaining()
64 * + ... + srcs[offset+length-1].remaining()</pre></blockquote>
70 * Up to the first <tt>srcs[offset].remaining()</tt> bytes of this sequence
71 * are written from buffer <tt>srcs[offset]</tt>, up to the next
72 * <tt>srcs[offset+1].remaining()</tt> bytes are written from buffer
73 * <tt>srcs[offset+1]</tt>, and so forth, until the entire byte sequence is
89 * @param srcs
95 * larger than <tt>srcs.length</tt>
100 * <tt>srcs.length</tt>&nbsp;-&nbsp;<tt>offset</tt
    [all...]
DatagramChannel.java 544 public abstract long write(ByteBuffer[] srcs, int offset, int length)
564 public final long write(ByteBuffer[] srcs) throws IOException {
565 return write(srcs, 0, srcs.length);
FileChannel.java 221 public abstract long write(ByteBuffer[] srcs, int offset, int length)
235 public final long write(ByteBuffer[] srcs) throws IOException {
236 return write(srcs, 0, srcs.length);
    [all...]
SocketChannel.java 485 public abstract long write(ByteBuffer[] srcs, int offset, int length)
492 public final long write(ByteBuffer[] srcs) throws IOException {
493 return write(srcs, 0, srcs.length);
  /external/skia/
public.bzl 39 def skia_glob(srcs):
43 srcs: struct(include=[], exclude=[])
45 Equivalent of glob(srcs.include, exclude=srcs.exclude)
47 if hasattr(srcs, 'include'):
48 if hasattr(srcs, 'exclude'):
49 return native.glob(srcs.include, exclude=srcs.exclude)
51 return native.glob(srcs.include)
58 # All platform-independent SRCS
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/config/
makesetup 145 srcs=
155 srcs) srcs="$srcs $arg"; skip=; continue;;
172 *.o) srcs="$srcs `basename $arg .o`.c";;
173 *.[cC]) srcs="$srcs $arg";;
174 *.m) srcs="$srcs $arg";; # Objective-C sr
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/config/
makesetup 145 srcs=
155 srcs) srcs="$srcs $arg"; skip=; continue;;
172 *.o) srcs="$srcs `basename $arg .o`.c";;
173 *.[cC]) srcs="$srcs $arg";;
174 *.m) srcs="$srcs $arg";; # Objective-C sr
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
makesetup 145 srcs=
155 srcs) srcs="$srcs $arg"; skip=; continue;;
172 *.o) srcs="$srcs `basename $arg .o`.c";;
173 *.[cC]) srcs="$srcs $arg";;
174 *.m) srcs="$srcs $arg";; # Objective-C sr
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
makesetup 145 srcs=
155 srcs) srcs="$srcs $arg"; skip=; continue;;
172 *.o) srcs="$srcs `basename $arg .o`.c";;
173 *.[cC]) srcs="$srcs $arg";;
174 *.m) srcs="$srcs $arg";; # Objective-C sr
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
DeleteJobTest.java 50 private final DeleteJob createJob(List<Uri> srcs, Uri srcParent) throws Exception {
52 return createJob(srcs, srcParent, stack);
57 DeleteJob createJob(List<DocumentInfo> srcs, DocumentInfo srcParent, DocumentStack stack)
60 mContext, mContext, mJobListener, FileOperations.createJobId(), stack, srcs,
CopyJobTest.java 82 CopyJob createJob(List<DocumentInfo> srcs, DocumentInfo srcParent, DocumentStack stack)
85 mContext, mContext, mJobListener, FileOperations.createJobId(), stack, srcs);
AbstractJobTest.java 88 final T createJob(List<Uri> srcs, Uri srcParent, Uri destination) throws Exception {
93 for (Uri src : srcs) {
100 abstract T createJob(List<DocumentInfo> srcs, DocumentInfo srcParent, DocumentStack destination)
  /external/opencv3/modules/imgproc/perf/opencl/
perf_3vs4.cpp 47 std::vector<UMat> srcs(3), dsts(3);
52 srcs[i] = UMat(srcSize, depth);
57 split(src, srcs);
59 for (size_t i = 0; i < srcs.size(); ++i)
60 resize(srcs[i], dsts[i], Size(), 0.5, 0.5, INTER_LINEAR);
101 std::vector<UMat> srcs(3), dsts(3);
106 srcs[i] = UMat(srcSize, depth);
111 split(src, srcs);
113 for (size_t i = 0; i < srcs.size(); ++i)
114 subtract(srcs[i], s, dsts[i])
    [all...]
  /system/core/adb/
bugreport.h 42 virtual bool DoSyncPull(const std::vector<const char*>& srcs, const char* dst, bool copy_attrs,
file_sync_service.h 68 bool do_sync_push(const std::vector<const char*>& srcs, const char* dst);
69 bool do_sync_pull(const std::vector<const char*>& srcs, const char* dst,
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLEngine.java     [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SinkChannelImpl.java 179 public long write(ByteBuffer[] srcs) throws IOException {
180 if (srcs == null)
191 n = IOUtil.write(fd, srcs, nd);
202 public long write(ByteBuffer[] srcs, int offset, int length)
205 if ((offset < 0) || (length < 0) || (offset > srcs.length - length))
207 return write(Util.subsequence(srcs, offset, length));
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.h 67 const LLVMValueRef *srcs, unsigned num_srcs,
  /ndk/build/tools/
build-ndk-sysroot.sh 232 srcs=`cd $1 && find . -type f`
234 srcs=`echo $srcs | sed -e "s%\./%%g"`
236 for src in $srcs; do
252 srcs=`cd $1 && find . -type f`
254 srcs=`echo $srcs | sed -e "s%\./%%g"`
256 for src in $srcs; do
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
A2dpSinkProfile.java 116 List<BluetoothDevice> srcs = getConnectedDevices();
117 if (srcs != null) {
118 for (BluetoothDevice src : srcs) {
125 for (BluetoothDevice src : srcs) {
171 List<BluetoothDevice> srcs = mService.getConnectedDevices();
172 if (!srcs.isEmpty()) {
173 if (mService.isA2dpPlaying(srcs.get(0))) {
PbapClientProfile.java 138 List<BluetoothDevice> srcs = getConnectedDevices(); local
139 if (srcs != null) {
140 for (BluetoothDevice src : srcs) {
147 for (BluetoothDevice src : srcs) {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
Job.java 293 String id, DocumentStack stack, List<DocumentInfo> srcs) {
294 assert(!srcs.isEmpty());
296 return new CopyJob(service, appContext, listener, id, stack, srcs);
300 String id, DocumentStack stack, List<DocumentInfo> srcs,
302 assert(!srcs.isEmpty());
304 return new MoveJob(service, appContext, listener, id, stack, srcs, srcParent);
308 String id, DocumentStack stack, List<DocumentInfo> srcs,
310 assert(!srcs.isEmpty());
314 return new DeleteJob(service, appContext, listener, id, stack, srcs, srcParent);
FileOperationService.java 160 List<DocumentInfo> srcs = intent.getParcelableArrayListExtra(EXTRA_SRC_LIST); local
164 job = createJob(operationType, jobId, srcs, srcParent, stack);
229 @OpType int operationType, String id, List<DocumentInfo> srcs, DocumentInfo srcParent,
232 if (srcs.isEmpty()) {
233 Log.w(TAG, "Ignoring job request with empty srcs list. Id: " + id);
239 + ". Ignoring job request for srcs: " + srcs + ", stack: " + stack + ".");
246 this, getApplicationContext(), this, id, stack, srcs);
249 this, getApplicationContext(), this, id, stack, srcs,
253 this, getApplicationContext(), this, id, stack, srcs,
    [all...]
  /external/opencv3/modules/cudev/test/
test_split_merge.cu 76 Mat srcs[] = {src1, src2};
77 cv::merge(srcs, 2, dst_gold);
100 Mat srcs[] = {src1, src2, src3};
101 cv::merge(srcs, 3, dst_gold);

Completed in 868 milliseconds

1 2 3 4 5 6 7 8