Searched defs:returnValues (Results 1 - 8 of 8) sorted by relevance

/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DTweenAccessor.java22 * public int getValues(Particle target, int tweenType, float[] returnValues) {
24 * case X: returnValues[0] = target.getX(); return 1;
25 * case Y: returnValues[0] = target.getY(); return 1;
27 * returnValues[0] = target.getX();
28 * returnValues[1] = target.getY();
68 * @param returnValues An array which should be modified by this method.
69 * @return The count of modified slots from the returnValues array.
71 public int getValues(T target, int tweenType, float[] returnValues); argument
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
H A DMutableFloat.java25 public int getValues(MutableFloat target, int tweenType, float[] returnValues) { argument
26 returnValues[0] = target.value;
H A DMutableInteger.java25 public int getValues(MutableInteger target, int tweenType, float[] returnValues) { argument
26 returnValues[0] = target.value;
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
H A DSpriteAccessor.java14 public int getValues(Sprite target, int tweenType, float[] returnValues) { argument
17 returnValues[0] = target.getX();
18 returnValues[1] = target.getY();
22 returnValues[0] = target.getScaleX();
23 returnValues[1] = target.getScaleY();
27 returnValues[0] = target.isVisible() ? 1 : 0;
/external/deqp/modules/gles31/functional/
H A Des31fSSBOLayoutCase.cpp1355 int returnValues[] = { 0, 0, 0 }; local
1357 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(queryParams) == DE_LENGTH_OF_ARRAY(returnValues));
1361 gl.getProgramResourceiv(program, GL_SHADER_STORAGE_BLOCK, (deUint32)blockNdx, DE_LENGTH_OF_ARRAY(queryParams), &queryParams[0], DE_LENGTH_OF_ARRAY(returnValues), &returnLength, &returnValues[0]);
1364 if (returnLength != DE_LENGTH_OF_ARRAY(returnValues))
1368 entry.size = returnValues[0];
1371 if (returnValues[1] > 0)
1373 const int numBlockVars = returnValues[1];
1386 if (returnValues[2] > 0)
1388 const int nameLen = returnValues[
1423 int returnValues[DE_LENGTH_OF_ARRAY(queryParams)]; local
[all...]
H A Des31fShaderImageLoadStoreTests.cpp1822 IntFloatArr returnValues; local
1837 returnValues.i[i] = resultSlice.getPixelInt(gid.x(), y).x();
1842 returnValues.f[i] = resultSlice.getPixel(gid.x(), y).x();
1853 returnValues.i)
1858 returnValues.f);
1863 << (isIntegerFormat ? arrayStr(returnValues.i) : arrayStr(returnValues.f)) << TestLog::EndMessage
1881 //! Check whether there exists an ordering of args such that { init*A", init*A*B, ..., init*A*B*...*LAST } is the "returnValues" sequence, where { A, B, ..., LAST } is args, and * denotes the operation.
1882 // That is, whether "returnValues" is a valid sequence of intermediate return values when "operation" has been accumulated on "args" (and "init") in some arbitrary order.
1884 static bool verifyOperationAccumulationIntermediateValues (AtomicOperation operation, T init, const T (&args)[NUM_INVOCATIONS_PER_PIXEL], const T (&returnValues)[NUM_INVOCATIONS_PER_PIXE argument
1896 verifyRecursive(AtomicOperation operation, int index, T valueSoFar, bool (&argsUsed)[NUM_INVOCATIONS_PER_PIXEL], const T (&args)[NUM_INVOCATIONS_PER_PIXEL], const T (&returnValues)[NUM_INVOCATIONS_PER_PIXEL]) argument
2251 int returnValues[NUM_INVOCATIONS_PER_PIXEL]; local
[all...]
/external/pdfium/fxjs/
H A Dcfxjse_formcalc_context.cpp5646 std::vector<std::unique_ptr<CFXJSE_Value>> returnValues; local
5648 returnValues.push_back(pdfium::MakeUnique<CFXJSE_Value>(pIsolate));
5658 argValues[i]->GetObjectPropertyByIdx(j, returnValues[index].get());
5662 returnValues[index]->Assign(argValues[i].get());
5665 args.GetReturnValue()->SetArray(returnValues);
/external/robolectric/v1/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 1005 milliseconds