Searched defs:copy (Results 26 - 50 of 491) sorted by relevance

1234567891011>>

/external/lldb/tools/debugserver/source/MacOSX/
H A DCFUtils.h35 CFReleaser(const CFReleaser& copy) : _ptr(copy.get()) argument
43 CFReleaser& operator= (const CFReleaser<T>& copy) argument
45 if (copy != *this)
48 reset(copy.get());
/external/mesa3d/src/glsl/
H A Dir_import_prototypes.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
84 ir_function_signature *copy = ir->clone_prototype(mem_ctx, NULL); local
86 this->function->add_signature(copy);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSubroutine.java65 public Subroutine copy() { method in class:Subroutine
/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java17 * You should have received a copy of the GNU General Public License along
59 public SwitchInstruction copy(SwitchInstruction switchInstruction) method in class:SwitchInstruction
/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/
H A DAbstractStorelessUnivariateStatistic.java7 * the License. You may obtain a copy of the License at
98 public abstract StorelessUnivariateStatistic copy(); method in class:AbstractStorelessUnivariateStatistic
H A DAbstractUnivariateStatistic.java7 * the License. You may obtain a copy of the License at
47 * The stored value is a copy of the parameter array, not the array itself
57 * Get a copy of the stored data array.
58 * @return copy of the stored data array (may be null)
111 public abstract UnivariateStatistic copy(); method in class:AbstractUnivariateStatistic
H A DStorelessUnivariateStatistic.java7 * the License. You may obtain a copy of the License at
80 * Returns a copy of the statistic with the same internal state.
82 * @return a copy of the statistic
84 StorelessUnivariateStatistic copy(); method in interface:StorelessUnivariateStatistic
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DFourthMoment.java7 * the License. You may obtain a copy of the License at
73 * @param original the {@code FourthMoment} instance to copy
77 copy(original, this);
124 public FourthMoment copy() { method in class:FourthMoment
126 copy(this, result);
134 * @param source FourthMoment to copy
135 * @param dest FourthMoment to copy to
138 public static void copy(FourthMoment source, FourthMoment dest) { method in class:FourthMoment
139 ThirdMoment.copy(source, dest);
H A DSecondMoment.java7 * the License. You may obtain a copy of the License at
65 * @param original the {@code SecondMoment} instance to copy
105 public SecondMoment copy() { method in class:SecondMoment
107 copy(this, result);
115 * @param source SecondMoment to copy
116 * @param dest SecondMoment to copy to
119 public static void copy(SecondMoment source, SecondMoment dest) { method in class:SecondMoment
120 FirstMoment.copy(source, dest);
H A DThirdMoment.java7 * the License. You may obtain a copy of the License at
75 * @param original the {@code ThirdMoment} instance to copy
78 copy(original, this);
119 public ThirdMoment copy() { method in class:ThirdMoment
121 copy(this, result);
129 * @param source ThirdMoment to copy
130 * @param dest ThirdMoment to copy to
133 public static void copy(ThirdMoment source, ThirdMoment dest) { method in class:ThirdMoment
134 SecondMoment.copy(source, dest);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DSHA384Digest.java31 * Copy constructor. This will copy the state of the provided
93 public Memoable copy() method in class:SHA384Digest
H A DSHA512Digest.java31 * Copy constructor. This will copy the state of the provided
95 public Memoable copy() method in class:SHA512Digest
/external/javassist/src/main/javassist/
H A DCtNewConstructor.java111 * Creates a copy of a constructor.
124 public static CtConstructor copy(CtConstructor c, CtClass declaring, method in class:CtNewConstructor
232 * <p>If <code>body</code> is not null, a copy of that method is
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DVertexCache.java92 public void copy(VertexCache inVcache) method in class:VertexCache
/external/libcxx/test/support/
H A Dconstexpr_char_traits.hpp40 static _LIBCPP_CONSTEXPR_AFTER_CXX11 char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
119 constexpr_char_traits<_CharT>::copy(char_type* __s1, const char_type* __s2, size_t __n) function in class:constexpr_char_traits
121 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
/external/llvm/utils/lit/lit/
H A Ddiscovery.py5 import copy namespace
92 # Otherwise, copy the current config and load the local configuration
94 config = copy.deepcopy(parent)
/external/mesa3d/src/mapi/glapi/gen/
H A Dgl_x86-64_asm.py7 # copy of this software and associated documentation files (the "Software"),
9 # on the rights to use, copy, modify, merge, publish, distribute, sub
30 import sys, getopt, copy namespace
68 temp = copy.deepcopy(registers)
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cse.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
131 fs_inst *copy = new(ralloc_parent(inst)) local
133 entry->generator->insert_after(copy);
138 fs_inst *copy = new(ralloc_parent(inst)) local
140 inst->replace_with(copy);
144 block->end = copy;
147 /* Continue iteration with copy->next */
148 inst = copy;
/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

Completed in 526 milliseconds

1234567891011>>