Searched refs:V (Results 1 – 8 of 8) sorted by relevance
/art/compiler/llvm/ |
D | runtime_support_llvm_func_list.h | 20 #define RUNTIME_SUPPORT_FUNC_LIST(V) \ argument 21 V(LockObject, art_portable_lock_object_from_code) \ 22 V(UnlockObject, art_portable_unlock_object_from_code) \ 23 V(GetCurrentThread, art_portable_get_current_thread_from_code) \ 24 V(SetCurrentThread, art_portable_set_current_thread_from_code) \ 25 V(PushShadowFrame, art_portable_push_shadow_frame_from_code) \ 26 V(PopShadowFrame, art_portable_pop_shadow_frame_from_code) \ 27 V(TestSuspend, art_portable_test_suspend_from_code) \ 28 V(ThrowException, art_portable_throw_exception_from_code) \ 29 V(ThrowStackOverflowException, art_portable_throw_stack_overflow_from_code) \ [all …]
|
/art/runtime/ |
D | dex_instruction_list.h | 20 #define DEX_INSTRUCTION_LIST(V) \ argument 21 V(0x00, NOP, "nop", k10x, false, kNone, kContinue, kVerifyNone) \ 22 V(0x01, MOVE, "move", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \ 23 V(0x02, MOVE_FROM16, "move/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \ 24 V(0x03, MOVE_16, "move/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \ 25 V(0x04, MOVE_WIDE, "move-wide", k12x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \ 26 …V(0x05, MOVE_WIDE_FROM16, "move-wide/from16", k22x, true, kNone, kContinue, kVerifyRegAWide | kVer… 27 …V(0x06, MOVE_WIDE_16, "move-wide/16", k32x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBW… 28 V(0x07, MOVE_OBJECT, "move-object", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \ 29 …V(0x08, MOVE_OBJECT_FROM16, "move-object/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVer… [all …]
|
D | safe_map.h | 29 template <typename K, typename V, typename Comparator = std::less<K>, 30 typename Allocator = std::allocator<std::pair<const K, V> > > 33 typedef SafeMap<K, V, Comparator, Allocator> Self; 36 typedef typename ::std::map<K, V, Comparator>::iterator iterator; 37 typedef typename ::std::map<K, V, Comparator>::const_iterator const_iterator; 38 typedef typename ::std::map<K, V, Comparator>::size_type size_type; 39 typedef typename ::std::map<K, V, Comparator>::value_type value_type; 64 V Get(const K& k) const { in Get() 71 void Put(const K& k, const V& v) { in Put() 79 void Overwrite(const K& k, const V& v) { in Overwrite() [all …]
|
/art/compiler/utils/ |
D | scoped_hashtable.h | 26 template <typename K, typename V> 33 scopes.push_front(std::map<K, V>()); in OpenScope() 38 V Lookup(K k) const { in Lookup() 39 for (typename std::list<std::map<K, V> >::const_iterator scopes_it = scopes.begin(); in Lookup() 41 typename std::map<K, V>::const_iterator result_it = (*scopes_it).find(k); in Lookup() 50 void Add(K k, V v) { in Add() 52 scopes.front().insert(std::pair< K, V >(k, v)); in Add() 67 std::list<std::map<K, V> > scopes;
|
/art/test/031-class-attributes/src/ |
D | FancyClass.java | 20 public class FancyClass<K,V> extends HashMap<K,V> implements Map<K,V> {
|
/art/test/046-reflect/ |
D | expected.txt | 24 SuperTarget constructor ()V 25 Target constructor ()V 30 myNoargMethod ()V 90 SuperTarget constructor ()V 91 Target constructor (IF)V : ii=7 ff=3.3333
|
/art/test/031-class-attributes/ |
D | expected.txt | 209 …genericSignature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/util/HashMap<TK;TV;>;Ljava/util/… 211 genericSuperclass: java.util.HashMap<K, V> 229 genericInterfaces: [1] java.util.Map<K, V> 230 typeParameters: [2] K, V 231 constructor signature: (LClassAttrs$MemberClass<TXYZ;>;)V
|
/art/test/097-duplicate-method/src/ |
D | Test.j | 22 invokespecial java/lang/Object/<init>()V
|