| /art/runtime/entrypoints/quick/ |
| quick_entrypoints_list.h | 69 V(AputObjectWithNullAndBoundCheck, void, mirror::Array*, int32_t, mirror::Object*) \ 70 V(AputObjectWithBoundCheck, void, mirror::Array*, int32_t, mirror::Object*) \ 71 V(AputObject, void, mirror::Array*, int32_t, mirror::Object*) \
|
| /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
| BitSet.cs | 36 using Array = System.Array; 70 /** <summary>Construction from a static array of longs</summary> */ 164 Array.Resize(ref _bits, nwords); 264 /** <summary>return how much space is being used by the bits array not how many actually have member bits on.</summary> */
|
| /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
| BitSet.cs | 37 using Array = System.Array; 73 /** <summary>Construction from a static array of longs</summary> */ 185 Array.Resize(ref _bits, nwords); 312 /** <summary>return how much space is being used by the bits array not how many actually have member bits on.</summary> */
|
| /external/caliper/caliper/src/main/java/com/google/caliper/memory/ |
| ObjectExplorer.java | 24 import java.lang.reflect.Array; 119 * Since we push paths to explore in a stack, we push references found in the array in 120 * reverse order, so when we pop them, they will be in the array's order. 122 for (int i = Array.getLength(value) - 1; i >= 0; i--) { 123 Object childValue = Array.get(value, i); 213 * @return An array of fields of the given class.
|
| /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/ |
| FileProcessor.java | 19 import com.badlogic.gdx.utils.Array;
41 Array<Pattern> inputRegex = new Array();
|
| /external/libgdx/gdx/src/com/badlogic/gdx/assets/ |
| AssetLoadingTask.java | 23 import com.badlogic.gdx.utils.Array;
43 volatile Array<AssetDescriptor> dependencies;
156 private void removeDuplicates(Array<AssetDescriptor> array) {
157 boolean ordered = array.ordered;
158 array.ordered = true;
159 for (int i = 0; i < array.size; ++i) {
160 final String fn = array.get(i).fileName;
161 final Class type = array.get(i).type;
162 for (int j = array.size - 1; j > i; --j) { [all...] |
| /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
| ParallelArray.java | 5 import com.badlogic.gdx.utils.Array; 9 /** This class represents an group of elements like an array, but the properties of the elements are stored as separate arrays. 154 /**the channels added to the array*/ 155 Array<Channel> arrays; 156 /** the maximum amount of elements that this array can hold */ 162 arrays = new Array<Channel>(false, 2, Channel.class); 207 Channel array = arrays.items[i]; local 208 if(array.id == id) 214 /**Adds an element considering the values in the same order as the current channels in the array. 242 for(Channel array : arrays) [all...] |
| /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/ |
| RenderableShapeBuilder.java | 25 import com.badlogic.gdx.utils.Array; 56 private final static Array<Renderable> renderables = new Array<Renderable>(); 124 // Get min vertice to max vertice in indices array
|
| /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
| ImmediateModeRenderer20.java | 25 import com.badlogic.gdx.utils.Array;
83 Array<VertexAttribute> attribs = new Array<VertexAttribute>();
90 VertexAttribute[] array = new VertexAttribute[attribs.size];
local 92 array[i] = attribs.get(i);
93 return array;
|
| /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/ |
| ScissorStack.java | 26 import com.badlogic.gdx.utils.Array;
33 private static Array<Rectangle> scissors = new Array<Rectangle>();
|
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
| NinePatchTest.java | 31 import com.badlogic.gdx.utils.Array;
52 private Array<TestPatch> ninePatches = new Array<TestPatch>(10);
|
| ParticleEmittersTest.java | 43 import com.badlogic.gdx.utils.Array; 50 Array<PooledEffect> effects = new Array();
|
| PathTest.java | 32 import com.badlogic.gdx.utils.Array; 44 Array<Path<Vector2>> paths = new Array<Path<Vector2>>();
|
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
| ConstraintsTest.java | 29 import com.badlogic.gdx.utils.Array; 34 final Array<btTypedConstraint> constraints = new Array<btTypedConstraint>();
|
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/ |
| FreeTypePackTest.java | 33 import com.badlogic.gdx.utils.Array;
37 * This example uses enum ordinals for fast access to a two-dimensional array, which stores BitmapFonts by size and style. A more
67 Array<TextureRegion> regions;
110 // NOTE: Before production release on mobile, you should cache the array from values()
189 regions = new Array<TextureRegion>();
|
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
| MultipleRenderTargetTest.java | 88 Array<Light> lights = new Array<Light>(); 89 Array<Renderable> renderables = new Array<Renderable>(); 461 private final static Map<Application, Array<MRTFrameBuffer>> buffers = new HashMap<Application, Array<MRTFrameBuffer>>(); 464 private Array<Texture> colorTextures; 526 colorTextures = new Array<Texture>(); 660 Array<MRTFrameBuffer> managedResources = buffers.get(app); 662 managedResources = new Array<MRTFrameBuffer>() [all...] |
| ShaderLoader.java | 26 import com.badlogic.gdx.utils.Array;
34 private Array<String> includes = new Array<String>();
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
| codegen.ml | 44 if Array.length params == Array.length args then () else 46 let args = Array.map codegen_expr args in 174 let doubles = Array.make (Array.length args) double_type in 194 Array.iteri (fun i a ->
|
| /external/llvm/unittests/Support/ |
| YAMLParserTest.cpp | 49 ExpectParseSuccess("Empty array", "[]"); 53 ExpectParseError("Not closing array", "["); 54 ExpectParseError("Not closing array", " [ "); 55 ExpectParseError("Not closing array", " [x"); 59 ExpectParseSuccess("Array with spaces", " [ ] "); 102 "Multiple objects in array", 130 ExpectParseSuccess("Array of arrays", "[[]]"); 176 ExpectParseError("In array starting with EOF", "["); 177 ExpectParseError("In array element starting with EOF", "[[], "); 178 ExpectParseError("In array hitting EOF", "[[] ") [all...] |
| /external/mesa3d/src/mesa/state_tracker/ |
| st_cb_rasterpos.c | 64 struct gl_client_array array[VERT_ATTRIB_MAX]; member in struct:rastpos_stage 197 for (i = 0; i < Elements(rs->array); i++) { 198 rs->array[i].Size = 4; 199 rs->array[i].Type = GL_FLOAT; 200 rs->array[i].Format = GL_RGBA; 201 rs->array[i].Stride = 0; 202 rs->array[i].StrideB = 0; 203 rs->array[i].Ptr = (GLubyte *) ctx->Current.Attrib[i]; 204 rs->array[i].Enabled = GL_TRUE; 205 rs->array[i].Normalized = GL_TRUE [all...] |
| st_draw.c | 202 const struct gl_client_array **arrays = ctx->Array._DrawArrays; 246 info.primitive_restart = ctx->Array.PrimitiveRestart; 247 info.restart_index = ctx->Array.RestartIndex;
|
| /external/mesa3d/src/mesa/vbo/ |
| vbo_split_inplace.c | 45 const struct gl_client_array **array; member in struct:split_context 66 const struct gl_client_array **saved_arrays = ctx->Array._DrawArrays; 87 ctx->Array._DrawArrays = split->array; 99 ctx->Array._DrawArrays = saved_arrays; 240 split->array, 252 split->array, 279 split.array = arrays;
|
| /packages/apps/Camera2/src/com/android/camera/util/ |
| CaptureDataSerializer.java | 38 import java.lang.reflect.Array; 140 int length = Array.getLength(object); 142 Object item = Array.get(object, i);
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
| sharedctypes.py | 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized'] 78 Returns a ctypes array allocated from shared memory 108 def Array(typecode_or_type, size_or_initializer, **kwds): 134 elif isinstance(obj, ctypes.Array): 155 if isinstance(obj, ctypes.Array):
|
| /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
| sharedctypes.py | 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized'] 78 Returns a ctypes array allocated from shared memory 108 def Array(typecode_or_type, size_or_initializer, **kwds): 134 elif isinstance(obj, ctypes.Array): 155 if isinstance(obj, ctypes.Array):
|