Home
last modified time | relevance | path

Searched refs:print (Results 1 – 25 of 147) sorted by relevance

123456

/ndk/sources/cxx-stl/stlport/src/
Dctype.cpp78 ctype_base::mask(space | print) /* */, in classic_table()
79 ctype_base::mask(punct | print) /* ! */, in classic_table()
80 ctype_base::mask(punct | print) /* " */, in classic_table()
81 ctype_base::mask(punct | print) /* # */, in classic_table()
82 ctype_base::mask(punct | print) /* $ */, in classic_table()
83 ctype_base::mask(punct | print) /* % */, in classic_table()
84 ctype_base::mask(punct | print) /* & */, in classic_table()
85 ctype_base::mask(punct | print) /* ' */, in classic_table()
86 ctype_base::mask(punct | print) /* ( */, in classic_table()
87 ctype_base::mask(punct | print) /* ) */, in classic_table()
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dvpath19 print MAKEFILE "vpath %.c foo\n";
20 print MAKEFILE "vpath %.c $workdir\n";
21 print MAKEFILE "vpath %.h $workdir\n";
22 print MAKEFILE "objects = main.o kbd.o commands.o display.o insert.o\n";
23 print MAKEFILE "edit: \$(objects)\n";
24 print MAKEFILE "\t\@echo cc -o \$@ \$^\n";
25 print MAKEFILE "main.o : main.c defs.h\n";
26 print MAKEFILE "\t\@echo cc -c \$(firstword \$^)\n";
27 print MAKEFILE "kbd.o : kbd.c defs.h command.h\n";
28 print MAKEFILE "\t\@echo cc -c kbd.c\n";
[all …]
Dvpath29 ."rule to print a message at the end to confirm that the makefile\n"
16 print MAKEFILE "VPATH = $workdir:$sourcedir\n";
17 print MAKEFILE "vpath %.c foo\n";
18 print MAKEFILE "vpath %.c $workdir\n";
19 print MAKEFILE "vpath %.c $sourcedir\n";
20 print MAKEFILE "vpath %.h $workdir\n";
21 print MAKEFILE "vpath %.c\n";
22 print MAKEFILE "vpath\n";
23 print MAKEFILE "all:\n";
24 print MAKEFILE "\t\@echo ALL IS WELL\n";
Ddefault_names10 print MAKEFILE "FIRST: ; \@echo It chose GNUmakefile\n";
19 print MAKEFILE "SECOND: ; \@echo It chose makefile\n";
25 print MAKEFILE "THIRD: ; \@echo It chose Makefile\n";
Dechoing33 print MAKEFILE "all: \n";
34 print MAKEFILE "\techo This makefile did not clean the dir... good\n";
35 print MAKEFILE "clean: \n";
36 print MAKEFILE "\t\@$delete_command $example\n";
Dtargetvars11 print MAKEFILE <<'EOF';
122 print MAKEFILE <<'EOF';
142 print MAKEFILE <<'EOF';
171 print MAKEFILE <<'EOF';
188 print MAKEFILE <<'EOF';
211 print MAKEFILE <<'EOF';
258 print MAKEFILE <<'EOF';
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/
DMAKE12 print MAKEFILE "TMP := \$(MAKE)\n";
13 print MAKEFILE "MAKE := \$(subst X=\$(X),,\$(MAKE))\n\n";
14 print MAKEFILE "all:\n";
15 print MAKEFILE "\t\@echo \$(TMP)\n";
16 print MAKEFILE "\t\$(MAKE) -f $makefile foo\n\n";
17 print MAKEFILE "foo:\n";
18 print MAKEFILE "\t\@echo \$(MAKE)\n";
DMAKEFILES9 print MAKEFILE 'all: ; @echo DEFAULT RULE: M2=$(M2) M3=$(M3)', "\n";
14 print MAKEFILE <<EOF;
22 print MAKEFILE <<EOF;
DMFILE_LIST8 print MAKEFILE <<EOF;
22 print MAKEFILE "m2 := \$(MAKEFILE_LIST)\n";
Dautomatic13 print MAKEFILE "dir = $dir\n";
14 print MAKEFILE <<'EOF';
55 print MAKEFILE "dir = $dir\n";
56 print MAKEFILE <<'EOF';
DMAKECMDGOALS6 We construct a makefile with various targets, all of which print out
10 print MAKEFILE "\
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/
DDEFAULT18 print MAKEFILE "foo:\n";
19 print MAKEFILE "\t\@echo Executing rule FOO\n\n";
20 print MAKEFILE ".DEFAULT:\n";
21 print MAKEFILE "\t\@\$(MAKE) -f $makefile2 \$\@ \n";
30 print MAKEFILE "bar:\n";
31 print MAKEFILE "\t\@echo Executing rule BAR\n\n";
DFORCE11 print MAKEFILE ".IGNORE :\n";
12 print MAKEFILE "clean: FORCE\n";
13 print MAKEFILE "\t$delete_command clean\n";
14 print MAKEFILE "FORCE:\n";
DSILENT4 ."mentioning this as a target, it tells make not to print\n"
16 print MAKEFILE ".SILENT : clean\n";
17 print MAKEFILE "clean: \n";
18 print MAKEFILE "\t$delete_command EXAMPLE_FILE\n";
DPHONY19 print MAKEFILE ".PHONY : clean \n";
20 print MAKEFILE "all: \n";
21 print MAKEFILE "\t\@echo This makefile did not clean the dir ... good\n";
22 print MAKEFILE "clean: \n";
23 print MAKEFILE "\t$delete_command $example clean\n";
Dclean14 print MAKEFILE "all: \n";
15 print MAKEFILE "\t\@echo This makefile did not clean the dir... good\n";
16 print MAKEFILE "clean: \n";
17 print MAKEFILE "\t$delete_command EXAMPLE_FILE\n";
/ndk/tests/device/test-stlport/unit/
Dctype_facets_test.cpp49 CPPUNIT_ASSERT( (res[0] & ctype_base::print) != 0 ); in _ctype_facet()
53 CPPUNIT_ASSERT( (res[1] & ctype_base::print) != 0 ); in _ctype_facet()
58 CPPUNIT_ASSERT( (res[2] & ctype_base::print) != 0 ); in _ctype_facet()
64 CPPUNIT_ASSERT( (res[3] & ctype_base::print) != 0 ); in _ctype_facet()
68 CPPUNIT_ASSERT( (res[4] & ctype_base::print) != 0 ); in _ctype_facet()
193 CPPUNIT_CHECK( (res[0] & ctype_base::print) != 0 ); in _ctype_facet_w()
197 CPPUNIT_CHECK( (res[1] & ctype_base::print) != 0 ); in _ctype_facet_w()
202 CPPUNIT_CHECK( (res[2] & ctype_base::print) != 0 ); in _ctype_facet_w()
208 CPPUNIT_CHECK( (res[3] & ctype_base::print) != 0 ); in _ctype_facet_w()
212 CPPUNIT_CHECK( (res[4] & ctype_base::print) != 0 ); in _ctype_facet_w()
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dctype_facets_test.cpp49 CPPUNIT_ASSERT( (res[0] & ctype_base::print) != 0 ); in _ctype_facet()
53 CPPUNIT_ASSERT( (res[1] & ctype_base::print) != 0 ); in _ctype_facet()
58 CPPUNIT_ASSERT( (res[2] & ctype_base::print) != 0 ); in _ctype_facet()
64 CPPUNIT_ASSERT( (res[3] & ctype_base::print) != 0 ); in _ctype_facet()
68 CPPUNIT_ASSERT( (res[4] & ctype_base::print) != 0 ); in _ctype_facet()
193 CPPUNIT_CHECK( (res[0] & ctype_base::print) != 0 ); in _ctype_facet_w()
197 CPPUNIT_CHECK( (res[1] & ctype_base::print) != 0 ); in _ctype_facet_w()
202 CPPUNIT_CHECK( (res[2] & ctype_base::print) != 0 ); in _ctype_facet_w()
208 CPPUNIT_CHECK( (res[3] & ctype_base::print) != 0 ); in _ctype_facet_w()
212 CPPUNIT_CHECK( (res[4] & ctype_base::print) != 0 ); in _ctype_facet_w()
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-f18 print MAKEFILE "all: \n";
19 print MAKEFILE "\t\@echo This is the output from the original makefile\n";
27 print MAKEFILE "TWO: \n";
28 print MAKEFILE "\t\@echo This is the output from makefile 2\n";
33 print MAKEFILE "THREE: \n";
34 print MAKEFILE "\t\@echo This is the output from makefile 3\n";
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Duniq.sed4 # On the last line, print and exit
14 # If the @code{N} command had added the last line, print and exit
17 # The lines are different; print the first and go
/ndk/build/tools/toolchain-patches/python/Python-2.7.3/
D0008-Python-disable-dbm.patch28 - print "building dbm using ndbm"
43 - print "building dbm using gdbm"
52 - print "building dbm using gdbm"
62 - print "building dbm using bdb"
/ndk/tests/device/test-basic-rtti/jni/
Dtest_basic_rtti.cpp22 virtual void print() in print() function in Foo
31 void print() in print() function in Bar
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Deval11 print MAKEFILE <<'EOF';
41 print MAKEFILE <<'EOF';
66 print MAKEFILE <<'EOF';
98 print MAKEFILE <<'EOF';
122 print MAKEFILE <<'EOF';
/ndk/tests/device/test-gabi++/jni/
Dtest_gabixx_rtti.cpp25 virtual void print() in print() function in Foo
34 void print() in print() function in Bar
/ndk/tests/device/test-stlport-rtti/jni/
Dtest_stlport_rtti.cpp25 virtual void print() in print() function in Foo
34 void print() in print() function in Bar

123456