Searched refs:duplicate (Results 1 - 25 of 142) sorted by relevance

123456

/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListRemoveTester.java41 E duplicate = arrayAndDuplicate.duplicate;
43 int firstIndex = getList().indexOf(duplicate);
46 getList().remove(duplicate));
47 assertTrue("After remove(duplicate), a list should still contain "
48 + "the duplicate element", getList().contains(duplicate));
49 assertFalse("remove(duplicate) should remove the first instance of the "
50 + "duplicate element in the list",
51 firstIndex == getList().indexOf(duplicate));
[all...]
H A DListRemoveAllTester.java43 E duplicate = arrayAndDuplicate.duplicate;
46 getList().removeAll(MinimalCollection.of(duplicate)));
49 getList().contains(duplicate));
/external/chromium_org/media/cast/net/rtp/
H A Dframer_unittest.cc48 bool duplicate = false; local
52 &payload_[0], payload_.size(), rtp_header_, &duplicate);
59 &payload_[0], payload_.size(), rtp_header_, &duplicate);
75 bool duplicate = false; local
80 &payload_[0], payload_.size(), rtp_header_, &duplicate);
96 &payload_[0], payload_.size(), rtp_header_, &duplicate);
105 &payload_[0], payload_.size(), rtp_header_, &duplicate);
115 bool duplicate = false; local
120 duplicate = true;
122 &payload_[0], payload_.size(), rtp_header_, &duplicate);
211 bool duplicate = false; local
241 bool duplicate = false; local
276 bool duplicate = false; local
291 bool duplicate = false; local
315 bool duplicate = false; local
342 bool duplicate = false; local
408 bool duplicate = false; local
457 bool duplicate = false; local
[all...]
H A Dframer.h35 // complete frame. If a duplicate packet for an already complete frame is
36 // received, the function returns false but sets |duplicate| to true.
40 bool* duplicate);
/external/llvm/test/MC/ARM/
H A Deh-directive-movsp.s7 .section .duplicate
9 .global duplicate
10 .type duplicate,%function
11 duplicate: label
20 @ CHECK: Name: .ARM.exidx.duplicate
/external/chromium_org/chrome/common/extensions/docs/examples/howto/tab_shortcuts/
H A Dtab_shortcuts.js15 else if (command == 'duplicate-tab')
16 chrome.tabs.duplicate(tab.id);
/external/javassist/sample/duplicate/
H A DMain.java1 package sample.duplicate;
21 First, run sample.duplicate.Viewer without a metaobject.
23 % java sample.duplicate.Viewer
28 of sample.duplicate.DuplicatedObject.
30 % java sample.duplicate.Main
33 sample.duplicate.Viewer is loaded by javassist.tools.reflect.Loader so that
39 cl.makeReflective("sample.duplicate.Ball",
40 "sample.duplicate.DuplicatedObject",
42 cl.run("sample.duplicate.Viewer", args);
H A DBall.java1 package sample.duplicate;
H A DDuplicatedObject.java1 package sample.duplicate;
H A DViewer.java1 package sample.duplicate;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DUnknownEntry.java37 this.content = (ByteBuffer) content.duplicate().rewind();
42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind();
47 return content.duplicate();
52 ByteBuffer bb = content.duplicate();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractContainerTester.java175 public final E duplicate; field in class:AbstractContainerTester.ArrayWithDuplicate
177 private ArrayWithDuplicate(E[] elements, E duplicate) { argument
179 this.duplicate = duplicate;
184 * @return an array of the proper size with a duplicate element.
189 E duplicate = elements[(elements.length / 2) - 1];
190 elements[(elements.length / 2) + 1] = duplicate;
191 return new ArrayWithDuplicate<E>(elements, duplicate);
/external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DSharedBufferHandleImpl.java39 * @see SharedBufferHandle#duplicate(DuplicateOptions)
42 public SharedBufferHandle duplicate(DuplicateOptions options) { method in class:SharedBufferHandleImpl
43 return mCore.duplicate(this, options);
/external/chromium_org/components/omnibox/
H A Dbase_search_provider_unittest.cc152 AutocompleteMatch duplicate = match.duplicate_matches[0]; local
159 EXPECT_EQ(answer_contents, duplicate.answer_contents);
160 EXPECT_EQ(answer_type, duplicate.answer_type);
161 EXPECT_EQ(AutocompleteMatchType::SEARCH_SUGGEST, duplicate.type);
162 EXPECT_EQ(850, duplicate.relevance);
180 duplicate = match.duplicate_matches[0];
187 EXPECT_EQ(answer_contents, duplicate.answer_contents);
188 EXPECT_EQ(answer_type, duplicate.answer_type);
189 EXPECT_EQ(AutocompleteMatchType::SEARCH_SUGGEST, duplicate.type);
190 EXPECT_EQ(850, duplicate
[all...]
/external/chromium_org/third_party/mesa/src/
H A DSConstruct128 duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
144 duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
/external/mesa3d/
H A DSConstruct128 duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
144 duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
/external/chromium_org/base/win/
H A Dscoped_process_information_unittest.cc127 base::win::ScopedProcessInformation duplicate; local
128 duplicate.DuplicateFrom(process_info);
132 ASSERT_EQ(duplicate.process_id(), process_info.process_id());
134 ASSERT_EQ(duplicate.thread_id(), process_info.thread_id());
143 ASSERT_TRUE(base::WaitForExitCode(duplicate.TakeProcessHandle(),
148 ASSERT_TRUE(::CloseHandle(duplicate.TakeThreadHandle()));
/external/chromium_org/third_party/skia/include/core/
H A DSkStream.h93 virtual SkStreamRewindable* duplicate() const { return NULL; } function in class:SkStream
133 /** SkStreamRewindable is a SkStream for which rewind and duplicate are required. */
137 virtual SkStreamRewindable* duplicate() const SK_OVERRIDE = 0;
143 virtual SkStreamSeekable* duplicate() const SK_OVERRIDE = 0;
155 virtual SkStreamAsset* duplicate() const SK_OVERRIDE = 0;
165 virtual SkStreamMemory* duplicate() const SK_OVERRIDE = 0;
255 virtual SkStreamAsset* duplicate() const SK_OVERRIDE;
327 virtual SkMemoryStream* duplicate() const SK_OVERRIDE;
/external/skia/include/core/
H A DSkStream.h99 virtual SkStreamRewindable* duplicate() const { return NULL; } function in class:SkStream
139 /** SkStreamRewindable is a SkStream for which rewind and duplicate are required. */
143 virtual SkStreamRewindable* duplicate() const SK_OVERRIDE = 0;
149 virtual SkStreamSeekable* duplicate() const SK_OVERRIDE = 0;
161 virtual SkStreamAsset* duplicate() const SK_OVERRIDE = 0;
171 virtual SkStreamMemory* duplicate() const SK_OVERRIDE = 0;
271 virtual SkStreamAsset* duplicate() const SK_OVERRIDE;
343 virtual SkMemoryStream* duplicate() const SK_OVERRIDE;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Ddebug.rb61 duplicate = super
62 @debug_listener.create_node duplicate
63 return duplicate
/external/chromium_org/third_party/skia/dm/
H A DDMPDFTask.cpp89 (*this, pdfData->duplicate(), fRasterize)));
93 (*this, sourceType, pdfData->duplicate(), ".pdf")));
/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
H A DSharedBufferHandle.java89 * |SharedBufferHandle#duplicate|
143 public SharedBufferHandle duplicate(DuplicateOptions options); method in interface:SharedBufferHandle
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
H A Dvp9_iht4x4_add_neon.asm73 vdup.32 q8, r0 ; duplicate sinpi_3_9
103 vdup.16 d0, r0 ; duplicate cospi_8_64
104 vdup.16 d1, r3 ; duplicate cospi_16_64
105 vdup.16 d2, r12 ; duplicate cospi_24_64
122 vdup.16 d3, r0 ; duplicate sinpi_1_9
128 vdup.16 d4, r3 ; duplicate sinpi_2_9
129 vdup.16 d5, r12 ; duplicate sinpi_4_9
130 vdup.16 q3, r0 ; duplicate sinpi_3_9
/external/chromium_org/third_party/skia/tests/
H A DStreamTest.cpp61 SkAutoTUnref<SkStreamAsset> stream2(stream.duplicate());
71 SkAutoTUnref<SkStreamAsset> stream2(stream.duplicate());
99 SkAutoTUnref<SkStreamAsset> stream2(stream->duplicate());
128 SkAutoTUnref<SkStreamAsset> stream2(stream->duplicate());
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_iht4x4_add_neon.asm73 vdup.32 q8, r0 ; duplicate sinpi_3_9
103 vdup.16 d0, r0 ; duplicate cospi_8_64
104 vdup.16 d1, r3 ; duplicate cospi_16_64
105 vdup.16 d2, r12 ; duplicate cospi_24_64
122 vdup.16 d3, r0 ; duplicate sinpi_1_9
128 vdup.16 d4, r3 ; duplicate sinpi_2_9
129 vdup.16 d5, r12 ; duplicate sinpi_4_9
130 vdup.16 q3, r0 ; duplicate sinpi_3_9

Completed in 7848 milliseconds

123456