Home
last modified time | relevance | path

Searched refs:sub (Results 1 – 25 of 53) sorted by relevance

123

/ndk/sources/third_party/googletest/googletest/test/
Dgtest_output_test.py101 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output)
108 return re.sub(r'Stack trace:(.|\n)*?\n\n',
116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
122 return re.sub(r'\(\d+ ms', '(? ms', output)
136 return re.sub(r'unsigned int', 'unsigned', test_output)
144 test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output)
146 test_output = re.sub(r': Failure\n', r': error: ', test_output)
148 test_output = re.sub(r'((\w|\.)+)\((\d+)\):', r'\1:\3:', test_output)
156 output = re.sub(r'\d+ tests?, listed below',
158 output = re.sub(r'\d+ FAILED TESTS',
[all …]
Dgtest_xml_test_utils.py170 timestamp.value = re.sub(r'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d$',
174 time.value = re.sub(r'^\d+(\.\d+)?$', '*', time.value)
182 message.value = re.sub(source_line_pat, '\\1*\n', message.value)
186 cdata = re.sub(source_line_pat, '\\1*\n', child.nodeValue)
188 child.nodeValue = re.sub(r'\nStack trace:\n(.|\n)*',
Dgtest_help_test.py56 INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG),
57 re.sub('^--', '/', LIST_TESTS_FLAG),
58 re.sub('_', '-', LIST_TESTS_FLAG)]
/ndk/build/tools/toolchain-patches-host/mingw-w64/
Dmingw-w64-widl.patch13 +$(warning "srcdir != builddir, debugging comments in idl files will be sub-optimal")
32 …_BUILDDIR_TRUE@$(warning "srcdir != builddir, debugging comments in idl files will be sub-optimal")
64 # Make sure we can run config.sub.
65 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
66 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
/ndk/tests/device/test-stlport_static-exception/jni/
Dfp-regs.cpp12 sub (void) in sub() function
47 sub (); in main()
/ndk/tests/device/test-stlport_shared-exception/jni/
Dfp-regs.cpp12 sub (void) in sub() function
47 sub (); in main()
/ndk/tests/device/test-yasm/jni/
Dprint_hello.asm9 sub esp, 28
/ndk/tests/build/ssax-instructions/jni/
Dtest.S12 sub sp, sp, #32 @ 0x20 label
55 sub r0, r2, ip label
/ndk/tests/build/prebuilt-copy/
DREADME6 It works by first building two prebuilt libraries in a sub-project, then
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dvpathgpath43 sub touchfiles {
Dreinvoke14 # with sub-second timestamps, maybe + NFS? Not sure.
Dvpathplus60 sub touchfiles {
/ndk/sources/host-tools/make-3.81/
Daclocal.m4177 mkdir sub
191 : > sub/conftest.c
193 echo '#include "conftst'$i'.h"' >> sub/conftest.c
194 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
196 touch sub/conftst$i.h
198 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
216 source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
217 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
218 $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
220 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
[all …]
Dreadme.vms64 sub-processes) enables case sensitivity in the file system
247 Calling 'set def' doesn't do the trick, since a sub-shell is
248 spawned for this command, the directory is changed *in this sub-shell*
249 and the sub-shell ends.
DINSTALL157 See the file `config.sub' for the possible values of each field. If
158 `config.sub' isn't included in this package, then this package doesn't
DNEWS319 top make and all its sub-make processes use a pipe to communicate with
440 * The directory messages printed by `-w' and implicitly in sub-makes,
481 for sub-makes is now included in `MAKEFLAGS' instead. As before, you can
607 automatically if you use `-C' or `--directory', and in sub-makes; some
948 except under -e, will be transparent to sub-makes.
950 * Error messages from sub-makes will indicate the level of recursion.
/ndk/sources/cxx-stl/stlport/src/
Dsparc_atomic.s58 sub %o2, 0x1, %o3 ! decrement and store current
/ndk/sources/host-tools/nawk-20071023/
Dlex.c42 int sub; member
464 yylval.i = kp->sub; in word()
467 if (kp->sub == FSYSTEM && safe) in word()
Dproto.h196 extern Cell *sub(Node **, int);
DFIXES43 fixed a bug in matching the null RE in sub and gsub. thanks to al aho
422 fixed some bugs in sub and gsub when replacement includes \\.
458 to grow arrays as needed for printf, sub, gsub, etc.
487 fixed long-standing bug in sub, gsub(/a/, "\\\\&"); thanks to
590 trivial fix to printf to limit string size in sub().
732 Added a bunch of tests to T.re and T.sub to verify some of this.
825 Changed grammar to prohibit constants as 3rd arg of sub and gsub;
880 affected are sub (gsub was ok), substr, printf, and
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dcall72 # TEST eclipsing of arguments when invoking sub-calls
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_demangle.cpp301 size_t sub = 0; in parse_substitution() local
304 sub = static_cast<size_t>(*t - '0'); in parse_substitution()
306 sub = static_cast<size_t>(*t - 'A') + 10; in parse_substitution()
309 sub *= 36; in parse_substitution()
311 sub += static_cast<size_t>(*t - '0'); in parse_substitution()
313 sub += static_cast<size_t>(*t - 'A') + 10; in parse_substitution()
317 ++sub; in parse_substitution()
318 if (sub < db.subs.size()) in parse_substitution()
320 for (const auto& n : db.subs[sub]) in parse_substitution()
570 size_t sub = static_cast<size_t>(*t - '0'); in parse_template_param() local
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/
Dlit.cfg302 # Drop sub-major version components from the triple, because the current
304 sanitized_triple = re.sub(r"([^-]+)-([^-]+)-([^-.]+).*", r"\1-\2-\3",
/ndk/sources/host-tools/make-3.81/autom4te.cache/
Doutput.02351 ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
3673 mkdir sub
3687 : > sub/conftest.c
3689 echo '#include "conftst'$i'.h"' >> sub/conftest.c
3690 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
3692 touch sub/conftst$i.h
3694 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
3712 source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
3713 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3714 $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
[all …]
/ndk/sources/host-tools/make-3.81/doc/
Dmake.info-1196 * Variables/Recursion:: How to communicate variables to a sub-`make'.
197 * Options/Recursion:: How to communicate options to a sub-`make'.
3491 how the sub-`make' relates to the top-level `make'. You may also find
3510 * Variables/Recursion:: How to communicate variables to a sub-`make'.
3511 * Options/Recursion:: How to communicate options to a sub-`make'.
3556 flags to the sub-`make' (*note Communicating Options to a Sub-`make':
3566 Variable values of the top-level `make' can be passed to the sub-`make'
3568 defined in the sub-`make' as defaults, but do not override what is
3569 specified in the makefile used by the sub-`make' makefile unless you
3573 its value to the environment for running each command. The sub-`make',
[all …]

123