HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 301 - 325 of 11972) sorted by null

<<11121314151617181920>>

  /build/make/core/
java_library.mk 31 # java libraries produce javalib.jar, so we will copy classes.jar there too.
59 # is available as javalib.jar so copy it there too.
60 $(eval $(call copy-one-file,$(full_classes_proguard_jar),$(common_javalib.jar)))
62 $(eval $(call copy-one-file,$(full_classes_proguard_jar),$(LOCAL_BUILT_MODULE)))
86 $(eval $(call copy-one-file,$(dexpreopted_boot_jar),$(LOCAL_BUILT_MODULE)))
96 $(eval $(call dexpreopt-copy-jar,$(common_javalib.jar),$(LOCAL_BUILT_MODULE),$(LOCAL_DEX_PREOPT)))
101 $(eval $(call copy-one-file,$(common_javalib.jar),$(LOCAL_BUILT_MODULE)))
  /cts/tools/dasm/src/java_cup/
terminal_set.java 103 /* make a copy of the other set */
171 /* make a copy */
172 BitSet copy = (BitSet)_elements.clone(); local
177 /* changed if we are not the same as the copy */
178 return !_elements.equals(copy);
191 /* make a copy of the other set */
192 BitSet copy = (BitSet)other._elements.clone(); local
195 copy.xor(this._elements);
198 return !copy.equals(other._elements);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
SynchronizedSummaryStatistics.java 7 * the License. You may obtain a copy of the License at
45 * A copy constructor. Creates a deep-copy of the {@code original}.
47 * @param original the {@code SynchronizedSummaryStatistics} instance to copy
50 copy(original, this); method
302 * Returns a copy of this SynchronizedSummaryStatistics instance with the
305 * @return a copy of this
308 public synchronized SynchronizedSummaryStatistics copy() { method in class:SynchronizedSummaryStatistics
311 copy(this, result); method
320 * @param source SynchronizedSummaryStatistics to copy
324 public static void copy(SynchronizedSummaryStatistics source, method in class:SynchronizedSummaryStatistics
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Kurtosis.java 7 * the License. You may obtain a copy of the License at
82 * Copy constructor, creates a new {@code Kurtosis} identical
85 * @param original the {@code Kurtosis} instance to copy
88 copy(original, this); method
202 public Kurtosis copy() { method in class:Kurtosis
204 copy(this, result); method
212 * @param source Kurtosis to copy
213 * @param dest Kurtosis to copy to
216 public static void copy(Kurtosis source, Kurtosis dest) { method in class:Kurtosis
218 dest.moment = source.moment.copy();
    [all...]
Mean.java 7 * the License. You may obtain a copy of the License at
93 * Copy constructor, creates a new {@code Mean} identical
96 * @param original the {@code Mean} instance to copy
99 copy(original, this); method
252 public Mean copy() { method in class:Mean
254 copy(this, result); method
263 * @param source Mean to copy
264 * @param dest Mean to copy to
267 public static void copy(Mean source, Mean dest) { method in class:Mean
270 dest.moment = source.moment.copy();
    [all...]
Skewness.java 7 * the License. You may obtain a copy of the License at
75 * Copy constructor, creates a new {@code Skewness} identical
78 * @param original the {@code Skewness} instance to copy
81 copy(original, this); method
194 public Skewness copy() { method in class:Skewness
196 copy(this, result); method
204 * @param source Skewness to copy
205 * @param dest Skewness to copy to
208 public static void copy(Skewness source, Skewness dest) { method in class:Skewness
210 dest.moment = new ThirdMoment(source.moment.copy());
    [all...]
  /external/google-breakpad/src/processor/
linked_ptr.h 104 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
105 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/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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/googletest/googletest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
155 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
159 copy(&ptr);
165 copy(&ptr);
172 copy(&ptr);
213 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
  /external/libchrome/base/memory/
linked_ptr.h 84 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
85 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
89 copy(&ptr);
95 copy(&ptr);
102 copy(&ptr);
152 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:linked_ptr
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
155 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
159 copy(&ptr);
165 copy(&ptr);
172 copy(&ptr);
213 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/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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/gallium/auxiliary/renderonly/
renderonly.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
42 struct renderonly *copy; local
44 copy = CALLOC_STRUCT(renderonly);
45 if (!copy)
48 memcpy(copy, ro, sizeof(*ro));
50 return copy;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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/tensorflow/tensorflow/contrib/framework/python/ops/
arg_scope.py 5 # You may obtain a copy of the License at
136 current_scope = list_ops_or_scope.copy()
148 current_scope = current_arg_scope().copy()
155 current_kwargs = current_scope[key_op].copy()
159 current_scope[key_op] = kwargs.copy()
181 current_args = current_scope[key_func].copy()
  /external/v8/testing/gtest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
155 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
159 copy(&ptr);
165 copy(&ptr);
172 copy(&ptr);
213 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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/wayland/tests/
array-test.c 5 * a copy of this software and associated documentation files (the
7 * without limitation the rights to use, copy, modify, merge, publish,
106 struct wl_array copy; local
118 /* copy the array */
119 wl_array_init(&copy);
120 wl_array_copy(&copy, &source);
122 /* check the copy */
126 int *c = (int *)(copy.data + index);
134 wl_array_release(&copy);
  /frameworks/hardware/interfaces/sensorservice/libsensorndkbridge/
ASensorEventQueue.cpp 6 * You may obtain a copy of the License at
89 size_t copy = std::min(count, mQueue.size()); local
90 for (size_t i = 0; i < copy; ++i) {
93 mQueue.erase(mQueue.begin(), mQueue.begin() + copy);
95 LOG(VERBOSE) << "ASensorEventQueue::getEvents() returned " << copy << " events.";
97 return copy;
  /frameworks/native/opengl/tools/glgen/src/
GenerateEGL.java 6 * You may obtain a copy of the License at
26 private static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateEGL
52 copy(javaPath, glStream); method
53 copy(stubRoot + ".cpp", cStream);
96 copy("stubs/egl/" + suffix + "Header.java-if", egljStream);
97 copy("stubs/egl/" + suffix + "cHeader.cpp", eglcStream);
  /hardware/nxp/nfc/1.1/
Nfc.cpp 7 * You may obtain a copy of the License at
69 hidl_vec<uint8_t> copy = data; local
70 return phNxpNciHal_write(copy.size(), &copy[0]);
74 hidl_vec<uint8_t> copy = data; local
75 NFCSTATUS status = phNxpNciHal_core_initialized(&copy[0]);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
AdaptableX509CertSelector.java 14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
248 AdaptableX509CertSelector copy = local
251 copy.startDate = (Date)startDate.clone();
255 copy.endDate = (Date)endDate.clone();
259 copy.ski = ski.clone();
261 return copy;
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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

Completed in 2490 milliseconds

<<11121314151617181920>>