/external/webkit/WebCore/html/canvas/ |
WebGLBuffer.h | 48 bool associateBufferData(unsigned long target, WebGLArray* array); 49 bool associateBufferSubData(unsigned long target, long offset, WebGLArray* array); 76 // draw call as long as all bound array buffers are at least
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
Summary.java | 28 ? R.array.wifi_status : R.array.wifi_status_with_ssid);
|
/external/webkit/WebKitTools/android/flex-2.5.4a/ |
misc.c | 79 /* allocate_array - allocate memory for an integer array of the given size */ 129 /* bubble - bubble sort an integer array in increasing order 136 * sorts the first n elements of array v and replaces them in 140 * v - the array to be sorted 239 /* cshell - shell sort a character array in increasing order 248 * Does a shell sort of the first n elements of array v. 253 * v - array to be sorted 437 /* mark_defs1 - mark the current position in the action array as 450 /* mark_prolog - mark the current position in the action array as 461 /* mk2data - generate a data statement for a two-dimensional array [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_APUT_OBJECT.S | 3 * Store an object into an array. vBB[vCC] <- vAA. 13 GET_VREG(r1, r2) @ r1<- vBB (array object) 15 cmp r1, #0 @ null array object? 29 * r10 = offset into array (vBB + vCC * width) 36 bl dvmCanPutArrayElement @ test object type vs. array type
|
/dalvik/vm/mterp/x86/ |
OP_AGET_WIDE.S | 3 * Array get, 64 bits. vAA <- vBB[vCC]. 10 GET_VREG(%eax,%eax) # eax<- vBB (array object) 12 testl %eax,%eax # null array object?
|
OP_APUT_WIDE.S | 3 * Array put, 64 bits. vBB[vCC]<-vAA. 10 GET_VREG(%eax,%eax) # eax<- vBB (array object) 12 testl %eax,%eax # null array object?
|
/dalvik/vm/mterp/x86-atom/ |
OP_AGET_WIDE.S | 19 * Code: 64-bit array get operation. 23 * Description: Perform an array get operation at the identified index 24 * of a given array; load the array value into the destination 36 cmp $$0, %ecx # check for null array object 37 je common_errNullObject # handle null array object
|
OP_APUT.S | 19 * Code: Generic 32-bit array put operation. Provides a "scale" variable 20 * to specify a scale value which depends on the width of the array 22 * move performed also dependent on the type of the array element. 27 * Description: Perform an array put operation from the value register; 29 * given array. vBB[vCC] <- vAA 42 cmp $$0, %ecx # check for null array object 43 je common_errNullObject # handle null array object
|
OP_APUT_WIDE.S | 19 * Code: 64-bit array put operation. 23 * Description: Perform an array put operation from the value register; 25 * given array. vBB[vCC] <- vAA. 36 cmp $$0, %ecx # check for null array object 37 je common_errNullObject # handle null array object
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
Hex.java | 42 * Converts an array of characters representing hexidecimal values into an 43 * array of bytes of those same values. The returned array will be half the 44 * length of the passed array, as it takes two characters to represent any 45 * given byte. An exception is thrown if the passed char array has an odd 48 * @param data An array of characters containing hexidecimal digits 49 * @return A byte array containing binary data decoded from 50 * the supplied char array. 93 * Converts an array of bytes into an array of characters representing the hexidecimal values of each byte in order [all...] |
/packages/apps/Camera/src/com/android/camera/ |
IconIndicator.java | 57 TypedArray array = resources.obtainTypedArray(iconsId); local 58 int n = array.length(); 61 int id = array.getResourceId(i, 0); 64 array.recycle();
|
IconListPreference.java | 56 TypedArray array = res.obtainTypedArray(iconsRes); 57 int n = array.length(); 60 ids[i] = array.getResourceId(i, 0); 62 array.recycle();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
AMReceiver.java | 66 ArrayList<String> array = new ArrayList<String>(); local 138 array.add("ActivityManager: " + s); //$NON-NLS-1$ 143 AdtPlugin.printErrorToConsole(mLaunchInfo.getProject(), array.toArray()); 145 AdtPlugin.printToConsole(mLaunchInfo.getProject(), array.toArray());
|
/external/v8/src/ |
array.js | 30 // const $Array = global.Array; 36 var visited_arrays = new $Array(); 39 // Gets a sorted array of array keys. Useful for operations on sparse 41 function GetSortedArrayKeys(array, intervals) { 50 var e = array[j]; 51 if (!IS_UNDEFINED(e) || j in array) { 58 var e = array[key]; 59 if (!IS_UNDEFINED(e) || key in array) { [all...] |
macros.py | 113 # Constants used on an array to implement the properties of the RegExp object. 119 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); 134 macro LAST_SUBJECT(array) = ((array)[1]); 135 macro LAST_INPUT(array) = ((array)[2]);
|
/dalvik/libcore/nio/src/main/java/java/nio/ |
CharArrayBuffer.java | 22 * the implementation of array based char buffers. 38 CharArrayBuffer(char[] array) { 39 this(array.length, array, 0);
|
/dalvik/libcore/security/src/main/java/javax/security/cert/ |
Certificate.java | 83 byte[] array = getEncoded(); 84 for (int i=0; i<array.length; i++) { 85 res += array[i];
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/ |
InformationObjectSet.java | 90 private int hashIntArray(int[] array) { 92 for (int i = 0; i < array.length && i < 4; i++) { 93 intHash += array[i] << (8 * i); //TODO what about to find better one?
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/utils/ |
Array.java | 30 public class Array { 33 private Array() { 37 * Represents <code>array</code> as <code>String</code> 38 * for printing. Array length can be up to 32767 40 * @param array to be represented as <code>String</code> 42 * @return <code>String</code> representation of the <code>array</code> 44 public static String toString(byte[] array, String prefix) { 57 for (i=0; i<array.length; i++) { 70 int currentByte = (0xff & array[i]);
|
/external/astl/tests/ |
common.h | 51 #define ARRAYSIZE(array) (sizeof(array)/sizeof(array[0]))
|
/external/guava/src/com/google/common/collect/ |
ImmutableSortedAsList.java | 31 ImmutableSortedAsList(Object[] array, int offset, int size, 33 super(array, offset, size); 59 array(), set.comparator(),
|
/external/skia/src/core/ |
SkPtrRecorder.cpp | 39 void SkPtrRecorder::getPtrs(void* array[]) const { 42 SkASSERT(array); 48 array[index] = p[i].fPtr;
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.1.5-1.js | 60 if ( Array == null ) { 61 testcases[0].reason += " Array == null"; 112 var array = new Array(); 115 array[item++] = new TestCase( "SECTION", "Global Code check" ); 117 return ( array );
|
10.1.5-3.js | 62 if ( Array == null ) { 63 testcases[0].reason += " Array == null"; 113 var array = new Array(); 116 array[item++] = new TestCase( "SECTION", "Function Code check" ); 118 return ( array );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.14.js | 48 var array = new Array(); 52 array[item] = new TestCase( SECTION, "Math.random()", "pass", null ); 55 return ( array );
|