/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/ |
DoubleKeyMap.java | 9 public class DoubleKeyMap<Key1, Key2, Value> { 10 Map<Key1, Map<Key2, Value>> data = new LinkedHashMap<Key1, Map<Key2, Value>>(); 12 public Value put(Key1 k1, Key2 k2, Value v) { 13 Map<Key2, Value> data2 = data.get(k1); 16 data2 = new LinkedHashMap<Key2, Value>(); 26 public Value get(Key1 k1, Key2 k2) { 27 Map<Key2, Value> data2 = data.get(k1); 32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); } 36 Map<Key2, Value> data2 = data.get(k1) [all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Application/Cryptest/ |
DhVerify.c | 38 UINT8 Key2[64];
50 Key2Length = sizeof (Key2);
90 Print (L"Generate key2 ... ");
104 Print (L"Compute key2 ... ");
105 Status = DhComputeKey (Dh2, PublicKey1, PublicKey1Length, Key2, &Key2Length);
117 if (CompareMem (Key1, Key2, Key1Length) != 0) {
|
/external/lzma/CPP/7zip/UI/Common/ |
UpdateCallback.h | 37 UInt64 Key2;
44 return MyCompare(Key2, a.Key2);
|
UpdateCallback.cpp | 496 pair.Key2 = props.FileID_Low;
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
Proxy.java | 428 * Key1 and Key2 are optimized for the common use of dynamic proxies 462 private static final class Key2 extends WeakReference<Class<?>> { 466 Key2(Class<?> intf1, Class<?> intf2) { 482 obj.getClass() == Key2.class && 484 intf1 == ((Key2) obj).get() && 486 intf2 == ((Key2) obj).ref2.get(); 546 case 2: return new Key2(interfaces[0], interfaces[1]); [all...] |
/prebuilts/go/darwin-x86/src/text/template/ |
doc.go | 169 .Field1.Key1.Field2.Key2 173 $x.key1.key2 184 .Field1.Key1.Method1.Field2.Key2.Method2
|
/prebuilts/go/linux-x86/src/text/template/ |
doc.go | 169 .Field1.Key1.Field2.Key2 173 $x.key1.key2 184 .Field1.Key1.Method1.Field2.Key2.Method2
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
GenPcdDb.py | 612 # @param Key2 The key used to search the List2
613 # @param List2 The list that Key2 will be searched
615 # @retval Index The position inside the list where list1[Index] == Key1 and list2[Index] == Key2
617 def GetMatchedIndex(Key1, List1, Key2, List2):
621 if List2[Index] == Key2:
[all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
dbdaoint.h | [all...] |
/frameworks/base/ |
preloaded-classes | [all...] |
compiled-classes-phone | [all...] |