Home
last modified time | relevance | path

Searched refs:copyArray (Results 1 – 22 of 22) sorted by relevance

/external/v8/test/webkit/
Darray-enumerators-functions-expected.txt29 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnFalse, 0) is count=0;la…
30 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnFalse, 0) is count=0;las…
31 PASS count=0;lastIndex=-1;copyArray(largeEmptyArray).every(forwarders[f], returnFalse, 0) is count=…
32 PASS count=0;lastIndex=-1;copyArray(largeSparseArray).every(forwarders[f], returnFalse, 0) is count…
33 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnTrue, 0) is count=0;las…
34 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnTrue, 0) is count=0;last…
35 PASS count=0;lastIndex=-1;copyArray(largeEmptyArray).every(forwarders[f], returnTrue, 0) is count=0…
36 PASS count=0;lastIndex=-1;copyArray(largeSparseArray).every(forwarders[f], returnTrue, 0) is count=…
37 PASS count=0;lastIndex=-1;copyArray(simpleArray).every(forwarders[f], returnElem, 0) is count=0;las…
38 PASS count=0;lastIndex=-1;copyArray(emptyArray).every(forwarders[f], returnElem, 0) is count=0;last…
[all …]
Darray-enumerators-functions.js73 function copyArray(a) { function
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
DVectorialPointValuePair.java59 final boolean copyArray) { in VectorialPointValuePair() argument
60 this.point = copyArray ? in VectorialPointValuePair()
63 this.value = copyArray ? in VectorialPointValuePair()
DRealPointValuePair.java59 final boolean copyArray) { in RealPointValuePair() argument
60 this.point = copyArray ? in RealPointValuePair()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
DFirstOrderIntegratorWithJacobians.java732 copyArray(y, copied.y); in copy()
733 copyArray(dydy0, copied.dydy0); in copy()
734 copyArray(dydp, copied.dydp); in copy()
735 copyArray(yDot, copied.yDot); in copy()
736 copyArray(dydy0Dot, copied.dydy0Dot); in copy()
737 copyArray(dydpDot, copied.dydpDot); in copy()
777 private static void copyArray(final double[] src, final double[] dest) { in copyArray() method in FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
785 private static void copyArray(final double[][] src, final double[][] dest) { in copyArray() method in FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
787 copyArray(src[i], dest[i]); in copyArray()
/external/clang/lib/AST/
DCommentParser.cpp477 S.copyArray(llvm::makeArrayRef(Attrs)), in parseHTMLStartTag()
485 S.copyArray(llvm::makeArrayRef(Attrs)), in parseHTMLStartTag()
504 S.copyArray(llvm::makeArrayRef(Attrs)), in parseHTMLStartTag()
512 S.copyArray(llvm::makeArrayRef(Attrs)), in parseHTMLStartTag()
652 return S.actOnParagraphComment(S.copyArray(llvm::makeArrayRef(Content))); in parseParagraphOrBlockCommand()
691 S.copyArray(llvm::makeArrayRef(Lines))); in parseVerbatimBlock()
696 S.copyArray(llvm::makeArrayRef(Lines))); in parseVerbatimBlock()
772 return S.actOnFullComment(S.copyArray(llvm::makeArrayRef(Blocks))); in parseFullComment()
DCommentSema.cpp321 Command->setPosition(copyArray(llvm::makeArrayRef(Position))); in actOnTParamCommandParamNameArg()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
DSimplexTableau.java169 copyArray(objectiveCoefficients.getData(), matrix.getDataRef()[zIndex]); in createTableau()
186 copyArray(constraint.getCoefficients().getData(), matrix.getDataRef()[row]); in createTableau()
346 private void copyArray(final double[] src, final double[] dest) { in copyArray() method in SimplexTableau
/external/protobuf/java/src/main/java/com/google/protobuf/
DByteString.java834 private byte[] copyArray(byte[] buffer, int length) { in copyArray() method in ByteString.Output
863 out.write(copyArray(cachedBuffer, cachedBufferPos)); in writeTo()
916 byte[] bufferCopy = copyArray(buffer, bufferPos); in flushLastBuffer()
/external/skia/src/animator/
DSkDisplayable.cpp98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy); in deepCopy() local
99 copyArray->setCount(arrayCount); in deepCopy()
108 memcpy(copyArray->begin(), array->begin(), byteSize); in deepCopy()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DArrayFieldVector.java135 public ArrayFieldVector(T[] d, boolean copyArray) in ArrayFieldVector() argument
142 data = copyArray ? d.clone() : d; in ArrayFieldVector()
158 public ArrayFieldVector(Field<T> field, T[] d, boolean copyArray) { in ArrayFieldVector() argument
160 data = copyArray ? d.clone() : d; in ArrayFieldVector()
DArray2DRowRealMatrix.java115 public Array2DRowRealMatrix(final double[][] d, final boolean copyArray) in Array2DRowRealMatrix() argument
117 if (copyArray) { in Array2DRowRealMatrix()
DRealMatrixImpl.java117 public RealMatrixImpl(final double[][] d, final boolean copyArray) in RealMatrixImpl() argument
119 if (copyArray) { in RealMatrixImpl()
DArray2DRowFieldMatrix.java105 public Array2DRowFieldMatrix(final T[][] d, final boolean copyArray) in Array2DRowFieldMatrix() argument
108 if (copyArray) { in Array2DRowFieldMatrix()
DMatrixUtils.java279 public static BigMatrix createBigMatrix(BigDecimal[][] data, boolean copyArray) { in createBigMatrix() argument
280 return new BigMatrixImpl(data, copyArray); in createBigMatrix()
DArrayRealVector.java96 public ArrayRealVector(double[] d, boolean copyArray) { in ArrayRealVector() argument
97 data = copyArray ? d.clone() : d; in ArrayRealVector()
DBigMatrixImpl.java149 public BigMatrixImpl(BigDecimal[][] d, boolean copyArray) { in BigMatrixImpl() argument
150 if (copyArray) { in BigMatrixImpl()
DBlockRealMatrix.java148 final double[][] blockData, final boolean copyArray) in BlockRealMatrix() argument
159 if (copyArray) { in BlockRealMatrix()
176 if (copyArray) { in BlockRealMatrix()
DBlockFieldMatrix.java151 final T[][] blockData, final boolean copyArray) in BlockFieldMatrix() argument
162 if (copyArray) { in BlockFieldMatrix()
179 if (copyArray) { in BlockFieldMatrix()
/external/clang/include/clang/AST/
DCommentSema.h81 ArrayRef<T> copyArray(ArrayRef<T> Source) { in copyArray() function
/external/deqp/external/vulkancts/framework/vulkan/
DvkBuilderUtil.hpp217 inline DescriptorSetUpdateBuilder& copyArray (VkDescriptorSet srcSet, in copyArray() function in vk::DescriptorSetUpdateBuilder
/external/clang/test/Analysis/
DNSContainers.m141 …NSArray *copyArray = [array arrayByAddingObject:0]; // expected-warning {{Argument to 'NSArray' me…