/external/v8/test/webkit/ |
D | array-enumerators-functions-expected.txt | 29 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 …]
|
D | array-enumerators-functions.js | 73 function copyArray(a) { function
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/ |
D | VectorialPointValuePair.java | 59 final boolean copyArray) { in VectorialPointValuePair() argument 60 this.point = copyArray ? in VectorialPointValuePair() 63 this.value = copyArray ? in VectorialPointValuePair()
|
D | RealPointValuePair.java | 59 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/ |
D | FirstOrderIntegratorWithJacobians.java | 732 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/ |
D | CommentParser.cpp | 477 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()
|
D | CommentSema.cpp | 321 Command->setPosition(copyArray(llvm::makeArrayRef(Position))); in actOnTParamCommandParamNameArg()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/ |
D | SimplexTableau.java | 169 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/ |
D | ByteString.java | 834 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/ |
D | SkDisplayable.cpp | 98 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/ |
D | ArrayFieldVector.java | 135 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()
|
D | Array2DRowRealMatrix.java | 115 public Array2DRowRealMatrix(final double[][] d, final boolean copyArray) in Array2DRowRealMatrix() argument 117 if (copyArray) { in Array2DRowRealMatrix()
|
D | RealMatrixImpl.java | 117 public RealMatrixImpl(final double[][] d, final boolean copyArray) in RealMatrixImpl() argument 119 if (copyArray) { in RealMatrixImpl()
|
D | Array2DRowFieldMatrix.java | 105 public Array2DRowFieldMatrix(final T[][] d, final boolean copyArray) in Array2DRowFieldMatrix() argument 108 if (copyArray) { in Array2DRowFieldMatrix()
|
D | MatrixUtils.java | 279 public static BigMatrix createBigMatrix(BigDecimal[][] data, boolean copyArray) { in createBigMatrix() argument 280 return new BigMatrixImpl(data, copyArray); in createBigMatrix()
|
D | ArrayRealVector.java | 96 public ArrayRealVector(double[] d, boolean copyArray) { in ArrayRealVector() argument 97 data = copyArray ? d.clone() : d; in ArrayRealVector()
|
D | BigMatrixImpl.java | 149 public BigMatrixImpl(BigDecimal[][] d, boolean copyArray) { in BigMatrixImpl() argument 150 if (copyArray) { in BigMatrixImpl()
|
D | BlockRealMatrix.java | 148 final double[][] blockData, final boolean copyArray) in BlockRealMatrix() argument 159 if (copyArray) { in BlockRealMatrix() 176 if (copyArray) { in BlockRealMatrix()
|
D | BlockFieldMatrix.java | 151 final T[][] blockData, final boolean copyArray) in BlockFieldMatrix() argument 162 if (copyArray) { in BlockFieldMatrix() 179 if (copyArray) { in BlockFieldMatrix()
|
/external/clang/include/clang/AST/ |
D | CommentSema.h | 81 ArrayRef<T> copyArray(ArrayRef<T> Source) { in copyArray() function
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkBuilderUtil.hpp | 217 inline DescriptorSetUpdateBuilder& copyArray (VkDescriptorSet srcSet, in copyArray() function in vk::DescriptorSetUpdateBuilder
|
/external/clang/test/Analysis/ |
D | NSContainers.m | 141 …NSArray *copyArray = [array arrayByAddingObject:0]; // expected-warning {{Argument to 'NSArray' me…
|