Searched refs:copy (Results 151 - 175 of 1287) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DArrayTableTest.java6 * You may obtain a copy of the License at
203 Table<String, Integer, Character> copy = ArrayTable.create(original);
204 assertEquals(original, copy);
207 assertEquals((Character) 'a', copy.get("foo", 1));
208 assertEquals(copy.rowKeySet(), original.rowKeySet());
209 assertEquals(copy.columnKeySet(), original.columnKeySet());
217 Table<String, Integer, Character> copy = ArrayTable.create(original);
218 assertEquals(4, copy.size());
219 assertEquals((Character) 'a', copy.get("foo", 1));
220 assertEquals((Character) 'b', copy
[all...]
H A DImmutableBiMapTest.java6 * You may obtain a copy of the License at
316 ImmutableBiMap<String, Integer> copy
318 assertEquals(Collections.<String, Integer>emptyMap(), copy);
319 assertSame(copy, ImmutableBiMap.copyOf(copy));
320 assertSame(ImmutableBiMap.of(), copy);
324 ImmutableBiMap<String, Integer> copy
326 assertMapEquals(copy, "one", 1);
327 assertSame(copy, ImmutableBiMap.copyOf(copy));
[all...]
H A DImmutableTableTest.java6 * You may obtain a copy of the License at
160 Table<R, C, V> copy = ImmutableTable.copyOf(original);
161 assertEquals(original, copy);
162 validateViewOrdering(original, copy);
171 Table<R, C, V> original, Table<R, C, V> copy) {
172 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
173 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
174 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
226 Table<Character, Integer, String> copy
230 ASSERT.that(copy
170 validateViewOrdering( Table<R, C, V> original, Table<R, C, V> copy) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DArrayTableTest.java6 * You may obtain a copy of the License at
205 Table<String, Integer, Character> copy = ArrayTable.create(original);
206 assertEquals(original, copy);
209 assertEquals((Character) 'a', copy.get("foo", 1));
210 assertEquals(copy.rowKeySet(), original.rowKeySet());
211 assertEquals(copy.columnKeySet(), original.columnKeySet());
219 Table<String, Integer, Character> copy = ArrayTable.create(original);
220 assertEquals(4, copy.size());
221 assertEquals((Character) 'a', copy.get("foo", 1));
222 assertEquals((Character) 'b', copy
[all...]
H A DHashMultimapTest.java6 * You may obtain a copy of the License at
87 HashMultimap<String, Integer> copy = HashMultimap.create(multimap);
88 assertEquals(multimap, copy);
89 assertEquals(2, copy.expectedValuesPerKey);
H A DImmutableTableTest.java6 * You may obtain a copy of the License at
161 Table<R, C, V> copy = ImmutableTable.copyOf(original);
162 assertEquals(original, copy);
163 validateViewOrdering(original, copy);
172 Table<R, C, V> original, Table<R, C, V> copy) {
173 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
174 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
175 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
227 Table<Character, Integer, String> copy
231 ASSERT.that(copy
171 validateViewOrdering( Table<R, C, V> original, Table<R, C, V> copy) argument
[all...]
/external/skia/include/core/
H A DSkTArray.h20 inline void copy(SkTArray<T, true>* self, int dst, int src) { function in namespace:SkTArrayExt
24 inline void copy(SkTArray<T, true>* self, const T* array) { function in namespace:SkTArrayExt
33 inline void copy(SkTArray<T, false>* self, int dst, int src) { function in namespace:SkTArrayExt
37 inline void copy(SkTArray<T, false>* self, const T* array) { function in namespace:SkTArrayExt
55 When MEM_COPY is false, T will be copy constructed / destructed.
97 * assign copy of array to this
106 SkTArrayExt::copy(this, static_cast<const T*>(array.fMemArray));
132 // set fCount to 0 before calling checkRealloc so that no copy cons. are called.
142 * Resets to a copy of a C array.
151 SkTArrayExt::copy(thi
[all...]
/external/deqp/scripts/build/
H A Dconfig.py11 # You may obtain a copy of the License at
25 import copy namespace
41 self.args = copy.copy(args)
59 self.extraBuildArgs = copy.copy(extraBuildArgs)
/external/google-breakpad/src/processor/
H A Dlinked_ptr.h105 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
106 linked_ptr(linked_ptr const& ptr) { copy(&ptr); }
111 copy(&ptr);
118 copy(&ptr);
164 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:google_breakpad::linked_ptr
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
212 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
H A DListSubListTester.java6 * You may obtain a copy of the License at
222 List<E> copy = list.subList(0, size);
225 assertEquals(list.get(0), copy.get(0));
226 assertEquals(list.get(size - 1), copy.get(size - 1));
231 for (List<E> subList : Arrays.asList(copy, head, tail)) {
246 List<E> copy = list.subList(0, size);
249 assertTrue(copy.contains(list.get(0)));
253 assertTrue(copy.contains(list.get(size - 1)));
264 List<E> copy = list.subList(0, size);
267 assertEquals(copy
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListSubListTester.java6 * You may obtain a copy of the License at
226 List<E> copy = list.subList(0, size);
229 assertEquals(list.get(0), copy.get(0));
230 assertEquals(list.get(size - 1), copy.get(size - 1));
235 for (List<E> subList : Arrays.asList(copy, head, tail)) {
250 List<E> copy = list.subList(0, size);
253 assertTrue(copy.contains(list.get(0)));
257 assertTrue(copy.contains(list.get(size - 1)));
268 List<E> copy = list.subList(0, size);
271 assertEquals(copy
[all...]
/external/eigen/bench/btl/libs/BLAS/
H A Dblas_interface_impl.hh68 BLAS_FUNC(copy)(&N2, X, &intone, C, &intone);
77 BLAS_FUNC(copy)(&N2, X, &intone, C, &intone);
86 BLAS_FUNC(copy)(&N, B, &intone, X, &intone);
91 BLAS_FUNC(copy)(&N, B, &intone, X, &intone);
103 BLAS_FUNC(copy)(&N2, X, &intone, C, &intone);
117 BLAS_FUNC(copy)(&N2, X, &inc, C, &inc);
133 BLAS_FUNC(copy)(&N2, X, &inc, C, &inc);
/external/libxml2/
H A DtestHTML.c43 static int copy = 0; variable
762 * test intermediate copy if needed.
764 if (copy) {
811 if ((!strcmp(argv[i], "-copy")) || (!strcmp(argv[i], "--copy")))
812 copy++;
854 printf("Usage : %s [--debug] [--copy] [--copy] HTMLfiles ...\n",
860 printf("\t--copy : used to test the internal copy implementatio
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java131 return copy();
134 public PKIXPolicyNode copy() method in class:PKIXPolicyNode
161 PKIXPolicyNode _child = ((PKIXPolicyNode)_iter.next()).copy();
/external/guava/guava/src/com/google/common/collect/
H A DCartesianList.java5 * in compliance with the License. You may obtain a copy of the License at
44 List<E> copy = ImmutableList.copyOf(list);
45 if (copy.isEmpty()) {
48 axesBuilder.add(copy);
/external/mesa3d/src/glsl/
H A Dlower_output_reads.cpp6 * copy of this software and associated documentation files (the "Software"),
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
37 * main() function to copy the final values to the actual shader outputs.
109 * Create an assignment to copy a temporary value back to the actual output.
112 copy(void *ctx, ir_variable *output, ir_variable *temp) function
119 /** Insert a copy-back assignment before a "return" statement */
124 ir->insert_before(copy(ir, (ir_variable *) key, (ir_variable *) data));
127 /** Insert a copy-back assignment at the end of the main() function */
132 sig->body.push_tail(copy(sig, (ir_variable *) key, (ir_variable *) data));
/external/openfst/src/include/fst/
H A Dprune.h5 // You may obtain a copy of the License at
252 vector<StateId> copy; local
259 while (copy.size() <= s)
260 copy.push_back(kNoStateId);
261 copy[s] = ofst->AddState();
262 ofst->SetStart(copy[s]);
278 ofst->SetFinal(copy[s], ifst.Final(s));
297 while (copy.size() <= arc.nextstate)
298 copy.push_back(kNoStateId);
299 if (copy[ar
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DSemiVariance.java7 * the License. You may obtain a copy of the License at
135 * @param original the {@code SemiVariance} instance to copy
138 copy(original, this);
146 public SemiVariance copy() { method in class:SemiVariance
148 copy(this, result);
157 * @param source SemiVariance to copy
158 * @param dest SemiVariance to copy to
161 public static void copy(final SemiVariance source, SemiVariance dest) { method in class:SemiVariance
/external/boringssl/src/util/bot/go/
H A Denv.py33 old = os.environ.copy()
/external/clang/lib/AST/
H A DDeclOpenMP.cpp52 std::copy(VL.begin(), VL.end(), Vars);

Completed in 3303 milliseconds

1234567891011>>