OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjectArray
(Results
1 - 25
of
55
) sorted by null
1
2
3
/art/runtime/mirror/
proxy.h
32
ObjectArray
<Class>* GetInterfaces() {
36
ObjectArray
<
ObjectArray
<Class> >* GetThrows() {
41
ObjectArray
<Class>* interfaces_;
42
ObjectArray
<
ObjectArray
<Class> >* throws_;
dex_cache.h
47
ObjectArray
<String>* strings,
48
ObjectArray
<Class>* types,
49
ObjectArray
<ArtMethod>* methods,
50
ObjectArray
<ArtField>* fields,
51
ObjectArray
<StaticStorageBase>* initialized_static_storage)
131
ObjectArray
<String>* GetStrings() const
133
return GetFieldObject<
ObjectArray
<String>* >(StringsOffset(), false);
136
ObjectArray
<Class>* GetResolvedTypes() const
138
return GetFieldObject<
ObjectArray
<Class>* >(
142
ObjectArray
<ArtMethod>* GetResolvedMethods() cons
[
all
...]
iftable.h
25
class MANAGED IfTable : public
ObjectArray
<Object> {
35
ObjectArray
<ArtMethod>* GetMethodArray(int32_t i) const
37
ObjectArray
<ArtMethod>* method_array =
38
down_cast<
ObjectArray
<ArtMethod>*>(Get((i * kMax) + kMethodArray));
44
ObjectArray
<ArtMethod>* method_array =
45
down_cast<
ObjectArray
<ArtMethod>*>(Get((i * kMax) + kMethodArray));
52
void SetMethodArray(int32_t i,
ObjectArray
<ArtMethod>* new_ma)
dex_cache.cc
36
ObjectArray
<String>* strings,
37
ObjectArray
<Class>* resolved_types,
38
ObjectArray
<ArtMethod>* resolved_methods,
39
ObjectArray
<ArtField>* resolved_fields,
40
ObjectArray
<StaticStorageBase>* initialized_static_storage) {
72
ObjectArray
<ArtMethod>* resolved_methods = GetResolvedMethods();
object_array.h
26
class MANAGED
ObjectArray
: public Array {
28
static
ObjectArray
<T>* Alloc(Thread* self, Class* object_array_class, int32_t length)
49
static void Copy(const
ObjectArray
<T>* src, int src_pos,
50
ObjectArray
<T>* dst, int dst_pos,
54
ObjectArray
<T>* CopyOf(Thread* self, int32_t new_length)
58
DISALLOW_IMPLICIT_CONSTRUCTORS(
ObjectArray
);
object_array-inl.h
32
inline
ObjectArray
<T>*
ObjectArray
<T>::Alloc(Thread* self, Class* object_array_class, int32_t length) {
42
inline T*
ObjectArray
<T>::Get(int32_t i) const {
51
inline bool
ObjectArray
<T>::CheckAssignable(T* object) {
63
inline void
ObjectArray
<T>::Set(int32_t i, T* object) {
73
inline void
ObjectArray
<T>::SetWithoutChecks(int32_t i, T* object) {
80
inline void
ObjectArray
<T>::SetPtrWithoutChecks(int32_t i, T* object) {
87
inline T*
ObjectArray
<T>::GetWithoutChecks(int32_t i) const {
94
inline void
ObjectArray
<T>::Copy(const
ObjectArray
<T>* src, int src_pos
[
all
...]
class-inl.h
57
inline
ObjectArray
<ArtMethod>* Class::GetDirectMethods() const {
59
return GetFieldObject<
ObjectArray
<ArtMethod>*>(
63
inline void Class::SetDirectMethods(
ObjectArray
<ArtMethod>* new_direct_methods)
65
DCHECK(NULL == GetFieldObject<
ObjectArray
<ArtMethod>*>(
79
ObjectArray
<ArtMethod>* direct_methods =
80
GetFieldObject<
ObjectArray
<ArtMethod>*>(
90
inline
ObjectArray
<ArtMethod>* Class::GetVirtualMethods() const {
92
return GetFieldObject<
ObjectArray
<ArtMethod>*>(
96
inline void Class::SetVirtualMethods(
ObjectArray
<ArtMethod>* new_virtual_methods) {
122
ObjectArray
<ArtMethod>* virtual_methods
[
all
...]
art_method-inl.h
61
inline
ObjectArray
<String>* ArtMethod::GetDexCacheStrings() const {
62
return GetFieldObject<
ObjectArray
<String>*>(
66
inline
ObjectArray
<ArtMethod>* ArtMethod::GetDexCacheResolvedMethods() const {
67
return GetFieldObject<
ObjectArray
<ArtMethod>*>(
71
inline
ObjectArray
<Class>* ArtMethod::GetDexCacheResolvedTypes() const {
72
return GetFieldObject<
ObjectArray
<Class>*>(
76
inline
ObjectArray
<StaticStorageBase>* ArtMethod::GetDexCacheInitializedStaticStorage() const {
77
return GetFieldObject<
ObjectArray
<StaticStorageBase>*>(
art_method.h
166
ObjectArray
<String>* GetDexCacheStrings() const;
167
void SetDexCacheStrings(
ObjectArray
<String>* new_dex_cache_strings)
187
ObjectArray
<ArtMethod>* GetDexCacheResolvedMethods() const;
188
void SetDexCacheResolvedMethods(
ObjectArray
<ArtMethod>* new_dex_cache_methods)
191
ObjectArray
<Class>* GetDexCacheResolvedTypes() const;
192
void SetDexCacheResolvedTypes(
ObjectArray
<Class>* new_dex_cache_types)
195
ObjectArray
<StaticStorageBase>* GetDexCacheInitializedStaticStorage() const;
196
void SetDexCacheInitializedStaticStorage(
ObjectArray
<StaticStorageBase>* new_value)
384
ObjectArray
<StaticStorageBase>* dex_cache_initialized_static_storage_;
387
ObjectArray
<ArtMethod>* dex_cache_resolved_methods_
[
all
...]
object.cc
63
const
ObjectArray
<Object>* array = copy->AsObjectArray<Object>();
93
ObjectArray
<ArtField>* fields = cur->GetIFields();
111
ObjectArray
<ArtField>* fields = AsClass()->GetSFields();
class.h
505
ObjectArray
<ArtMethod>* GetDirectMethods() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
507
void SetDirectMethods(
ObjectArray
<ArtMethod>* new_direct_methods)
518
ObjectArray
<ArtMethod>* GetVirtualMethods() const
521
void SetVirtualMethods(
ObjectArray
<ArtMethod>* new_virtual_methods)
536
ObjectArray
<ArtMethod>* GetVTable() const;
538
ObjectArray
<ArtMethod>* GetVTableDuringLinking() const;
540
void SetVTable(
ObjectArray
<ArtMethod>* new_vtable)
603
ObjectArray
<ArtField>* GetIFields() const;
605
void SetIFields(
ObjectArray
<ArtField>* new_ifields) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
665
ObjectArray
<ArtField>* GetSFields() const
[
all
...]
throwable.cc
63
ObjectArray
<Object>* method_trace = down_cast<
ObjectArray
<Object>*>(stack_state);
object-inl.h
106
inline
ObjectArray
<T>* Object::AsObjectArray() {
108
return down_cast<
ObjectArray
<T>*>(this);
112
inline const
ObjectArray
<T>* Object::AsObjectArray() const {
114
return down_cast<const
ObjectArray
<T>*>(this);
art_method.cc
67
void ArtMethod::SetDexCacheStrings(
ObjectArray
<String>* new_dex_cache_strings) {
72
void ArtMethod::SetDexCacheResolvedMethods(
ObjectArray
<ArtMethod>* new_dex_cache_methods) {
77
void ArtMethod::SetDexCacheResolvedTypes(
ObjectArray
<Class>* new_dex_cache_classes) {
82
void ArtMethod::SetDexCacheInitializedStaticStorage(
ObjectArray
<StaticStorageBase>* new_value) {
112
ObjectArray
<ArtMethod>* super_class_vtable = super_class->GetVTable();
object.h
38
template<class T> class
ObjectArray
;
130
ObjectArray
<T>* AsObjectArray();
133
const
ObjectArray
<T>* AsObjectArray() const;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionSync.idl
34
[Custom] SQLResultSet executeSql(DOMString sqlStatement,
ObjectArray
arguments);
SQLTransaction.idl
33
ObjectArray
arguments,
/art/runtime/native/
java_lang_reflect_Proxy.cc
31
mirror::
ObjectArray
<mirror::Class>* interfaces =
32
soa.Decode<mirror::
ObjectArray
<mirror::Class>*>(javaInterfaces);
34
mirror::
ObjectArray
<mirror::ArtMethod>* methods =
35
soa.Decode<mirror::
ObjectArray
<mirror::ArtMethod>*>(javaMethods);
36
mirror::
ObjectArray
<mirror::
ObjectArray
<mirror::Class> >* throws =
37
soa.Decode<mirror::
ObjectArray
<mirror::
ObjectArray
<mirror::Class> >*>(javaThrows);
java_lang_reflect_Method.cc
56
mirror::
ObjectArray
<mirror::Class>* declared_exceptions =
/art/runtime/
class_linker-inl.h
97
inline mirror::
ObjectArray
<T>* ClassLinker::AllocObjectArray(Thread* self, size_t length) {
98
return mirror::
ObjectArray
<T>::Alloc(self, GetClassRoot(kObjectArrayClass), length);
101
inline mirror::
ObjectArray
<mirror::Class>* ClassLinker::AllocClassArray(Thread* self,
103
return mirror::
ObjectArray
<mirror::Class>::Alloc(self, GetClassRoot(kClassArrayClass), length);
106
inline mirror::
ObjectArray
<mirror::String>* ClassLinker::AllocStringArray(Thread* self,
108
return mirror::
ObjectArray
<mirror::String>::Alloc(self, GetClassRoot(kJavaLangStringArrayClass),
112
inline mirror::
ObjectArray
<mirror::ArtMethod>* ClassLinker::AllocArtMethodArray(Thread* self,
114
return mirror::
ObjectArray
<mirror::ArtMethod>::Alloc(self,
123
inline mirror::
ObjectArray
<mirror::ArtField>* ClassLinker::AllocArtFieldArray(Thread* self,
125
return mirror::
ObjectArray
<mirror::ArtField>::Alloc(self
[
all
...]
image.cc
80
mirror::
ObjectArray
<mirror::Object>* ImageHeader::GetImageRoots() const {
81
return reinterpret_cast<mirror::
ObjectArray
<mirror::Object>*>(image_roots_);
class_linker.h
42
template<class T> class
ObjectArray
;
287
mirror::
ObjectArray
<T>* AllocObjectArray(Thread* self, size_t length)
290
mirror::
ObjectArray
<mirror::Class>* AllocClassArray(Thread* self, size_t length)
293
mirror::
ObjectArray
<mirror::String>* AllocStringArray(Thread* self, size_t length)
296
mirror::
ObjectArray
<mirror::ArtMethod>* AllocArtMethodArray(Thread* self, size_t length)
302
mirror::
ObjectArray
<mirror::ArtField>* AllocArtFieldArray(Thread* self, size_t length)
305
mirror::
ObjectArray
<mirror::StackTraceElement>* AllocStackTraceElementArray(Thread* self,
318
mirror::Class* CreateProxyClass(mirror::String* name, mirror::
ObjectArray
<mirror::Class>* interfaces,
320
mirror::
ObjectArray
<mirror::ArtMethod>* methods,
321
mirror::
ObjectArray
<mirror::ObjectArray<mirror::Class> >* throws
[
all
...]
image.h
106
mirror::
ObjectArray
<mirror::Object>* GetImageRoots() const;
/art/runtime/gc/
heap_test.cc
48
SirtRef<mirror::
ObjectArray
<mirror::Object> > array(soa.Self(),
49
mirror::
ObjectArray
<mirror::Object>::Alloc(soa.Self(), c, 2048));
/art/compiler/
image_writer.h
147
mirror::
ObjectArray
<mirror::Object>* CreateImageRoots() const
162
void FixupObjectArray(const mirror::
ObjectArray
<mirror::Object>* orig,
163
mirror::
ObjectArray
<mirror::Object>* copy)
Completed in 760 milliseconds
1
2
3