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

1 2 3 4 5 6

  /external/guava/guava/src/com/google/common/primitives/
package-info.java 28 * <li>{@link com.google.common.primitives.Primitives}
34 * <li>{@link com.google.common.primitives.Booleans}
35 * <li>{@link com.google.common.primitives.Bytes}
37 * <li>{@link com.google.common.primitives.SignedBytes}
38 * <li>{@link com.google.common.primitives.UnsignedBytes}
40 * <li>{@link com.google.common.primitives.Chars}
41 * <li>{@link com.google.common.primitives.Doubles}
42 * <li>{@link com.google.common.primitives.Floats}
43 * <li>{@link com.google.common.primitives.Ints
    [all...]
UnsignedInteger.java 15 package com.google.common.primitives;
19 import static com.google.common.primitives.UnsignedInts.INT_MASK;
20 import static com.google.common.primitives.UnsignedInts.compare;
21 import static com.google.common.primitives.UnsignedInts.toLong;
AndroidInteger.java 18 package com.google.common.primitives;
SignedBytes.java 17 package com.google.common.primitives;
27 * Static utility methods pertaining to {@code byte} primitives that
  /external/guava/guava-gwt/test/com/google/common/primitives/
TestModuleEntryPoint.java 17 package com.google.common.primitives;
  /external/guava/guava-tests/test/com/google/common/primitives/
PrimitivesTest.java 17 package com.google.common.primitives;
27 * Unit test for {@link Primitives}.
33 assertTrue(Primitives.isWrapperType(Void.class));
34 assertFalse(Primitives.isWrapperType(void.class));
38 assertSame(Integer.class, Primitives.wrap(int.class));
39 assertSame(Integer.class, Primitives.wrap(Integer.class));
40 assertSame(String.class, Primitives.wrap(String.class));
44 assertSame(int.class, Primitives.unwrap(Integer.class));
45 assertSame(int.class, Primitives.unwrap(int.class));
46 assertSame(String.class, Primitives.unwrap(String.class))
50 Set<Class<?>> primitives = Primitives.allPrimitiveTypes(); local
55 primitives); local
    [all...]
  /external/guava/guava/src/com/google/common/hash/
HashFunction.java 18 import com.google.common.primitives.Ints;
MessageDigestHashFunction.java 20 import com.google.common.primitives.Chars;
21 import com.google.common.primitives.Ints;
22 import com.google.common.primitives.Longs;
23 import com.google.common.primitives.Shorts;
HashCode.java 19 import com.google.common.primitives.Ints;
Murmur3_32HashFunction.java 17 import static com.google.common.primitives.UnsignedBytes.toInt;
  /system/media/audio_utils/
Android.mk 10 primitives.c \
30 primitives.c
primitives.c 17 #include <audio_utils/primitives.h>
  /frameworks/rs/
rsMesh.h 48 // indexBuffers[i] could be NULL, in which case only primitives[i] is used
51 RsPrimitive *primitives; member in struct:android::renderscript::Mesh::Hal::State
75 mHal.state.primitives[index] = prim;
rsMesh.cpp 26 mHal.state.primitives = NULL;
44 mHal.state.primitives = new RsPrimitive[mHal.state.primitivesCount];
47 mHal.state.primitives[i] = RS_PRIMITIVE_POINT;
68 delete[] mHal.state.primitives;
95 // Store the primitives
97 stream->addU8((uint8_t)mHal.state.primitives[pCount]);
132 RsPrimitive *primitives = NULL; local
135 primitives = new RsPrimitive[primitivesCount];
137 // load all primitives
139 primitives[pCount] = (RsPrimitive)stream->loadU8()
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ComparisonChain.java 20 import com.google.common.primitives.Booleans;
21 import com.google.common.primitives.Ints;
22 import com.google.common.primitives.Longs;
MutableClassToInstanceMap.java 20 import com.google.common.primitives.Primitives;
78 return Primitives.wrap(type).cast(value);
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataInputStream.java 21 import com.google.common.primitives.Ints;
22 import com.google.common.primitives.Longs;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptTest.java 36 Script S = new ScriptC_primitives(mRS, mRes, R.raw.primitives);
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_mesh.c 54 return mesh->mHal.state.primitives[index];
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
UT_primitives.java 27 super(rstc, "Primitives", ctx);
92 ScriptC_primitives s = new ScriptC_primitives(pRS, mRes, R.raw.primitives);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_primitives.java 27 super(rstc, "Primitives", ctx);
92 ScriptC_primitives s = new ScriptC_primitives(pRS, mRes, R.raw.primitives);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceTask.java 21 import com.google.common.primitives.Bytes;
  /frameworks/base/graphics/java/android/renderscript/
Mesh.java 121 * @return number of primitives or index sets in the mesh
143 * @param slot locaiton within the list of index set primitives
159 int[] primitives = new int[idxCount]; local
162 mRS.nMeshGetIndices(getID(mRS), idxIDs, primitives, idxCount); local
180 mPrimitives[i] = Primitive.values()[primitives[i]];
359 Primitive[] primitives = new Primitive[mIndexTypes.size()]; local
383 primitives[ct] = entry.prim;
393 newMesh.mPrimitives = primitives;
514 Primitive[] primitives = new Primitive[mIndexTypes.size()]; local
527 primitives[ct] = entry.prim
    [all...]
  /frameworks/native/opengl/libagl/
Android.mk 22 primitives.cpp.arm \
  /external/guava/guava-tests/test/com/google/common/hash/
BloomFilterTest.java 5 import com.google.common.primitives.Ints;

Completed in 635 milliseconds

1 2 3 4 5 6