/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;
|
/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; 93 // Store the primitives 95 stream->addU8((uint8_t)mHal.state.primitives[pCount]); 129 RsPrimitive *primitives = NULL; local 132 primitives = new RsPrimitive[primitivesCount]; 134 // load all primitives 136 primitives[pCount] = (RsPrimitive)stream->loadU8() [all...] |
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | 120 ** These primitives implement in-process locking using a hash table 254 #define mutex_held(X) (GetCurrentThreadId()==primitives.aHolder[X]) 261 } primitives = { 0 }; variable in typeref:struct:AsyncPrimitives 264 if( !primitives.isInit ){ 265 primitives.aCond[0] = CreateEvent(NULL, TRUE, FALSE, 0); 266 if( primitives.aCond[0]==NULL ){ 269 InitializeCriticalSection(&primitives.aMutex[0]); 270 InitializeCriticalSection(&primitives.aMutex[1]); 271 InitializeCriticalSection(&primitives.aMutex[2]); 272 primitives.isInit = 1 329 } primitives = { variable in typeref:struct:AsyncPrimitives [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);
|
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/ |
UiAutomationDriver.java | 27 import com.google.common.primitives.Longs;
|
/frameworks/rs/driver/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 \
|