Searched defs:source (Results 1 - 25 of 1548) sorted by relevance

1234567891011>>

/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCVideoTrack.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
37 @property(nonatomic, readonly) RTCVideoSource* source; variable
40 source:(RTCVideoSource*)source
/external/libchrome/base/
H A Dbit_cast.h2 // Use of this source code is governed by a BSD-style license that can be
15 // of "*reinterpret_cast<Dest*>(&source)". We need this in very low-level
63 inline Dest bit_cast(const Source& source) { argument
65 "bit_cast requires source and destination to be the same size");
96 memcpy(&dest, &source, sizeof(dest));
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
H A Dconvert_to_auto_ptr.pass.cpp24 source() function
32 std::auto_ptr<A> ap2(source());
/external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/
H A Dref_1.fail.cpp24 const A source() {return A();} function
28 std::reference_wrapper<const A> r = std::ref(source());
/external/skia/gm/
H A Ddraw_bitmap_rect_skbug4374.cpp4 * Use of this source code is governed by a BSD-style license that can be
11 SkBitmap source; local
12 if (GetResourceAsBitmap("randPixels.png", &source)) {
13 SkRect rect = SkRect::Make(source.bounds());
17 canvas->drawBitmapRect(source, rect, dst, nullptr);
/external/syslinux/com32/lib/
H A Dchrreplace.c3 /* Replace char 'old' by char 'new' in source */
4 void chrreplace(char *source, char old, char new) argument
6 while (*source) {
7 source++;
8 if (source[0] == old) source[0]=new;
/external/webrtc/talk/app/webrtc/
H A Dlocalaudiosource_unittest.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
57 rtc::scoped_refptr<LocalAudioSource> source = local
61 EXPECT_EQ(rtc::Optional<bool>(false), source->options().echo_cancellation);
62 EXPECT_EQ(rtc::Optional<bool>(true), source->options().extended_filter_aec);
63 EXPECT_EQ(rtc::Optional<bool>(true), source->options().delay_agnostic_aec);
64 EXPECT_EQ(rtc::Optional<bool>(true), source->options().auto_gain_control);
65 EXPECT_EQ(rtc::Optional<bool>(true), source->options().experimental_agc);
66 EXPECT_EQ(rtc::Optional<bool>(false), source->options().noise_suppression);
67 EXPECT_EQ(rtc::Optional<bool>(true), source
73 rtc::scoped_refptr<LocalAudioSource> source = local
86 rtc::scoped_refptr<LocalAudioSource> source = local
98 rtc::scoped_refptr<LocalAudioSource> source = local
111 rtc::scoped_refptr<LocalAudioSource> source = local
[all...]
/external/webrtc/webrtc/base/
H A Durlencode_unittest.cc4 * 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.
20 char source[] = "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" local
23 ASSERT_EQ(0, UrlEncode(source, dest, arraysize(dest)));
27 ASSERT_EQ(0, UrlEncode(source, dest, 0));
32 char source[] = "^"; local
34 ASSERT_EQ(3, UrlEncode(source, dest, arraysize(dest)));
42 char source[] = "aa"; local
44 ASSERT_EQ(2, UrlEncode(source, des
51 char source[] = "&"; local
58 char source[] = "A^ "; local
65 char source[] = "A^ "; local
73 char source[] = "A%5E+"; local
80 char source[] = "A%5E+"; local
[all...]
/external/autotest/frontend/client/src/autotest/common/
H A DSimpleCallback.java4 public void doCallback(Object source); argument
H A DSimpleChangeListener.java4 public void onChange(Object source); argument
/external/libtextclassifier/util/base/
H A Dcasts.h25 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
84 inline Dest bit_cast(const Source &source) { argument
88 memcpy(&dest, &source, sizeof(dest));
/external/libvpx/libvpx/vpx_dsp/
H A Dbitwriter.c4 * 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) { argument
19 br->buffer = source;
/external/parameter-framework/upstream/utility/
H A DBinaryCopy.hpp5 * Redistribution and use in source and binary forms, with or without modification,
8 * 1. Redistributions of source code must retain the above copyright notice, this
45 * The source and the destination must have the same storage size (e.g. copying
48 * @tparam Source The source type
51 * @param source Source variable
52 * @returns the source, reinterpreted as the destination type
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source) argument
60 using Destination_ = decltype(binaryCopy<Destination>(source));
64 Source source; member in union:utility::__anon15557
68 hack.source
[all...]
/external/webrtc/webrtc/modules/audio_processing/transient/
H A Dfile_utils.h4 * 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.
24 inline Dest bit_cast(const Source& source) { argument
30 memcpy(&dest, &source, sizeof(dest));
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DPlotListener.java27 * Fired immediately before the Plot "source" is drawn onto canvas.
31 * @param source
34 public void onBeforeDraw(Plot source, Canvas canvas); argument
37 * Fired immediately after the Plot "source" is drawn onto canvas.
41 * @param source
44 public void onAfterDraw(Plot source, Canvas canvas); argument
/external/apache-harmony/support/src/test/java/tests/support/
H A DStreams.java36 public static byte[] streamToBytes(InputStream source) throws IOException { argument
40 while ((count = source.read(buffer)) != -1) {
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkSpirVProgram.cpp34 << tcu::TestLog::SpirVAssemblySource(shaderInfo.source)
44 tcu::TestLog& operator<< (tcu::TestLog& log, const SpirVAsmSource& source) argument
47 << tcu::TestLog::SpirVAssemblySource(source.source)
/external/eigen/unsupported/test/
H A Dcxx11_tensor_empty.cpp17 Tensor<float, 2> source; local
18 Tensor<float, 2> tgt1 = source;
19 Tensor<float, 2> tgt2(source);
27 TensorFixedSize<float, Sizes<0> > source; local
28 TensorFixedSize<float, Sizes<0> > tgt1 = source;
29 TensorFixedSize<float, Sizes<0> > tgt2(source);
/external/guava/guava/src/com/google/common/eventbus/
H A DSubscriberFindingStrategy.java30 * Finds all suitable event subscriber methods in {@code source}, organizes them
33 * @param source object whose subscribers are desired.
37 * @throws IllegalArgumentException if {@code source} is not appropriate for
40 Multimap<Class<?>, EventSubscriber> findAllSubscribers(Object source); argument
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DStringTransform.java22 * @param source text to be transformed (eg lowercased)
26 public String transform(String source); argument
H A DTransform.java24 * @param source to be transformed (eg lowercased)
27 public D transform(S source); argument
/external/icu/icu4c/source/test/intltest/
H A Dmnkytst.h49 const UnicodeString source; member in class:CollationMonkeyTest
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DStringTransform.java21 * @param source text to be transformed (eg lowercased)
26 public String transform(String source); argument
H A DTransform.java23 * @param source to be transformed (eg lowercased)
27 public D transform(S source); argument
/external/kernel-headers/original/uapi/linux/
H A Divtvfb.h30 void __user *source; member in struct:ivtvfb_dma_frame

Completed in 866 milliseconds

1234567891011>>