OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:primitivearray
(Results
1 - 10
of
10
) sorted by null
/external/mockito/src/org/mockito/internal/matchers/
VarargCapturingMatcher.java
50
Object[]
primitiveArray
= new Object[Array.getLength(varArgArray)];
51
for (int i = 0; i <
primitiveArray
.length; i++) {
52
primitiveArray
[i] = Array.get(varArgArray, i);
54
return Arrays.asList((T[])
primitiveArray
);
/art/runtime/mirror/
array.cc
127
template <typename T> GcRoot<Class>
PrimitiveArray
<T>::array_class_;
130
template class
PrimitiveArray
<uint8_t>; // BooleanArray
131
template class
PrimitiveArray
<int8_t>; // ByteArray
132
template class
PrimitiveArray
<uint16_t>; // CharArray
133
template class
PrimitiveArray
<double>; // DoubleArray
134
template class
PrimitiveArray
<float>; // FloatArray
135
template class
PrimitiveArray
<int32_t>; // IntArray
136
template class
PrimitiveArray
<int64_t>; // LongArray
137
template class
PrimitiveArray
<int16_t>; // ShortArray
array-inl.h
168
inline void
PrimitiveArray
<T>::VisitRoots(RootCallback* callback, void* arg) {
173
inline
PrimitiveArray
<T>*
PrimitiveArray
<T>::Alloc(Thread* self, size_t length) {
176
return down_cast<
PrimitiveArray
<T>*>(raw_array);
180
inline T
PrimitiveArray
<T>::Get(int32_t i) {
189
inline void
PrimitiveArray
<T>::Set(int32_t i, T value) {
199
inline void
PrimitiveArray
<T>::Set(int32_t i, T value) {
209
inline void
PrimitiveArray
<T>::SetWithoutChecks(int32_t i, T value) {
244
inline void
PrimitiveArray
<T>::Memmove(int32_t dst_pos,
PrimitiveArray
<T>* src, int32_t src_pos
[
all
...]
array.h
111
class MANAGED
PrimitiveArray
: public Array {
115
static
PrimitiveArray
<T>* Alloc(Thread* self, size_t length)
150
void Memmove(int32_t dst_pos,
PrimitiveArray
<T>* src, int32_t src_pos, int32_t count)
158
void Memcpy(int32_t dst_pos,
PrimitiveArray
<T>* src, int32_t src_pos, int32_t count)
183
DISALLOW_IMPLICIT_CONSTRUCTORS(
PrimitiveArray
);
object.h
41
template<class T> class
PrimitiveArray
;
42
typedef
PrimitiveArray
<uint8_t> BooleanArray;
43
typedef
PrimitiveArray
<int8_t> ByteArray;
44
typedef
PrimitiveArray
<uint16_t> CharArray;
45
typedef
PrimitiveArray
<double> DoubleArray;
46
typedef
PrimitiveArray
<float> FloatArray;
47
typedef
PrimitiveArray
<int32_t> IntArray;
48
typedef
PrimitiveArray
<int64_t> LongArray;
49
typedef
PrimitiveArray
<int16_t> ShortArray;
/art/runtime/
utf.h
35
template<class T> class
PrimitiveArray
;
36
typedef
PrimitiveArray
<uint16_t> CharArray;
runtime.cc
[
all
...]
runtime.h
52
template<class T> class
PrimitiveArray
;
53
typedef
PrimitiveArray
<int8_t> ByteArray;
thread.h
61
template<class T> class
PrimitiveArray
;
62
typedef
PrimitiveArray
<int32_t> IntArray;
[
all
...]
/art/runtime/interpreter/
interpreter_common.cc
724
static void RecordArrayElementsInTransactionImpl(mirror::
PrimitiveArray
<T>* array, int32_t count)
[
all
...]
Completed in 667 milliseconds