Searched refs:copy (Results 76 - 100 of 1287) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DStepInterpolatorWithJacobians.java7 * the License. You may obtain a copy of the License at
39 * {@link #copy()} method.
80 * specific state must be preserved, a copy of the instance must be
81 * created using {@link #copy()}.</p>
181 * @return a deep copy of the instance, which can be used independently.
186 StepInterpolatorWithJacobians copy() throws DerivativeException; method in interface:StepInterpolatorWithJacobians
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DProduct.java7 * the License. You may obtain a copy of the License at
63 * @param original the {@code Product} instance to copy
66 copy(original, this);
204 public Product copy() { method in class:Product
206 copy(this, result);
214 * @param source Product to copy
215 * @param dest Product to copy to
218 public static void copy(Product source, Product dest) { method in class:Product
H A DSum.java7 * the License. You may obtain a copy of the License at
62 * @param original the {@code Sum} instance to copy
65 copy(original, this);
200 public Sum copy() { method in class:Sum
202 copy(this, result);
210 * @param source Sum to copy
211 * @param dest Sum to copy to
214 public static void copy(Sum source, Sum dest) { method in class:Sum
/external/deqp/framework/delibs/debase/
H A DdeMemory.c9 * You may obtain a copy of the License at
139 char* copy = malloc(len+1);
140 memcpy(copy, str, len);
141 copy[len] = 0;
142 return copy;
/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:DeprecatedAttribute
H A DSyntheticAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SyntheticAttribute
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DKernel.java69 * If 'copy' is true then the implementation will copy the byte buffer
76 boolean copy );
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DHashBasedTableTest.java6 * You may obtain a copy of the License at
72 Table<String, Integer, Character> copy = HashBasedTable.create(original);
73 assertEquals(original, copy);
74 assertEquals((Character) 'a', copy.get("foo", 1));
H A DHashMultimapTest.java6 * You may obtain a copy of the License at
49 HashMultimap<String, Integer> copy = HashMultimap.create(multimap);
50 assertEquals(multimap, copy);
51 assertEquals(2, copy.expectedValuesPerKey);
H A DTreeMultimapExplicitTest.java6 * You may obtain a copy of the License at
103 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree);
104 assertEquals(tree, copy);
105 ASSERT.that(copy.keySet()).has().exactly("google", "tree").inOrder();
106 ASSERT.that(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 =
189 copy
[all...]
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/mockftpserver/tags/1.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * 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/org/mockito/internal/util/reflection/
H A DLenientCopyTool.java16 copy(from, mock, from.getClass(), mock.getClass().getSuperclass());
20 copy(from, to, from.getClass(), to.getClass());
23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) { method in class:LenientCopyTool
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.h70 // TiXmlString copy constructor
71 TiXmlString ( const TiXmlString & copy) : rep_(0) argument
73 init(copy.length());
74 memcpy(start(), copy.data(), length());
78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) argument
80 init( static_cast<size_type>( strlen(copy) ));
81 memcpy(start(), copy, length()); local
97 TiXmlString& operator = (const char * copy) argument
99 return assign( copy, (size_type)strlen(copy));
102 operator =(const TiXmlString & copy) argument
[all...]
/external/skia/src/core/
H A DSkWriter32.cpp30 size_t SkReader32::readIntoString(SkString* copy) { argument
33 if (copy) {
34 copy->set(ptr, len);
74 // we were external, so copy in the data
/external/tinyxml/
H A Dtinystr.h33 * - added "copy" constructor with length, and most compare operators.
67 // TiXmlString copy constructor
68 TiXmlString (const TiXmlString & copy) argument
70 init(copy.length());
71 memcpy(start(), copy.data(), length());
75 TiXmlString (const char * copy) argument
77 init( static_cast<size_type>( strlen(copy) ));
78 memcpy(start(), copy, length()); local
95 TiXmlString& operator = (const char * copy) argument
97 return assign( copy, (size_typ
101 operator =(const TiXmlString & copy) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DSummaryStatistics.java7 * 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);
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);
653 * @param source SummaryStatistics to copy
657 public static void copy(SummaryStatistics source, SummaryStatistics dest) { method in class:SummaryStatistics
[all...]
H A DSynchronizedSummaryStatistics.java7 * 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);
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);
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/
H A DKurtosis.java7 * the License. You may obtain a copy of the License at
85 * @param original the {@code Kurtosis} instance to copy
88 copy(original, this);
202 public Kurtosis copy() { method in class:Kurtosis
204 copy(this, result);
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();

Completed in 500 milliseconds

1234567891011>>