/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
D | CstMemberRef.java | 27 private final CstNat nat; field in CstMemberRef 35 /*package*/ CstMemberRef(CstType definingClass, CstNat nat) { in CstMemberRef() argument 40 if (nat == null) { in CstMemberRef() 45 this.nat = nat; in CstMemberRef() 57 nat.equals(otherRef.nat); in equals() 63 return (definingClass.hashCode() * 31) ^ nat.hashCode(); in hashCode() 82 CstString thisName = nat.getName(); in compareTo0() 83 CstString otherName = otherMember.nat.getName(); in compareTo0() 102 return definingClass.toHuman() + '.' + nat.toHuman(); in toHuman() 120 return nat; in getNat()
|
D | CstEnumRef.java | 35 public CstEnumRef(CstNat nat) { in CstEnumRef() argument 36 super(new CstType(nat.getFieldType()), nat); in CstEnumRef()
|
D | CstMethodRef.java | 30 public CstMethodRef(CstType definingClass, CstNat nat) { in CstMethodRef() argument 31 super(definingClass, nat); in CstMethodRef()
|
D | CstInterfaceMethodRef.java | 36 public CstInterfaceMethodRef(CstType definingClass, CstNat nat) { in CstInterfaceMethodRef() argument 37 super(definingClass, nat); in CstInterfaceMethodRef()
|
D | CstFieldRef.java | 46 public CstFieldRef(CstType definingClass, CstNat nat) { in CstFieldRef() argument 47 super(definingClass, nat); in CstFieldRef()
|
D | CstBaseMethodRef.java | 46 /*package*/ CstBaseMethodRef(CstType definingClass, CstNat nat) { in CstBaseMethodRef() argument 47 super(definingClass, nat); in CstBaseMethodRef()
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/ |
D | p5-cxx0x.cpp | 64 struct nat { struct 65 nat() = delete; 66 nat(const nat&) = delete; 67 nat &operator=(const nat&) = delete; 68 ~nat() = delete; 80 nat swap(any, any); 84 static const bool value = !is_same<type, nat>::value;
|
/external/llvm/test/CodeGen/Generic/ |
D | Makefile | 12 %.nat: %.s 15 %.cbe.out: %.cbe.nat 18 %.out: %.nat 23 $(patsubst %.clean,%.*.nat,$@) $(patsubst %.clean,%.*.out,$@)
|
/external/libunwind/tests/ |
D | Gia64-test-nat.c | 210 unw_word_t nat[4]; in check_static_to_stacked() local 224 if ((ret = unw_get_reg (c, UNW_IA64_NAT + 4 + i, &nat[i])) < 0) in check_static_to_stacked() 232 4 + i, nat[i] ? '*' : ' ', r[i], in check_static_to_stacked() 237 if (!nat[i]) in check_static_to_stacked() 242 if (nat[i]) in check_static_to_stacked() 424 unw_word_t r[4], nat[4], ec, expected; in check_static_to_scratch() local 447 if ((ret = unw_get_reg (c, UNW_IA64_NAT + 4 + i, &nat[i])) < 0) in check_static_to_scratch() 455 4 + i, nat[i] ? '*' : ' ', r[i], in check_static_to_scratch() 460 if (!nat[i]) in check_static_to_scratch() 465 if (nat[i]) in check_static_to_scratch() [all …]
|
D | Makefile.am | 28 Gia64-test-nat Lia64-test-nat \ 113 Lia64_test_nat_SOURCES = Lia64-test-nat.c ia64-test-nat-asm.S 114 Gia64_test_nat_SOURCES = Gia64-test-nat.c ia64-test-nat-asm.S
|
/external/libunwind/src/ia64/ |
D | Ginit.c | 130 unsigned int nat, mask; in access_reg() local 140 if ((ret = __uc_get_grs (uc, (reg - UNW_IA64_GR), 1, &value, &nat))) in access_reg() 144 ret = __uc_set_grs (uc, (reg - UNW_IA64_GR), 1, val, nat); in access_reg() 150 if ((ret = __uc_get_grs (uc, (reg - UNW_IA64_GR), 1, &value, &nat))) in access_reg() 158 nat |= mask; in access_reg() 160 nat &= ~mask; in access_reg() 161 ret = __uc_set_grs (uc, (reg - UNW_IA64_GR), 1, &value, nat); in access_reg() 164 *val = (nat & mask) != 0; in access_reg() 186 ret = __uc_get_grs (uc, SYSCALL_CFM_SAVE_REG, 1, val, &nat); in access_reg()
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
D | FieldId.java | 35 final CstNat nat; field in FieldId 45 this.nat = new CstNat(new CstString(name), new CstString(type.name)); in FieldId() 46 this.constant = new CstFieldRef(declaringType.constant, nat); in FieldId()
|
D | MethodId.java | 38 final CstNat nat; field in MethodId 49 this.nat = new CstNat(new CstString(name), new CstString(descriptor(false))); in MethodId() 50 this.constant = new CstMethodRef(declaringType.constant, nat); in MethodId()
|
/external/tcpdump/tests/ |
D | isakmp4.out | 18 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive 23 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive 28 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive 34 IP 192.1.2.254.4500 > 192.1.2.23.4500: isakmp-nat-keep-alive
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | StringIdsSection.java | 144 public void intern(CstNat nat) { in intern() argument 145 intern(nat.getName()); in intern() 146 intern(nat.getDescriptor()); in intern()
|
D | MemberIdItem.java | 64 CstNat nat = cst.getNat(); in writeTo() local 66 int nameIdx = stringIds.indexOf(nat.getName()); in writeTo()
|
/external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.functions/ |
D | pointer_to.pass.cpp | 26 struct nat {}; struct 34 nat, element_type>::type& et) in pointer_to()
|
/external/iptables/extensions/ |
D | libxt_cpu.man | 9 iptables \-t nat \-A PREROUTING \-p tcp \-\-dport 80 \-m cpu \-\-cpu 0 12 iptables \-t nat \-A PREROUTING \-p tcp \-\-dport 80 \-m cpu \-\-cpu 1
|
D | libxt_NETMAP.man | 3 .B nat
|
D | libxt_REDIRECT.man | 2 .B nat
|
D | libip6t_DNPT.man | 7 .B nat
|
/external/dnsmasq/contrib/port-forward/ |
D | dnsmasq-portforward | 55 …${IPTABLES} -t nat -D PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3… 57 …${IPTABLES} -t nat -A PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3…
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | p2p-action-udhcp.sh | 55 iptables -t nat -A POSTROUTING -o $UPLINK -j MASQUERADE 66 iptables -t nat -D POSTROUTING -o $UPLINK -j MASQUERADE
|
D | p2p-action.sh | 82 iptables -t nat -A POSTROUTING -o $UPLINK -j MASQUERADE 93 iptables -t nat -D POSTROUTING -o $UPLINK -j MASQUERADE
|
/external/libnl/lib/route/ |
D | rtnl.c | 66 __ADD(RTN_NAT,nat)
|