HomeSort by relevance Sort by last modified time
    Searched refs:up (Results 1 - 25 of 1162) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
pth_cancel1.stdout.exp 1 cleaning up 0x5678
2 cleaning up 0x1234
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xdrlib.py 28 up = xdrlib.Unpacker(data)
30 self.assertEqual(up.get_position(), 0)
32 self.assertEqual(up.unpack_int(), 42)
33 self.assertEqual(up.unpack_int(), -17)
34 self.assertEqual(up.unpack_uint(), 9)
35 self.assertTrue(up.unpack_bool() is True)
38 pos = up.get_position()
39 self.assertTrue(up.unpack_bool() is False)
42 up.set_position(pos)
43 self.assertTrue(up.unpack_bool() is False
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xdrlib.py 28 up = xdrlib.Unpacker(data)
30 self.assertEqual(up.get_position(), 0)
32 self.assertEqual(up.unpack_int(), 42)
33 self.assertEqual(up.unpack_int(), -17)
34 self.assertEqual(up.unpack_uint(), 9)
35 self.assertTrue(up.unpack_bool() is True)
38 pos = up.get_position()
39 self.assertTrue(up.unpack_bool() is False)
42 up.set_position(pos)
43 self.assertTrue(up.unpack_bool() is False
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
UnresolvedPrincipalTest.java 38 UnresolvedPrincipal up = new UnresolvedPrincipal(klass, name); local
39 assertEquals(klass, up.getClassName());
40 assertEquals(name, up.getName());
42 up = new UnresolvedPrincipal(klass, null);
43 assertEquals(klass, up.getClassName());
44 assertNull(up.getName());
47 up = new UnresolvedPrincipal(null, name);
71 UnresolvedPrincipal up = new UnresolvedPrincipal(klass, name); local
75 assertTrue(up.equals(up));
    [all...]
  /frameworks/native/cmds/ip-up-vpn/
Android.mk 20 LOCAL_SRC_FILES := ip-up-vpn.c
22 LOCAL_MODULE := ip-up-vpn
  /external/elfutils/0.153/libcpu/
memory-access.h 95 const union unaligned *up = p; local
97 return bswap_16 (up->u2);
98 return up->u2;
103 const union unaligned *up = p; local
105 return (int16_t) bswap_16 (up->u2);
106 return up->s2;
112 const union unaligned *up = p; local
113 return up->u4;
118 const union unaligned *up = p; local
120 return bswap_32 (up->u4)
126 const union unaligned *up = p; local
135 const union unaligned *up = p; local
143 const union unaligned *up = p; local
    [all...]
  /external/tcpdump/
print-udp.c 109 vat_print(const void *hdr, register const struct udphdr *up)
116 (u_int32_t)(EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up)),
123 (u_int32_t)(EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up) - 8),
135 rtp_print(const void *hdr, u_int len, register const struct udphdr *up)
142 u_int dlen = EXTRACT_16BITS(&up->uh_ulen) - sizeof(*up) - 8;
237 printf(" @%.2f %u %up %ub", ts, EXTRACT_32BITS(&sr->sr_ts),
286 register const struct udphdr *up,
362 register const struct udphdr *up; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.general/
tuple.smartptr.pass.cpp 18 std::tuple<std::unique_ptr<char>> up; local
24 std::tuple<std::unique_ptr<char[]>> up; local
30 std::tuple<std::unique_ptr<char[5]>> up; local
  /external/clang/test/PCH/
field-designator.c 26 # error Header inclusion order messed up
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.cpp 75 const CUpdatePair2 &up = (*UpdatePairs)[index]; local
76 if (newData != NULL) *newData = BoolToInt(up.NewData);
77 if (newProps != NULL) *newProps = BoolToInt(up.NewProps);
81 if (up.ExistInArchive())
82 *indexInArchive = (ArcItems == 0) ? up.ArcIndex : (*ArcItems)[up.ArcIndex].IndexInServer;
91 const CUpdatePair2 &up = (*UpdatePairs)[index]; local
96 prop = up.IsAnti;
101 if (up.IsAnti)
118 if (up.ExistOnDisk())
161 const CUpdatePair2 &up = (*UpdatePairs)[index]; local
    [all...]
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
auto_pointer.pass.cpp 47 std::unique_ptr<A> up(std::move(ap));
48 assert(up.get() == p);
58 std::unique_ptr<A> up; local
59 up = std::move(ap);
60 assert(up.get() == p);
auto_pointer01.fail.cpp 47 std::unique_ptr<A> up(ap);
48 assert(up.get() == p);
58 std::unique_ptr<A> up; local
59 up = ap;
60 assert(up.get() == p);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
auto_pointer.pass.cpp 47 std::unique_ptr<A> up(std::move(ap));
48 assert(up.get() == p);
58 std::unique_ptr<A> up; local
59 up = std::move(ap);
60 assert(up.get() == p);
auto_pointer01.fail.cpp 47 std::unique_ptr<A> up(ap);
48 assert(up.get() == p);
58 std::unique_ptr<A> up; local
59 up = ap;
60 assert(up.get() == p);
  /external/chromium_org/third_party/sqlite/src/tool/
fragck.tcl 37 # info is returned for the page that lies $up entries upwards in the
38 # tree-structure. (i.e. $up==1 returns the parent page, $up==2 the
55 proc cursor_info {arrayvar csr {up 0}} {
67 a(first_ovfl) ] [btree_cursor_info $csr $up] break
101 # about the page that $up levels above that page that contains
102 # the entry. If $up==0 use the page that contains the entry.
107 proc page_info {csr up} {
109 cursor_info ci $csr $up
117 page_info $csr [expr {$up+1}
    [all...]
  /external/libunwind/scripts/
kernel-diff.sh 9 diff -up $left $right
  /art/runtime/arch/mips/
portable_entrypoints_mips.S 25 # Fake callee save ref and args frame set up, note portable doesn't use callee save frames.
53 # Begin argument set up.
  /bionic/libc/kernel/uapi/asm-mips/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /development/ndk/platforms/android-L/arch-mips/include/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /development/ndk/platforms/android-L/arch-mips64/include/asm/
sgidefs.h 22 #error Use a Linux compiler or give up.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
multiprocessing_bootstrap.py 45 up = os.path.dirname
46 script_dir = up(up(up(os.path.abspath(__file__))))
  /external/kernel-headers/original/uapi/asm-mips/asm/
sgidefs.h 18 #error Use a Linux compiler or give up.
  /external/wpa_supplicant_8/
Android.mk 5 # TODO: Clean up the Android.mks, reset all the temporary variables at the
7 # set up in the other Android.mk.
  /frameworks/base/core/java/android/net/
INetworkManagementEventObserver.aidl 32 * @param up True if the interface has been enabled.
34 void interfaceStatusChanged(String iface, boolean up);
41 * @param up True if the physical link-layer connection signal is valid.
43 void interfaceLinkStateChanged(String iface, boolean up);

Completed in 1237 milliseconds

1 2 3 4 5 6 7 8 91011>>