HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 226 - 250 of 9280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
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/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/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/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/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/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
  /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);
GenerateGL.java 6 * You may obtain a copy of the License at
26 static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateGL
53 copy("stubs/jsr239/" + fname +
55 copy("stubs/jsr239/" + fname + ".java-impl", glImplStream);
56 copy("stubs/jsr239/" + fname + ".cpp", cStream);
153 copy("stubs/jsr239/GL10Header.java-if", gl10Stream);
154 copy("stubs/jsr239/GL10ExtHeader.java-if", gl10ExtStream);
155 copy("stubs/jsr239/GL11Header.java-if", gl11Stream);
156 copy("stubs/jsr239/GL11ExtHeader.java-if", gl11ExtStream);
157 copy("stubs/jsr239/GL11ExtensionPackHeader.java-if", gl11ExtPackStream)
    [all...]
  /ndk/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
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_defaultdict.py 4 import copy
98 d2 = d1.copy()
103 d3 = d1.copy()
108 d4 = d1.copy()
115 # Issue 6637: Copy fails for empty default dict
118 e = d.copy()
123 d2 = copy.copy(d1)
127 d2 = copy.copy(d1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_defaultdict.py 4 import copy
98 d2 = d1.copy()
103 d3 = d1.copy()
108 d4 = d1.copy()
115 # Issue 6637: Copy fails for empty default dict
118 e = d.copy()
123 d2 = copy.copy(d1)
127 d2 = copy.copy(d1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_defaultdict.py 4 import copy
98 d2 = d1.copy()
103 d3 = d1.copy()
108 d4 = d1.copy()
115 # Issue 6637: Copy fails for empty default dict
118 e = d.copy()
123 d2 = copy.copy(d1)
127 d2 = copy.copy(d1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_defaultdict.py 4 import copy
98 d2 = d1.copy()
103 d3 = d1.copy()
108 d4 = d1.copy()
115 # Issue 6637: Copy fails for empty default dict
118 e = d.copy()
123 d2 = copy.copy(d1)
127 d2 = copy.copy(d1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationTest.java 6 * You may obtain a copy of the License at
126 Configuration copy = Configuration.copy(configuration); local
127 assertEquals(locale, copy.getLocale());
128 assertEquals("foo.bar.FooActivity", copy.getActivity());
129 assertEquals("@android:style/Theme.Holo.Light", copy.getTheme());
130 assertEquals(devices.get(0), copy.getDevice());
137 assertTrue(copy.getFullConfig().getLocaleQualifier().equals(locale.qualifier));
138 assertEquals(locale, copy.getLocale());
139 assertEquals("foo.bar.FooActivity", copy.getActivity())
    [all...]
  /external/libchrome/crypto/
rsa_private_key_openssl.cc 106 RSAPrivateKey* copy = new RSAPrivateKey();
107 copy->key_ = EVP_PKEY_up_ref(key);
108 return copy;
120 RSAPrivateKey* RSAPrivateKey::Copy() const {
121 scoped_ptr<RSAPrivateKey> copy(new RSAPrivateKey());
125 copy->key_ = EVP_PKEY_new();
126 if (!EVP_PKEY_set1_RSA(copy->key_, rsa.get()))
128 return copy.release();
  /external/llvm/tools/msbuild/
install.bat 55 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2010.props %D%\LLVM-vs2010
57 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2010.targets %D%\LLVM-vs2010
66 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012.props %D%\LLVM-vs2012
68 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012.targets %D%\LLVM-vs2012
72 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012_xp.props %D%\LLVM-vs2012_xp
74 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012_xp.targets %D%\LLVM-vs2012_xp
83 copy %PLATFORM%\toolset-vs2013.props %D%\LLVM-vs2013\toolset.props
85 copy %PLATFORM%\toolset-vs2013.targets %D%\LLVM-vs2013\toolset.targets
89 copy %PLATFORM%\toolset-vs2013_xp.props %D%\LLVM-vs2013_xp\toolset.props
91 copy %PLATFORM%\toolset-vs2013_xp.targets %D%\LLVM-vs2013_xp\toolset.targets
    [all...]
  /external/opencv3/3rdparty/zlib/
infback.c 263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy = left
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
copy.hpp 7 // copy or use the software.
60 __global__ void copy(const SrcPtr src, GlobPtr<DstType> dst, const MaskPtr mask, const int rows, const int cols) function in namespace:cv::cudev::grid_copy_detail
72 __host__ void copy(const SrcPtr& src, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream) function in namespace:cv::cudev::grid_copy_detail
77 copy<<<grid, block, 0, stream>>>(src, dst, mask, rows, cols);
87 __device__ static void copy(const SrcPtrTuple& src, DstPtrTuple& dst, const int y, const int x) function in struct:cv::cudev::grid_copy_detail::Unroll
93 Unroll<count - 1>::copy(src, dst, y, x);
99 __device__ __forceinline__ static void copy(const SrcPtrTuple&, DstPtrTuple&, const int, const int) function in struct:cv::cudev::grid_copy_detail::Unroll
113 Unroll<tuple_size<SrcPtrTuple>::value>::copy(src, dst, y, x);
  /external/pdfium/third_party/zlib_v128/
infback.c 263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy = left
    [all...]
  /external/zlib/src/
infback.c 263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy = left
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveDataSource.cpp 6 * You may obtain a copy of the License at
114 size_t copy = size - sizeDone; local
116 if (copy > buffer->size()) {
117 copy = buffer->size();
120 memcpy((uint8_t *)data + sizeDone, buffer->data(), copy);
122 sizeDone += copy;
124 buffer->setRange(buffer->offset() + copy, buffer->size() - copy);
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
BluetoothPacketEncoder.java 6 * You may obtain a copy of the License at
117 int copy = mAccumulationBuffer.length - mAccumulatedBytes;
118 if (copy > remaining) copy = remaining;
119 System.arraycopy(msg, offset, mAccumulationBuffer, mAccumulatedBytes, copy);
120 mAccumulatedBytes += copy;
121 offset += copy;
122 remaining -= copy;
148 // now copy data bytes

Completed in 1335 milliseconds

1 2 3 4 5 6 7 8 91011>>