HomeSort by relevance Sort by last modified time
    Searched refs:copyArray (Results 1 - 25 of 42) sorted by null

1 2

  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
VectorialPointValuePair.java 55 * @param copyArray if true, the input arrays will be copied, otherwise
59 final boolean copyArray) {
60 this.point = copyArray ?
63 this.value = copyArray ?
RealPointValuePair.java 55 * @param copyArray if true, the input array will be copied, otherwise
59 final boolean copyArray) {
60 this.point = copyArray ?
  /external/junit/src/main/java/org/junit/runner/
JUnitCommandLineParseResult.java 58 return copyArray(args, i + 1, args.length);
80 return copyArray(args, i, args.length);
87 private String[] copyArray(String[] args, int from, int to) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
FirstOrderIntegratorWithJacobians.java 732 copyArray(y, copied.y);
733 copyArray(dydy0, copied.dydy0);
734 copyArray(dydp, copied.dydp);
735 copyArray(yDot, copied.yDot);
736 copyArray(dydy0Dot, copied.dydy0Dot);
737 copyArray(dydpDot, copied.dydpDot);
777 private static void copyArray(final double[] src, final double[] dest) {
785 private static void copyArray(final double[][] src, final double[][] dest) {
787 copyArray(src[i], dest[i]);
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 477 S.copyArray(llvm::makeArrayRef(Attrs)),
485 S.copyArray(llvm::makeArrayRef(Attrs)),
504 S.copyArray(llvm::makeArrayRef(Attrs)),
512 S.copyArray(llvm::makeArrayRef(Attrs)),
652 return S.actOnParagraphComment(S.copyArray(llvm::makeArrayRef(Content)));
691 S.copyArray(llvm::makeArrayRef(Lines)));
696 S.copyArray(llvm::makeArrayRef(Lines)));
772 return S.actOnFullComment(S.copyArray(llvm::makeArrayRef(Blocks)));
CommentSema.cpp 321 Command->setPosition(copyArray(llvm::makeArrayRef(Position)));
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java 169 copyArray(objectiveCoefficients.getData(), matrix.getDataRef()[zIndex]);
186 copyArray(constraint.getCoefficients().getData(), matrix.getDataRef()[row]);
346 private void copyArray(final double[] src, final double[] dest) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareNativeApi.java 435 copyArray(dest, req.addr);
629 copyArray(peer, req.peerDiscMacAddr);
638 copyArray(pmk, req.securityConfig.pmk);
702 copyArray(pmk, req.securityConfig.pmk);
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ByteString.java     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowRealMatrix.java 104 * RealMatrix and not used directly, the <code>copyArray</code> may be
108 * @param copyArray if true, the input array will be copied, otherwise
115 public Array2DRowRealMatrix(final double[][] d, final boolean copyArray)
117 if (copyArray) {
RealMatrixImpl.java 106 * RealMatrix and not used directly, the <code>copyArray</code> may be
110 * @param copyArray if true, the input array will be copied, otherwise
117 public RealMatrixImpl(final double[][] d, final boolean copyArray)
119 if (copyArray) {
ArrayFieldVector.java 118 * ArrayFieldVector and not used directly, the <code>copyArray</code> may be
128 * @param copyArray if true, the input array will be copied, otherwise
135 public ArrayFieldVector(T[] d, boolean copyArray)
142 data = copyArray ? d.clone() : d;
149 * ArrayFieldVector and not used directly, the <code>copyArray</code> may be
154 * @param copyArray if true, the input array will be copied, otherwise
158 public ArrayFieldVector(Field<T> field, T[] d, boolean copyArray) {
160 data = copyArray ? d.clone() : d;
Array2DRowFieldMatrix.java 94 * FieldMatrix<T> and not used directly, the <code>copyArray</code> may be
98 * @param copyArray if true, the input array will be copied, otherwise
105 public Array2DRowFieldMatrix(final T[][] d, final boolean copyArray)
108 if (copyArray) {
MatrixUtils.java 265 * BigMatrix and not used directly, the <code>copyArray</code> may be
269 * @param copyArray if true, the input array will be copied, otherwise
279 public static BigMatrix createBigMatrix(BigDecimal[][] data, boolean copyArray) {
280 return new BigMatrixImpl(data, copyArray);
    [all...]
ArrayRealVector.java 88 * ArrayRealVector and not used directly, the <code>copyArray</code> may be
92 * @param copyArray if true, the input array will be copied, otherwise
96 public ArrayRealVector(double[] d, boolean copyArray) {
97 data = copyArray ? d.clone() : d;
    [all...]
BigMatrixImpl.java 138 * BigMatrix and not used directly, the <code>copyArray</code> may be
142 * @param copyArray if true, the input array will be copied, otherwise
149 public BigMatrixImpl(BigDecimal[][] d, boolean copyArray) {
150 if (copyArray) {
    [all...]
BlockFieldMatrix.java 141 * @param copyArray if true, the input array will be copied, otherwise
151 final T[][] blockData, final boolean copyArray)
162 if (copyArray) {
179 if (copyArray) {
    [all...]
BlockRealMatrix.java 138 * @param copyArray if true, the input array will be copied, otherwise
148 final double[][] blockData, final boolean copyArray)
159 if (copyArray) {
176 if (copyArray) {
    [all...]
  /external/clang/include/clang/AST/
CommentSema.h 81 ArrayRef<T> copyArray(ArrayRef<T> Source) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkBuilderUtil.hpp 219 inline DescriptorSetUpdateBuilder& copyArray (VkDescriptorSet srcSet,
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java     [all...]
  /prebuilts/devtools/tools/lib/
junit-4.12.jar 
  /prebuilts/misc/common/robolectric/lib/
junit-4.12.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.12/
junit-4.12.jar 

Completed in 2110 milliseconds

1 2