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

<<11121314151617181920>>

  /prebuilts/ndk/r16/sources/third_party/vulkan/src/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
  /tools/tradefederation/core/src/com/android/tradefed/build/
SdkFolderBuildInfo.java 6 * You may obtain a copy of the License at
152 SdkFolderBuildInfo copy = new SdkFolderBuildInfo(getBuildId(), getBuildTargetName()); local
153 copy.addAllBuildAttributes(this);
156 copy.setSdkBuild(sdkBuildClone);
158 copy.setFolderBuild(folderBuildClone);
159 return copy;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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...]
  /external/python/cpython2/Lib/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...]
  /external/python/cpython3/Lib/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...]
test_xml_dom_minicompat.py 3 import copy
107 copied = copy.copy(node_list)
114 copied = copy.copy(node_list)
123 copied = copy.deepcopy(node_list)
130 copied = copy.deepcopy(node_list)
  /frameworks/native/opengl/tools/glgen/src/
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...]
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 if (copy > left) copy = left;
    [all...]
  /external/libchrome/crypto/
rsa_private_key.cc 63 std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey);
65 copy->key_.reset(key);
66 return copy;
73 std::unique_ptr<RSAPrivateKey> RSAPrivateKey::Copy() const {
74 std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey);
78 copy->key_.reset(EVP_PKEY_new());
79 if (!EVP_PKEY_set1_RSA(copy->key_.get(), rsa.get()))
81 return copy;
  /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/protobuf/objectivec/google/protobuf/
Api.pbobjc.h 55 @property(nonatomic, readwrite, copy, null_resettable) NSString *name;
87 @property(nonatomic, readwrite, copy, null_resettable) NSString *version;
129 @property(nonatomic, readwrite, copy, null_resettable) NSString *name;
132 @property(nonatomic, readwrite, copy, null_resettable) NSString *requestTypeURL;
138 @property(nonatomic, readwrite, copy, null_resettable) NSString *responseTypeURL;
248 @property(nonatomic, readwrite, copy, null_resettable) NSString *name;
252 @property(nonatomic, readwrite, copy, null_resettable) NSString *root;
  /external/python/cpython2/Modules/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/python/cpython3/Modules/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/syslinux/com32/lib/zlib/
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 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
122 int copy = mAccumulationBuffer.length - mAccumulatedBytes;
123 if (copy > remaining) copy = remaining;
124 System.arraycopy(msg, offset, mAccumulationBuffer, mAccumulatedBytes, copy);
125 mAccumulatedBytes += copy;
126 offset += copy;
127 remaining -= copy;
153 // now copy data bytes
  /prebuilts/devtools/tools/
android.bat 6 rem You may obtain a copy of the License at
46 rem Copy android.bat and its required libs to a temp dir.
51 copy /B /D /Y lib\common.jar %tmp_dir%\lib\ > nul
52 copy /B /D /Y lib\commons-codec* %tmp_dir%\lib\ > nul
53 copy /B /D /Y lib\commons-compress* %tmp_dir%\lib\ > nul
54 copy /B /D /Y lib\commons-logging* %tmp_dir%\lib\ > nul
55 copy /B /D /Y lib\dvlib.jar %tmp_dir%\lib\ > nul
56 copy /B /D /Y lib\guava* %tmp_dir%\lib\ > nul
57 copy /B /D /Y lib\httpclient* %tmp_dir%\lib\ > nul
58 copy /B /D /Y lib\httpcore* %tmp_dir%\lib\ > nul
    [all...]
  /system/update_engine/update_manager/
generic_variables_unittest.cc 6 // You may obtain a copy of the License at
43 // Generate and validate a copy.
52 // Check that the content of the copy was not affected (distinct instance).
55 // Generate and validate a second copy.
80 // Tells if the instance was constructed using the copy-constructor.
89 // Ensures that CopyVariables indeed uses the copy constructor.
94 unique_ptr<const CopyConstructorTestClass> copy(
96 ASSERT_NE(nullptr, copy.get());
97 EXPECT_TRUE(copy->copied_);
133 unique_ptr<const CopyConstructorTestClass> copy(
    [all...]

Completed in 4448 milliseconds

<<11121314151617181920>>