Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 223) sorted by relevance

123456789

/ndk/sources/host-tools/make-3.81/
Dfile.c78 register struct file *f; in lookup_file() local
126 f = (struct file *) hash_find_item (&files, &file_key); in lookup_file()
131 return f; in lookup_file()
137 register struct file *f; in enter_file() local
169 f = *file_slot; in enter_file()
170 if (! HASH_VACANT (f) && !f->double_colon) in enter_file()
176 return f; in enter_file()
184 if (HASH_VACANT (f)) in enter_file()
192 new->double_colon = f; in enter_file()
193 f->last->prev = new; in enter_file()
[all …]
Dremake.c287 register struct file *f; in update_file() local
289 f = file->double_colon ? file->double_colon : file; in update_file()
295 if (f->considered == considered) in update_file()
298 return f->command_state == cs_finished ? f->update_status : 0; in update_file()
303 for (; f != 0; f = f->prev) in update_file()
305 f->considered = considered; in update_file()
307 status |= update_file_1 (f, depth); in update_file()
308 check_renamed (f); in update_file()
317 if (f->command_state == cs_running in update_file()
318 || f->command_state == cs_deps_running) in update_file()
[all …]
Dimplicit.c90 struct file *f = p->intermediate_file; in free_idep_chain() local
92 if (f != 0 in free_idep_chain()
93 && (f->stem < f->name || f->stem > f->name + strlen (f->name))) in free_idep_chain()
94 free (f->stem); in free_idep_chain()
441 struct file *f; in pattern_search() local
699 if (((f = lookup_file (name)) != 0 && f->is_target) in pattern_search()
837 register struct file *f = lookup_file (imf->name); in pattern_search() local
842 if (f != 0) in pattern_search()
843 f->precious = 1; in pattern_search()
845 f = enter_file (imf->name); in pattern_search()
[all …]
Dfiledef.h162 #define file_mtime(f) file_mtime_1 ((f), 1) argument
167 #define file_mtime_no_search(f) file_mtime_1 ((f), 0) argument
169 #define file_mtime_1(f, v) \ argument
170 ((f)->last_mtime == UNKNOWN_MTIME ? f_mtime ((f), v) : (f)->last_mtime)
Dread.c1806 struct file *f; in record_target_var() local
1812 f = lookup_file (name); in record_target_var()
1813 if (!f) in record_target_var()
1814 f = enter_file (name); in record_target_var()
1815 else if (f->double_colon) in record_target_var()
1816 f = f->double_colon; in record_target_var()
1818 initialize_file_variables (f, 1); in record_target_var()
1819 fname = f->name; in record_target_var()
1821 current_variable_set_list = f->variables; in record_target_var()
1902 struct file *f; in record_files() local
[all …]
Ddefault.c554 register struct file *f = enter_file (s[0]); in install_default_suffix_rules() local
556 if (f->cmds == 0) in install_default_suffix_rules()
558 f->cmds = (struct commands *) xmalloc (sizeof (struct commands)); in install_default_suffix_rules()
559 f->cmds->fileinfo.filenm = 0; in install_default_suffix_rules()
560 f->cmds->commands = s[1]; in install_default_suffix_rules()
561 f->cmds->command_lines = 0; in install_default_suffix_rules()
Drule.c219 register struct file *f; in convert_to_pattern() local
241 f = d->file; in convert_to_pattern()
242 if (f->cmds != 0) in convert_to_pattern()
244 convert_suffix_rule ("", dep_name (d), f->cmds); in convert_to_pattern()
257 f = lookup_file (rulename); in convert_to_pattern()
258 if (f == 0 || f->cmds == 0) in convert_to_pattern()
266 f->cmds); in convert_to_pattern()
270 convert_suffix_rule (dep_name (d2), dep_name (d), f->cmds); in convert_to_pattern()
571 int f = (terminal * 1000 + 5) / rules; in print_rule_data_base() local
572 printf (" (%d.%d%%)", f/10, f%10); in print_rule_data_base()
/ndk/sources/host-tools/nawk-20071023/
Db.c125 fa *f; in mkdfa() local
135 if ((f = (fa *) calloc(1, sizeof(fa) + poscnt*sizeof(rrow))) == NULL) in mkdfa()
137 f->accept = poscnt-1; /* penter has computed number of positions in re */ in mkdfa()
138 cfoll(f, p1); /* set up follow sets */ in mkdfa()
140 if ((f->posns[0] = (int *) calloc(1, *(f->re[0].lfollow)*sizeof(int))) == NULL) in mkdfa()
142 if ((f->posns[1] = (int *) calloc(1, sizeof(int))) == NULL) in mkdfa()
144 *f->posns[1] = 0; in mkdfa()
145 f->initstat = makeinit(f, anchor); in mkdfa()
146 f->anchor = anchor; in mkdfa()
147 f->restr = (uschar *) tostring(s); in mkdfa()
[all …]
/ndk/sources/host-tools/sed-4.2.1/lib/
Dstdio.in.h105 # define vfprintf(s,f,a) \
109 vfprintf (s, f, a))
152 # define vprintf(f,a) \
156 vprintf (f, a))
185 # define vsnprintf(b,s,f,a) \
188 vsnprintf (b, s, f, a))
214 # define vsprintf(b,f,a) \
218 vsprintf (b, f, a))
231 # define dprintf(d,f,a) \
234 dprintf (d, f, a))
[all …]
Dunistd.in.h127 # define chown(f,u,g) \
131 chown (f, u, g))
147 # define close(f) \ argument
150 close (f))
200 # define euidaccess(f,m) \ argument
203 euidaccess (f, m))
225 # define fchdir(f) \ argument
228 fchdir (f))
259 # define ftruncate(f,l) \ argument
262 ftruncate (f, l))
[all …]
/ndk/tests/device/test-stlport/unit/
Dfstream_test.cpp98 ofstream f( "test_file.txt" ); in output() local
101 CPPUNIT_ASSERT (f.good()); in output()
102 f << 1; in output()
103 CPPUNIT_ASSERT (f.good()); in output()
104 f << '\n'; in output()
105 CPPUNIT_ASSERT (f.good()); in output()
106 f << 2.0; in output()
107 CPPUNIT_ASSERT (f.good()); in output()
108 f << '\n'; in output()
109 CPPUNIT_ASSERT (f.good()); in output()
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dfstream_test.cpp98 ofstream f( "test_file.txt" ); in output() local
101 CPPUNIT_ASSERT (f.good()); in output()
102 f << 1; in output()
103 CPPUNIT_ASSERT (f.good()); in output()
104 f << '\n'; in output()
105 CPPUNIT_ASSERT (f.good()); in output()
106 f << 2.0; in output()
107 CPPUNIT_ASSERT (f.good()); in output()
108 f << '\n'; in output()
109 CPPUNIT_ASSERT (f.good()); in output()
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/targets/
DINTERMEDIATE24 %.e : %.f ; cp $< $@
36 &utouch(-20, 'foo.f', 'bar.f');
39 $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n";
51 &touch('foo.f');
54 $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n";
60 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n";
72 &touch('foo.f');
75 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n";
81 $answer = "cp foo.f foo.e\n";
84 unlink('foo.f', 'foo.e', 'foo.d', 'foo.c', 'bar.f', 'bar.e', 'bar.d', 'bar.c');
/ndk/sources/cxx-stl/stlport/src/
Dcxa.c172 struct exit_function *f; in __cxa_finalize() local
174 for (f = &funcs->fns[funcs->idx - 1]; f >= &funcs->fns[0]; --f) { in __cxa_finalize()
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) { in __cxa_finalize()
176 f->flavor = ef_free; in __cxa_finalize()
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0); in __cxa_finalize()
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Drecursion9 $(MAKE) -f #MAKEFILE# foo
13 $(MAKE) -f #MAKEFILE# last
22 make 'CFLAGS=-O' -f #MAKEFILE# foo
25 make 'CFLAGS=-O' -f #MAKEFILE# last
31 #MAKEPATH# -f #MAKEFILE# foo
35 #MAKEPATH# -f #MAKEFILE# last
47 recur: all ; @$(MAKE) --no-print-directory -f #MAKEFILE# a=AA all
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-f2 ."than one '-f makefilename' on the command line, \n"
4 ."makefiles and specifies all of them with the -f option \n"
42 &run_make_with_options($makefile,"-f $makefile2 -f $makefile3",&get_logfile,0);
50 &run_make_with_options($makefile,"-f $makefile2 -f $makefile3 TWO",&get_logfile,0);
59 "-f $makefile2 -f $makefile3 THREE",
72 "-f $makefile2 -f $makefile3 TWO all THREE",
/ndk/sources/host-tools/sed-4.2.1/po/
DMakefile.in.in82 echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \
83 …cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && …
110 test ! -f $(srcdir)/$(DOMAIN).pot || \
112 @test ! -f $(srcdir)/$(DOMAIN).pot || { \
135 test ! -f $(DOMAIN).po || { \
136 if test -f $(srcdir)/$(DOMAIN).pot; then \
137 sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
138 sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \
140 rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \
142 rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \
[all …]
Dsv.po28 msgstr "ogiltig användning av +N eller ~N som första adress"
44 msgstr "\\ förväntades efter \"a\", \"c\" eller \"i\""
68 msgstr "oavslutat reguljärt uttryck för adress"
80 msgstr "flaggan okänd för \"s\""
96 msgstr "sifferflagga till kommandot \"s\" får inte vara noll"
100 msgstr "strängarna för kommandot \"y\" är olika långa"
108 msgstr "nyare version av sed förväntades"
132 msgstr "kan inte hitta etiketten för hopp till \"%s\""
189 # Jag antar RHS står för "right hand side". Man kan då säga
211 "Ange ordet \"%s\" på något ställe i \"Ärende:\"-fältet.\n"
[all …]
DRules-quot23 …slator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(M…
25 rm -f $$tmpdir/$$lang.new.po; \
27 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
36 rm -f $$tmpdir/$$lang.new.po; \
47 rm -f *.insert-header
/ndk/sources/host-tools/make-3.81/po/
DMakefile.in.in69 echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \
70 …cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && …
108 test ! -f $(DOMAIN).po || { \
109 if test -f $(srcdir)/$(DOMAIN).pot; then \
110 sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
111 sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \
113 rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \
115 rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \
133 if test -f "$(srcdir)/$${lang}.po"; then \
152 rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
[all …]
DRules-quot23 …slator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(M…
25 rm -f $$tmpdir/$$lang.new.po; \
27 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
36 rm -f $$tmpdir/$$lang.new.po; \
47 rm -f *.insert-header
/ndk/sources/host-tools/make-3.81/config/
Dmissing166 for f in $files; do
167 case "$f" in
168 *:*) touch_files="$touch_files "`echo "$f" |
170 *) touch_files="$touch_files $f.in";;
182 find . -type f -name Makefile.am -print |
184 while read f; do touch "$f"; done
/ndk/sources/host-tools/sed-4.2.1/build-aux/
Dmissing177 for f in $files; do
178 case $f in
179 *:*) touch_files="$touch_files "`echo "$f" |
181 *) touch_files="$touch_files $f.in";;
193 find . -type f -name Makefile.am -print |
195 while read f; do touch "$f"; done
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dtst-pcre.c41 FILE *f; in main() local
59 f = fopen (argv[1], "r"); in main()
60 if (f == NULL) in main()
66 if ((len = getline (&line, &line_len, f)) <= 0 in main()
70 fclose (f); in main()
77 while ((len = getline (&line, &line_len, f)) > 0) in main()
247 fclose (f); in main()
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dandor11 f =
18 @echo 4 $(and z,true,$f,false)
19 @echo 5 $(and $t,$f,$(info bad short-circuit))
32 f =
39 @echo 4 $(or z,true,$f,false)
46 @echo 11 $(or $(e) ,$f)',

123456789