OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:array
(Results
876 - 900
of
4096
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/external/v8/test/mjsunit/
extra-arguments.js
34
var
array
= f.arguments;
35
for (var i = 0; i <
array
.length; i++) {
36
result +=
array
[i];
45
var
array
= new
Array
(i);
49
array
[j] = j;
51
assertEquals(expected, f.apply(null,
array
), String(i));
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameValues.java
19
import java.lang.reflect.
Array
;
26
* This returns 1, if the Frame value is null, or if the value is not an
array
.
35
return
Array
.getLength(super.getValue());
40
* Returns the values in the Frame as an
array
.
42
* Note, that this may be called on Frames that have a non-
array
object assigned to them. In
43
* that case, this method will wrap the object in an
array
and return that. This way, filters
46
* @return The
array
of values in this frame.
53
// Allow reading a single as an
array
.
54
Object[]
array
= (Object[])
Array
.newInstance(value.getClass(), 1)
local
[
all
...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
Charsets.java
49
* Returns a new byte
array
containing the bytes corresponding to the given characters,
55
return US_ASCII.encode(cb).
array
();
59
* Returns a new byte
array
containing the bytes corresponding to the given characters,
65
return ISO_8859_1.encode(cb).
array
();
69
* Returns a new byte
array
containing the bytes corresponding to the given characters,
75
return UTF_8.encode(cb).
array
();
79
* Returns a new byte
array
containing the bytes corresponding to the given characters,
/frameworks/webview/chromium/tools/
memreport.py
96
array
= eval(field)
97
for i in xrange(len(
array
)):
98
mem_usage[key] += float(
array
[i]) / (i + 2)
/libcore/luni/src/main/java/java/security/cert/
X509CRL.java
82
byte[]
array
= getEncoded();
83
for (int i=0; i<
array
.length; i++) {
84
res +=
array
[i] & 0xFF;
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
ObjectIdentifier.java
42
//OID as
array
of integers
61
* Creates ObjectIdentifier(OID) from
array
of integers.
63
* @param oid -
array
of integers
76
* Creates ObjectIdentifier(OID) from
array
of integers.
78
* @param oid -
array
of integers
128
* representation as
array
of integers, otherwise false
184
* @param oid - oid as
array
of integers
206
* Returns hash code for
array
of integers
208
* @param oid -
array
of integers
210
public static int hashIntArray(int[]
array
) {
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
BasicConstraints.java
102
Object[]
array
= (Object[]) object;
103
values[0] =
array
[0];
104
values[1] = ((BigInteger)
array
[1]).toByteArray();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceContentProvider.java
73
Object[]
array
= mResources.getResourceItemsOfType(
local
75
Arrays.sort(
array
);
76
return
array
;
/dalvik/vm/mterp/armv5te/
OP_AGET.S
4
*
Array
get, 32 bits or less. vAA <- vBB[vCC].
15
GET_VREG(r0, r2) @ r0<- vBB (
array
object)
17
cmp r0, #0 @ null
array
object?
OP_APUT.S
4
*
Array
put, 32 bits or less. vBB[vCC] <- vAA.
15
GET_VREG(r0, r2) @ r0<- vBB (
array
object)
17
cmp r0, #0 @ null
array
object?
OP_APUT_OBJECT.S
3
* Store an object into an
array
. vBB[vCC] <- vAA.
10
GET_VREG(rINST, r2) @ rINST<- vBB (
array
object)
12
cmp rINST, #0 @ null
array
object?
26
* r10 = offset into
array
(vBB + vCC * width)
33
bl dvmCanPutArrayElement @ test object type vs.
array
type
/dalvik/vm/mterp/mips/
OP_AGET.S
4
*
Array
get, 32 bits or less. vAA <- vBB[vCC].
15
GET_VREG(a0, a2) # a0 <- vBB (
array
object)
17
# null
array
object?
OP_AGET_WIDE.S
3
*
Array
get, 64 bits. vAA <- vBB[vCC].
12
GET_VREG(a0, a2) # a0 <- vBB (
array
object)
14
# null
array
object?
OP_APUT.S
4
*
Array
put, 32 bits or less. vBB[vCC] <- vAA.
11
GET_VREG(a0, a2) # a0 <- vBB (
array
object)
13
# null
array
object?
OP_APUT_WIDE.S
3
*
Array
put, 64 bits. vBB[vCC] <- vAA.
12
GET_VREG(a0, a2) # a0 <- vBB (
array
object)
14
# null
array
object?
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
record-event-listener.rb
9
A debug listener that records intercepted events as strings in an
array
.
/external/chromium/base/
basictypes.h
105
// The arraysize(arr) macro returns the # of elements in an
array
arr.
110
// One caveat is that arraysize() doesn't accept any
array
of an
120
char (&ArraySizeHelper(T (&
array
)[N]))[N];
127
char (&ArraySizeHelper(const T (&
array
)[N]))[N];
130
#define arraysize(
array
) (sizeof(ArraySizeHelper(
array
)))
152
// the
array
) and sizeof(*(arr)) (the # of bytes in one
array
154
// indeed an
array
, in which case the division result is the # of
155
// elements in the
array
. Otherwise, arr cannot possibly be an array
[
all
...]
/external/chromium_org/base/
basictypes.h
43
//
array
/vector index, etc.
112
// The arraysize(arr) macro returns the # of elements in an
array
arr.
117
// One caveat is that arraysize() doesn't accept any
array
of an
127
char (&ArraySizeHelper(T (&
array
)[N]))[N];
134
char (&ArraySizeHelper(const T (&
array
)[N]))[N];
137
#define arraysize(
array
) (sizeof(ArraySizeHelper(
array
)))
159
// the
array
) and sizeof(*(arr)) (the # of bytes in one
array
161
// indeed an
array
, in which case the division result is the # o
[
all
...]
/external/chromium_org/third_party/WebKit/Source/wtf/
TypedArrayBase.h
40
bool set(TypedArrayBase<T>*
array
, unsigned offset)
42
return setImpl(
array
, offset * sizeof(T));
101
static PassRefPtr<Subclass> create(const T*
array
, unsigned length)
106
a->set(i,
array
[i]);
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Shader.h
35
Varying(GLenum type, const std::string &name, int size, bool
array
)
36
: type(type), name(name), size(size),
array
(
array
), reg(-1), col(-1)
43
bool
array
;
member in struct:gl::Varying
/external/chromium_org/third_party/cld/base/
basictypes.h
97
// The arraysize(arr) macro returns the # of elements in an
array
arr.
102
// One caveat is that arraysize() doesn't accept any
array
of an
112
char (&ArraySizeHelper(T (&
array
)[N]))[N];
119
char (&ArraySizeHelper(const T (&
array
)[N]))[N];
122
#define arraysize(
array
) (sizeof(ArraySizeHelper(
array
)))
144
// the
array
) and sizeof(*(arr)) (the # of bytes in one
array
146
// indeed an
array
, in which case the division result is the # of
147
// elements in the
array
. Otherwise, arr cannot possibly be an array
[
all
...]
/external/chromium_org/third_party/icu/source/common/
uarrsort.h
26
* Function type for comparing two items as part of sorting an
array
or similar.
44
*
Array
sorting function.
45
* Uses a UComparator for comparing
array
items to each other, and simple
48
* @param
array
The
array
to be sorted.
49
* @param length The number of items in the
array
.
50
* @param itemSize The size in bytes of each
array
item.
59
uprv_sortArray(void *
array
, int32_t length, int32_t itemSize,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
evergreen_compute_internal.h
94
void evergreen_mult_reg_set_(struct evergreen_compute_resource* res, int index, u32*
array
, int size);
102
#define evergreen_mult_reg_set(res, index,
array
) evergreen_mult_reg_set_(res, index,
array
, sizeof(
array
))
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_pm4.c
164
if (idx != ~0 && rctx->emitted.
array
[idx] == state) {
165
rctx->emitted.
array
[idx] = NULL;
179
struct si_pm4_state *state = rctx->queued.
array
[i];
181
if (!state || rctx->emitted.
array
[i] == state)
194
struct si_pm4_state *state = rctx->queued.
array
[i];
196
if (!state || rctx->emitted.
array
[i] == state)
225
struct si_pm4_state *state = rctx->queued.
array
[i];
227
if (!state || rctx->emitted.
array
[i] == state)
231
rctx->emitted.
array
[i] = state;
/external/chromium_org/third_party/mesa/src/src/glsl/
lower_vec_index_to_swizzle.cpp
70
if (deref->
array
->type->is_matrix() || deref->
array
->type->is_array())
96
(deref->
array
->type->vector_elements - 1));
98
return new(ctx) ir_swizzle(deref->
array
, i, 0, 0, 0, 1);
Completed in 984 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>