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

1 2 3 4 5

  /frameworks/base/graphics/java/android/graphics/
SweepGradient.java 28 * @param positions May be NULL. The relative position of
32 * If positions is NULL, then the colors are automatically
36 int colors[], float positions[]) {
40 if (positions != null && colors.length != positions.length) {
44 native_instance = nativeCreate1(cx, cy, colors, positions);
60 int colors[], float positions[]);
LinearGradient.java 27 @param positions May be null. The relative positions [0..1] of
33 int colors[], float positions[], TileMode tile) {
37 if (positions != null && colors.length != positions.length) {
40 native_instance = nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt);
59 int colors[], float positions[], int tileMode);
RadialGradient.java 26 @param positions May be NULL. The relative position of
32 int colors[], float positions[], TileMode tile) {
39 if (positions != null && colors.length != positions.length) {
42 native_instance = nativeCreate1(x, y, radius, colors, positions, tile.nativeInt);
62 int colors[], float positions[], int tileMode);
  /dalvik/dx/tests/048-dex-new-array/
run 18 dx --debug --dex --positions=none --no-locals --dump-method=Blort.test *.class
  /dalvik/dx/tests/054-dex-high16/
run 18 dx --debug --dex --positions=none --no-locals \
  /dalvik/dx/tests/060-dex-call-static/
run 18 dx --debug --dex --positions=none --no-locals \
  /dalvik/dx/tests/068-dex-infinite-loop/
run 18 dx --debug --dex --positions=none --no-locals \
  /dalvik/dx/tests/077-dex-code-alignment/
run 24 dx --debug --dex --positions=none --no-locals --dump-to=- *.class | awk '
  /dalvik/dx/tests/078-dex-local-variable-table/
run 18 dx --debug --dex --no-optimize --positions=none --dump-method=Blort.test'*' \
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
run 18 dx --debug --dex --no-optimize --positions=none --dump-method=Blort.test'*' \
  /frameworks/base/opengl/java/android/opengl/
Visibility.java 32 * @param positions the vertex positions (x, y, z).
33 * @param positionsOffset the index in the positions array where the data
46 * positions is null, positionsOffset < 0, indices is null,
50 float[] positions, int positionsOffset, char[] indices,
110 * @param positions positions in x, y, z triples
111 * @param positionsOffset offset into positions array
116 * @throws IllegalArgumentException if positions is null,
117 * positionsOffset < 0, positionsOffset > positions.length - positionsCount
    [all...]