HomeSort by relevance Sort by last modified time
    Searched refs:nm (Results 126 - 150 of 656) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.codecvt.byname/
ctor_char16_t.pass.cpp 14 // explicit codecvt_byname(const char* nm, size_t refs = 0);
15 // explicit codecvt_byname(const string& nm, size_t refs = 0);
28 explicit my_facet(const char* nm, std::size_t refs = 0)
29 : F(nm, refs) {++count;}
30 explicit my_facet(const std::string& nm, std::size_t refs = 0)
31 : F(nm, refs) {++count;}
ctor_char32_t.pass.cpp 14 // explicit codecvt_byname(const char* nm, size_t refs = 0);
15 // explicit codecvt_byname(const string& nm, size_t refs = 0);
28 explicit my_facet(const char* nm, std::size_t refs = 0)
29 : F(nm, refs) {++count;}
30 explicit my_facet(const std::string& nm, std::size_t refs = 0)
31 : F(nm, refs) {++count;}
ctor_wchar_t.pass.cpp 16 // explicit codecvt_byname(const char* nm, size_t refs = 0);
17 // explicit codecvt_byname(const string& nm, size_t refs = 0);
32 explicit my_facet(const char* nm, std::size_t refs = 0)
33 : F(nm, refs) {++count;}
34 explicit my_facet(const std::string& nm, std::size_t refs = 0)
35 : F(nm, refs) {++count;}
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
exclude.exp 45 global nm
84 if ![ld_nm $nm "-D" tmpdir/exclude.so] {
101 if ![ld_nm $nm "-D" tmpdir/exclude.so] {
113 && [ld_nm $nm "-D" tmpdir/exclude.so]
122 && [ld_nm $nm "-D" tmpdir/exclude.so]
131 && [ld_nm $nm "-D" tmpdir/exclude.so]
140 && [ld_nm $nm "-D" tmpdir/exclude.so]
149 && [ld_nm $nm "-D" tmpdir/exclude.so]
  /external/syslinux/com32/hdt/
hdt-cli-memory.c 54 struct e820entry nm[E820MAX]; local
57 int nr = sanitize_e820_map(map, nm, count);
62 get_type(nm[i].type, type, 14);
64 nm[i].addr, nm[i].size, nm[i].addr + nm[i].size,
hdt-dump-memory.c 75 struct e820entry nm[E820MAX]; local
105 int nr = sanitize_e820_map(map, nm, count);
107 get_type(nm[i].type, type, sizeof(type));
111 snprintf(begin,sizeof(begin),"0x%016llx",nm[i].addr);
112 snprintf(size,sizeof(size),"0x%016llx",nm[i].size);
113 snprintf(end,sizeof(end),"0x%016llx",nm[i].addr+nm[i].size);
  /cts/tools/dasm/src/java_cup/
non_terminal.java 22 * @param nm the name of the non terminal.
25 public non_terminal(String nm, String tp)
28 super(nm, tp);
31 Object conflict = _all.put(nm,this);
36 // throw new internal_error("Duplicate non-terminal ("+nm+") created");
37 (new internal_error("Duplicate non-terminal ("+nm+") created")).crash();
46 * @param nm the name of the non terminal.
48 public non_terminal(String nm)
50 this(nm, null);
  /device/google/contexthub/firmware/os/platform/stm32/
crt_stm32.c 20 #define VEC_(nm, pfx) void nm##pfx(void) __attribute__ ((weak, alias ("IntDefaultHandler")))
21 #define VEC(nm) VEC_(nm, _Handler)
22 #define VECI(nm) VEC_(nm, _IRQHandler)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
aix52.exp 75 {{objdump {-dR} aix-abs-branch-1.dd} {nm {} aix-abs-branch-1.nd}}
81 {{objdump -sRj.data aix-abs-reloc-1.od} {nm {} aix-abs-reloc-1.nd}}
101 {{nm {} aix-no-dup-syms-1-rel.nd} {objdump -r aix-no-dup-syms-1-rel.rd}}
107 {{nm {} aix-no-dup-syms-1-dso.nd} {objdump -r aix-no-dup-syms-1-dso.rd}
108 {nm -D aix-no-dup-syms-1-dso.dnd} {objdump -R aix-no-dup-syms-1-dso.drd}}
133 {{nm -D aix-export-2.nd}} "aix-export-2.so"}
139 {nm {} aix-gc-1.nd}}
187 {{objdump -dS aix-lineno-1a.dd} {nm {} aix-lineno-1a.nd}}
192 {{objdump -dS aix-lineno-1b.dd} {nm {} aix-lineno-1b.nd}}
206 {{nm {} aix-weak-1-rel.nd} {objdump -h aix-weak-1-rel.hd}
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessageView.java 53 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); local
56 nm.cancel(R.string.imcoming_message_ticker_text);
  /device/google/contexthub/firmware/
symcheck.sh 44 if ${CROSS_COMPILE}nm -a "$infile" |grep -e "[0-9a-f]\{8\} [Tt] $look_for" >/dev/null
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.sh 20 for nm in `cat ${public_symbols_txt}` ; do
21 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
38 for nm in `cat ${public_symbols_txt}` ; do
39 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
  /external/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/
date_order_wide.pass.cpp 33 explicit my_facet(const std::string& nm, std::size_t refs = 0)
34 : F(nm, refs) {}
  /external/libdrm/libkms/
kms-symbol-check 6 FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libkms.so} | awk '{print $3}'| while read func; do
  /external/llvm/test/Object/
simple-archive.test 4 RUN: llvm-nm -M %p/Inputs/libsimple_archive.a | FileCheck -check-prefix=CHECKIDX %s
  /external/mdnsresponder/mDNSWindows/
loclibrary.c 182 int PathForResourceWithPathA (const char *path, const char *nm,
188 snprintf(tmpBuffer, MAX_PATH, "%s.Resources\\%s", path, nm);
201 snprintf(tmpBuffer, TMP_BUF_SIZE, "%s\\%s", tmpBuffer, nm);
211 path, DEFAULT_LANG_CODE, nm);
223 int PathForResourceWithPathW (const wchar_t *path, const wchar_t *nm,
230 swprintf(tmpBuffer, TMP_BUF_SIZE, L"%ls.Resources\\%ls", path, nm);
242 swprintf(tmpBuffer, TMP_BUF_SIZE, L"%ls\\%ls", tmpBuffer, nm);
252 path, DEFAULT_LANG_CODE, nm);
  /external/mesa3d/src/egl/wayland/wayland-egl/
wayland-egl-symbols-check 3 FUNCS=$(nm -D --defined-only ${1-.libs/libwayland-egl.so} | grep -o "T .*" | cut -c 3- | while read func; do
  /external/v8/tools/
check-static-initializers.sh 50 static_inits=$(nm "$d8" | grep _GLOBAL_ | grep _I_ | awk '{ print $NF; }')
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
TestAlertActivity.java 27 NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); local
28 nm.cancel(mId);
  /packages/apps/Contacts/src/com/android/contacts/util/
ContactsNotificationChannelsUtil.java 38 final NotificationManager nm = context.getSystemService(NotificationManager.class); local
42 nm.createNotificationChannel(channel);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.time/locale.time.get.byname/
date_order_wide.pass.cpp 33 explicit my_facet(const std::string& nm, std::size_t refs = 0)
34 : F(nm, refs) {}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
nomapping.d 0 #nm: -n
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
struct.d 0 #nm: --extern-only
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/macros/
app4.d 2 #nm: -n
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/pe/
set.d 0 #nm: --defined-only

Completed in 362 milliseconds

1 2 3 4 56 7 8 91011>>