/prebuilts/ndk/r16/sources/android/ndk_helper/ |
Android.mk | 3 $(warning ndk_helper is no longer maintained in the NDK. This copy is left for \ 4 compatibility purposes only. For an up to date copy, see \
|
/test/framework/harnesses/host_controller/command_processor/ |
command_copy.py | 6 # You may obtain a copy of the License at 24 """Command processor for copy command. 33 command = "copy" 34 command_detail = "Copy a file." 38 """Copy a file from source to destination path.""" 45 shutil.copy(src, dst
|
/test/vts-testcase/hal/vts_specs/ |
Android.mk | 6 # You may obtain a copy of the License at 30 $(call copy-many-files,$(spec_copy_pairs)) \
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/ |
cfi-hppa-1.s | 14 copy %r3,%r1 15 copy %r30,%r3 37 copy %r3,%r1 38 copy %r30,%r3
|
/external/protobuf/js/binary/ |
proto_test.js | 194 * @param {proto.jspb.test.TestAllTypes} copy 196 function checkAllFields(original, copy) { 197 assertTrue(jspb.Message.equals(original, copy)); 199 assertEquals(copy.getOptionalInt32(), -42); 200 assertEquals(copy.getOptionalInt64(), -0x7fffffff00000000); 201 assertEquals(copy.getOptionalUint32(), 0x80000000); 202 assertEquals(copy.getOptionalUint64(), 0xf000000000000000); 203 assertEquals(copy.getOptionalSint32(), -100); 204 assertEquals(copy.getOptionalSint64(), -0x8000000000000000); 205 assertEquals(copy.getOptionalFixed32(), 1234) [all...] |
/external/eigen/unsupported/test/ |
cxx11_tensor_fixed_size.cpp | 7 // Public License v. 2.0. If a copy of the MPL was not distributed 29 // Test against shallow copy. 30 TensorFixedSize<float, Sizes<> > copy = scalar1; local 31 VERIFY_IS_NOT_EQUAL(scalar1.data(), copy.data()); 32 VERIFY_IS_APPROX(scalar1(), copy()); 33 copy = scalar1; 34 VERIFY_IS_NOT_EQUAL(scalar1.data(), copy.data()); 35 VERIFY_IS_APPROX(scalar1(), copy()); 63 // Test against shallow copy. 64 TensorFixedSize<float, Sizes<6> > copy = vec1 local [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
HashBasedTableTest.java | 6 * You may obtain a copy of the License at 72 Table<String, Integer, Character> copy = HashBasedTable.create(original); local 73 assertEquals(original, copy); 74 assertEquals((Character) 'a', copy.get("foo", 1));
|
HashMultimapTest.java | 6 * You may obtain a copy of the License at 49 HashMultimap<String, Integer> copy = HashMultimap.create(multimap); local 50 assertEquals(multimap, copy); 51 assertEquals(2, copy.expectedValuesPerKey);
|
TreeMultimapExplicitTest.java | 6 * You may obtain a copy of the License at 103 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); local 104 assertEquals(tree, copy); 105 assertThat(copy.keySet()).has().exactly("google", "tree").inOrder(); 106 assertThat(copy.get("google")).has().exactly(2, 6).inOrder(); 107 assertEquals(Ordering.natural(), copy.keyComparator()); 108 assertEquals(Ordering.natural(), copy.valueComparator()); 109 assertEquals(Ordering.natural(), copy.get("google").comparator()); 187 TreeMultimap<String, Integer> copy = local 189 copy.putAll(multimap) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
CSCharacterIterator.java | 104 CSCharacterIterator copy = new CSCharacterIterator(seq); local 105 copy.setIndex(index); 106 return copy;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CSCharacterIterator.java | 102 CSCharacterIterator copy = new CSCharacterIterator(seq); local 103 copy.setIndex(index); 104 return copy;
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/data/ |
SessionInfoStore.java | 46 final List<SessionInfo> copy = new ArrayList<SessionInfo>(infos); local 47 Collections.sort(copy); 48 return copy;
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
Command.java | 6 * You may obtain a copy of the License at
44 this.parameters = copy(parameters);
58 return copy(parameters);
119 * Construct a shallow copy of the specified array
120 * @param array - the array to copy
123 private static String[] copy(String[] array) {
method in class:Command
|
/external/mockito/src/main/java/org/mockito/internal/util/reflection/ |
LenientCopyTool.java | 16 copy(from, mock, from.getClass()); method 20 copy(from, to, from.getClass()); method 23 private <T> void copy(T from, T to, Class<?> fromClazz) { method in class:LenientCopyTool
|
/external/python/cpython2/Lib/idlelib/ |
dynOptionMenuWidget.py | 5 import copy 13 # TODO copy value instead of whole dict 14 kwargsCopy=copy.copy(kwargs)
|
/external/python/cpython2/Lib/test/ |
test_buffer.py | 7 import copy 43 copy.copy(buf)
|
/external/python/cpython3/Lib/idlelib/ |
dynoption.py | 5 import copy 14 # TODO copy value instead of whole dict 15 kwargsCopy=copy.copy(kwargs)
|
/external/sfntly/cpp/src/test/tinyxml/ |
tinystr.h | 70 // TiXmlString copy constructor 71 TiXmlString ( const TiXmlString & copy) : rep_(0) 73 init(copy.length()); 74 memcpy(start(), copy.data(), length()); 78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) 80 init( static_cast<size_type>( strlen(copy) )); 81 memcpy(start(), copy, length()); local 97 TiXmlString& operator = (const char * copy) 99 return assign( copy, (size_type)strlen(copy)); [all...] |
/external/webrtc/webrtc/base/ |
cryptstring.cc | 29 CryptStringImpl* EmptyCryptStringImpl::Copy() const { 41 : impl_(other.impl_->Copy()) { 44 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) { 63 CryptStringImpl* InsecureCryptStringImpl::Copy() const { 64 InsecureCryptStringImpl* copy = new InsecureCryptStringImpl; local 65 copy->password() = password_; 66 return copy;
|
taskparent.cc | 76 ChildSet copy = *children_; local 77 for (ChildSet::iterator it = copy.begin(); it != copy.end(); ++it) {
|
/libcore/ojluni/src/test/java/time/test/java/time/chrono/ |
TestChronoLocalDate.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 101 List<ChronoLocalDate> copy = new ArrayList<>(dates); local 102 Collections.shuffle(copy); 103 Collections.sort(copy, ChronoLocalDate.timeLineOrder()); 104 assertEquals(copy, dates); 105 assertTrue(ChronoLocalDate.timeLineOrder().compare(copy.get(0), copy.get(1)) < 0); 125 List<LocalDate> copy = new ArrayList<>(dates); 126 Collections.shuffle(copy); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/ |
SystraceTask.java | 6 * You may obtain a copy of the License at 86 byte[] copy = new byte[mDataLength]; 88 copy[i] = mBuffer[i]; 90 mBuffer = copy;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
SummaryStatistics.java | 7 * the License. You may obtain a copy of the License at 125 * A copy constructor. Creates a deep-copy of the {@code original}. 127 * @param original the {@code SummaryStatistics} instance to copy 130 copy(original, this); method 639 * Returns a copy of this SummaryStatistics instance with the same internal state. 641 * @return a copy of this 643 public SummaryStatistics copy() { method in class:SummaryStatistics 645 copy(this, result); method 653 * @param source SummaryStatistics to copy 657 public static void copy(SummaryStatistics source, SummaryStatistics dest) { method in class:SummaryStatistics [all...] |
/external/v8/src/compiler/ |
osr.cc | 63 // Make a copy of the graph for each outer loop. 78 // The outer loops are dead in this copy. 88 // Copy all nodes. 91 Node* copy = mapping->at(orig->id()); local 92 if (copy != sentinel) { 99 // No need to copy leaf nodes or parameters. 104 // Copy the node. 109 copy = graph->NewNode(orig->op(), orig->InputCount(), &tmp_inputs[0]); 111 NodeProperties::SetType(copy, NodeProperties::GetType(orig)); 113 mapping->at(orig->id()) = copy; 120 Node* copy = mapping->at(orig->id()); local 180 Node* copy = mapping->at(node->id()); local 198 Node* copy = mapping->at(node->id()); local [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
IOUtils.java | 7 * the License. You may obtain a copy of the License at 48 * <li>copy - these methods copy all the data from one stream to another 218 copy(input, output); method 236 copy(input, output); method 260 copy(input, output, encoding); method 298 copy(is, output); method 322 copy(is, output, encoding); method 340 copy(input, sw); method 360 copy(input, sw) method 383 copy(input, sw, encoding); method 400 copy(input, sw); method 1001 public static int copy(InputStream input, OutputStream output) throws IOException { method in class:IOUtils 1050 public static void copy(InputStream input, Writer output) method in class:IOUtils 1053 copy(in, output); method 1075 public static void copy(InputStream input, Writer output, String encoding) method in class:IOUtils 1078 copy(input, output); method 1081 copy(in, output); method 1106 public static int copy(Reader input, Writer output) throws IOException { method in class:IOUtils 1157 public static void copy(Reader input, OutputStream output) method in class:IOUtils 1160 copy(input, out); method 1189 public static void copy(Reader input, OutputStream output, String encoding) method in class:IOUtils 1192 copy(input, output); method 1195 copy(input, out); method [all...] |