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

1 2 3 4 5 6 7 8 91011>>

  /external/libogg/macos/
libogg.mcp.exp 3 # Ogg BITSTREAM PRIMITIVES: bitstream
23 # Ogg BITSTREAM PRIMITIVES: encoding
29 # Ogg BITSTREAM PRIMITIVES: decoding
44 # Ogg BITSTREAM PRIMITIVES: general
  /external/libvorbis/macos/
libvorbis.mcp.exp 3 # Vorbis PRIMITIVES: general
20 # Vorbis PRIMITIVES: analysis/DSP layer
32 # Vorbis PRIMITIVES: synthesis layer
  /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...]
  /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...]
  /dalvik/dx/src/com/android/dx/rop/type/
package.html 2 <p>Implementation of classes that represent types (classes or primitives).</p>
  /external/guava/guava-gwt/src/com/google/common/collect/
Collect.gwt.xml 14 <inherits name="com.google.common.primitives.Primitives"/>
  /external/guava/guava-gwt/test/com/google/common/primitives/
testModule.gwt.xml 5 <inherits name="com.google.common.primitives.Primitives"/>
9 <entry-point class="com.google.common.primitives.TestModuleEntryPoint"/>
TestModuleEntryPoint.java 17 package com.google.common.primitives;
  /external/guava/guava-gwt/src/com/google/common/net/
Net.gwt.xml 16 <inherits name="com.google.common.primitives.Primitives"/>
  /external/kernel-headers/original/asm-mips/
mutex.h 4 * TODO: implement optimized primitives instead, or leave the generic
  /external/jmonkeyengine/engine/src/android/jme3test/android/
TestSkyLoadingLagoon.java 58 Texture west = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_x.png");
59 Texture east = assetManager.loadTexture("Textures/Sky/Primitives/primitives_negative_x.png");
60 Texture north = assetManager.loadTexture("Textures/Sky/Primitives/primitives_negative_z.png");
61 Texture south = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_z.png");
62 Texture up = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_y.png");
63 Texture down = assetManager.loadTexture("Textures/Sky/Primitives/primitives_negative_y.png");
TestSkyLoadingPrimitives.java 57 Texture west = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_x.png");
58 Texture east = assetManager.loadTexture("Textures/Sky/Primitives/primitives_negative_x.png");
59 Texture north = assetManager.loadTexture("Textures/Sky/Primitives/primitives_negative_z.png");
60 Texture south = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_z.png");
61 Texture up = assetManager.loadTexture("Textures/Sky/Primitives/primitives_positive_y.png");
62 Texture down = assetManager.loadTexture("Textures/Sky/Primitives/primitives_negative_y.png");
  /external/mockito/src/org/mockito/internal/progress/
HandyReturnValues.java 9 import static org.mockito.internal.util.Primitives.defaultValueForPrimitiveOrWrapper;
10 import static org.mockito.internal.util.Primitives.isPrimitiveOrWrapper;
  /external/mockito/src/org/mockito/internal/stubbing/answers/
MethodInfo.java 7 import org.mockito.internal.util.Primitives;
37 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
  /external/guava/
README.android 8 from guava/src/com/google/common/primitives/UnsignedBytes.java
  /system/extras/tests/bionic/libc/other/
bench_locks.c 1 /* a small program to benchmark locking primitives with different implementations */
  /system/media/audio_utils/
Android.mk 10 primitives.c \
30 primitives.c
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /frameworks/rs/
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...]
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;
  /external/guava/guava/src/com/google/common/collect/
MutableClassToInstanceMap.java 20 import com.google.common.primitives.Primitives;
78 return Primitives.wrap(type).cast(value);
  /dalvik/vm/oo/
Array.h 40 * array of references or primitives.
48 * Allocate an array whose members are primitives (bools, ints, etc.).
122 * Copy the entire contents of an array of boxed primitives into an
123 * array of primitives. The boxed value must fit in the primitive (i.e.
  /external/bison/m4/
signalblocking.m4 7 # Determine available signal blocking primitives. Three different APIs exist:
  /external/kernel-headers/original/asm-arm/
mtd-xip.h 2 * MTD primitives for XIP support. Architecture specific functions
  /external/skia/include/core/
SkTileGridPicture.h 18 * primitives for arbitrary query rectangles. It is most effective for

Completed in 1824 milliseconds

1 2 3 4 5 6 7 8 91011>>