HomeSort by relevance Sort by last modified time
    Searched refs:duplicate (Results 76 - 100 of 1074) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/
func1.go 17 func f2(a int) (a int, b float32) { // ERROR "duplicate argument a|definition"
  /hardware/intel/common/libmix/mix_video/src/
mixvideoconfigparamsdec_mp42.c 105 * @returns: a newly allocated duplicate of the object.
107 * Copy duplicate of the object.
115 MixVideoConfigParamsDecMP42 *duplicate = mix_videoconfigparamsdec_mp42_new(); local
116 LOG_V( "duplicate = 0x%x\n", duplicate);
117 if (mix_videoconfigparamsdec_mp42_copy(MIX_PARAMS(duplicate), MIX_PARAMS(
119 ret = MIX_PARAMS(duplicate);
121 mix_videoconfigparamsdec_mp42_unref(duplicate);
mixbuffer.c 89 * @returns: a newly allocated duplicate of the object.
91 * Copy duplicate of the object.
98 MixBuffer *duplicate = mix_buffer_new(); local
99 if (mix_buffer_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
100 ret = MIX_PARAMS(duplicate);
102 mix_buffer_unref(duplicate);
124 // Duplicate string
mixdisplayx11.c 80 * @returns: a newly allocated duplicate of the object.
82 * Copy duplicate of the object.
89 MixDisplayX11 *duplicate = mix_displayx11_new(); local
90 if (mix_displayx11_copy(MIX_DISPLAY(duplicate), MIX_DISPLAY(obj))) {
91 ret = MIX_DISPLAY(duplicate);
93 mix_displayx11_unref(duplicate);
mixvideodecodeparams.c 84 * @returns: a newly allocated duplicate of the object.
86 * Copy duplicate of the object.
93 MixVideoDecodeParams *duplicate = mix_videodecodeparams_new(); local
94 if (mix_videodecodeparams_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
95 ret = MIX_PARAMS(duplicate);
97 mix_videodecodeparams_unref(duplicate);
mixvideoencodeparams.c 84 * @returns: a newly allocated duplicate of the object.
86 * Copy duplicate of the object.
93 MixVideoEncodeParams *duplicate = mix_videoencodeparams_new(); local
94 if (mix_videoencodeparams_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
95 ret = MIX_PARAMS(duplicate);
97 mix_videoencodeparams_unref(duplicate);
mixvideoinitparams.c 88 * @returns: a newly allocated duplicate of the object.
90 * Copy duplicate of the object.
96 MixVideoInitParams *duplicate = mix_videoinitparams_new(); local
97 if (mix_videoinitparams_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
98 ret = MIX_PARAMS(duplicate);
100 mix_videoinitparams_unref(duplicate);
122 /* duplicate display */
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
ReadOnlyCharBufferTest.java 53 CharBuffer duplicate = buf.duplicate(); local
54 assertEquals(buf.hashCode(), duplicate.hashCode());
  /external/javassist/sample/duplicate/
Ball.java 1 package sample.duplicate;
DuplicatedObject.java 1 package sample.duplicate;
  /external/mesa3d/
SConstruct 127 duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
143 duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
  /external/tpm2/
Duplicate_fp.h 21 TPM2B_PRIVATE duplicate; member in struct:__anon40348
25 // Executes Duplicate with request handles and parameters from
Import_fp.h 16 TPM2B_PRIVATE duplicate; member in struct:__anon40411
  /hardware/intel/common/libmix/mix_audio/src/
mixacpwma.c 83 * @returns: a newly allocated duplicate of the object.
85 * Copy duplicate of the object.
93 MixAudioConfigParamsWMA *duplicate = mix_acp_wma_new(); local
94 if (mix_acp_wma_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj)))
96 ret = MIX_PARAMS(duplicate);
100 mix_acp_wma_unref(duplicate);
  /packages/apps/Dialer/java/com/android/dialer/speeddial/
SpeedDialCursor.java 70 boolean duplicate = false;
71 // Iterate backwards through the cursor to check that this isn't a duplicate contact
73 while (strequentCursor.moveToPrevious() && !duplicate) {
74 duplicate |=
78 if (duplicate) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
mapdir.s 2 # generated. This could lead to duplicate mapping symbols at
  /libcore/ojluni/src/main/java/java/nio/
StringCharBuffer.java 63 public CharBuffer duplicate() { method in class:StringCharBuffer
69 return duplicate();
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug200.go 17 case func(f int): // ERROR "duplicate"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug200.go 17 case func(f int): // ERROR "duplicate"
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
ts_parser.cpp 257 timestamp *element = NULL,*duplicate = NULL; local
278 duplicate = NULL;
280 duplicate = &phead->input_timestamps[i];
295 if (is_interlaced && duplicate) {
297 duplicate->in_use = false;
298 } else if (is_interlaced && !duplicate) {
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
ts_parser.cpp 257 timestamp *element = NULL,*duplicate = NULL; local
278 duplicate = NULL;
280 duplicate = &phead->input_timestamps[i];
295 if (is_interlaced && duplicate) {
297 duplicate->in_use = false;
298 } else if (is_interlaced && !duplicate) {
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
ts_parser.cpp 257 timestamp *element = NULL,*duplicate = NULL; local
278 duplicate = NULL;
280 duplicate = &phead->input_timestamps[i];
295 if (is_interlaced && duplicate) {
297 duplicate->in_use = false;
298 } else if (is_interlaced && !duplicate) {
  /external/skia/include/core/
SkStream.h 107 std::unique_ptr<SkStream> duplicate() const { function in class:SkStream
151 /** SkStreamRewindable is a SkStream for which rewind and duplicate are required. */
155 std::unique_ptr<SkStreamRewindable> duplicate() const { function in class:SkStreamRewindable
165 std::unique_ptr<SkStreamSeekable> duplicate() const { function in class:SkStreamSeekable
188 std::unique_ptr<SkStreamAsset> duplicate() const { function in class:SkStreamAsset
204 std::unique_ptr<SkStreamMemory> duplicate() const { function in class:SkStreamMemory
316 std::unique_ptr<SkStreamAsset> duplicate() const { function in class:SkFILEStream
393 std::unique_ptr<SkMemoryStream> duplicate() const { function in class:SkMemoryStream
  /external/skqp/include/core/
SkStream.h 107 std::unique_ptr<SkStream> duplicate() const { function in class:SkStream
151 /** SkStreamRewindable is a SkStream for which rewind and duplicate are required. */
155 std::unique_ptr<SkStreamRewindable> duplicate() const { function in class:SkStreamRewindable
165 std::unique_ptr<SkStreamSeekable> duplicate() const { function in class:SkStreamSeekable
188 std::unique_ptr<SkStreamAsset> duplicate() const { function in class:SkStreamAsset
204 std::unique_ptr<SkStreamMemory> duplicate() const { function in class:SkStreamMemory
314 std::unique_ptr<SkStreamAsset> duplicate() const { function in class:SkFILEStream
391 std::unique_ptr<SkMemoryStream> duplicate() const { function in class:SkMemoryStream
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 61 duplicate = super
62 @debug_listener.create_node duplicate
63 return duplicate

Completed in 1629 milliseconds

1 2 34 5 6 7 8 91011>>