Home
last modified time | relevance | path

Searched refs:sourceArray (Results 1 – 10 of 10) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DJSystem.cs60 …public static void arraycopy<T>( T[] sourceArray, int sourceIndex, T[] destinationArray, int desti… in arraycopy() argument
62 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length ); in arraycopy()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DJSystem.cs59 …public static void arraycopy<T>( T[] sourceArray, int sourceIndex, T[] destinationArray, int desti… in arraycopy() argument
61 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length ); in arraycopy()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DChangeTimeScaleTrack.java156 long[] sourceArray = TimeToSampleBox.blowupTimeToSamples(source); in adjustTts() local
160 for (int i = 1; i <= sourceArray.length; i++) { in adjustTts()
161 long duration = sourceArray[i - 1]; in adjustTts()
/external/chromium_org/third_party/angle/samples/angle/sample_util/
Dshader_utils.cpp37 const char *sourceArray[1] = { source.c_str() }; in CompileShader() local
38 glShaderSource(shader, 1, sourceArray, NULL); in CompileShader()
/external/chromium_org/third_party/angle/tests/angle_tests/
DANGLETest.cpp76 const char *sourceArray[1] = { source.c_str() }; in compileShader() local
77 glShaderSource(shader, 1, sourceArray, NULL); in compileShader()
/external/icu/icu4c/source/common/
Drbbitblb.cpp958 MaybeStackArray<void *, 16> destArray, sourceArray; // Handle small cases without malloc in setAdd() local
970 if (sourceSize > sourceArray.getCapacity()) { in setAdd()
971 if (sourceArray.resize(sourceSize) == NULL) { in setAdd()
975 sourcePtr = sourceArray.getAlias(); in setAdd()
/external/chromium_org/third_party/icu/source/common/
Drbbitblb.cpp958 MaybeStackArray<void *, 16> destArray, sourceArray; // Handle small cases without malloc in setAdd() local
970 if (sourceSize > sourceArray.getCapacity()) { in setAdd()
971 if (sourceArray.resize(sourceSize) == NULL) { in setAdd()
975 sourcePtr = sourceArray.getAlias(); in setAdd()
/external/guava/guava-tests/test/com/google/common/collect/
DIterablesTest.java207 String[] sourceArray = new String[] {"a", "b", "c"};
208 Iterable<String> iterable = asList(sourceArray);
210 assertTrue(Arrays.equals(sourceArray, newArray));
DIteratorsTest.java221 String[] sourceArray = new String[] {"a", "b", "c"}; in testToArray() local
222 Iterator<String> iterator = asList(sourceArray).iterator(); in testToArray()
224 assertTrue(Arrays.equals(sourceArray, newArray)); in testToArray()
/external/chromium_org/third_party/blanketjs/src/
Dblanket.js4111 var sourceArray = _blanket._prepareSource(inFile);
4114 instrumented = _blanket._trackingSetup(inFileName,sourceArray)+instrumented;