Home
last modified time | relevance | path

Searched refs:globs (Results 1 – 25 of 44) sorted by relevance

12

/third_party/boost/tools/build/src/engine/
Doutput.cpp31 if ( globs.out ) fflush( globs.out ); in out_flush()
36 if ( globs.out ) fflush( globs.out ); in err_flush()
41 if ( globs.out ) fputs( s, globs.out ); in out_puts()
46 if ( globs.out ) fputs( s, globs.out ); in err_puts()
51 if ( globs.out ) fputc( c, globs.out ); in out_putc()
56 if ( globs.out ) fputc( c, globs.out ); in err_putc()
61 if ( globs.out ) out_( s, globs.out ); in out_data()
66 if ( globs.out ) out_( s, globs.out ); in err_data()
76 if ( globs.out ) in out_printf()
80 vfprintf( globs.out, f, args ); in out_printf()
[all …]
Djam.h469 struct globs struct
489 extern struct globs globs; argument
491 #define DEBUG_MAKE ( globs.debug[ 1 ] ) /* show actions when executed */
492 #define DEBUG_MAKEQ ( globs.debug[ 2 ] ) /* show even quiet actions */
493 #define DEBUG_EXEC ( globs.debug[ 2 ] ) /* show text of actons */
494 #define DEBUG_MAKEPROG ( globs.debug[ 3 ] ) /* show make0 progress */
495 #define DEBUG_BIND ( globs.debug[ 3 ] ) /* show when files bound */
497 #define DEBUG_EXECCMD ( globs.debug[ 4 ] ) /* show execcmds()'s work */
499 #define DEBUG_COMPILE ( globs.debug[ 5 ] ) /* show rule invocations */
501 #define DEBUG_HEADER ( globs.debug[ 6 ] ) /* show result of header scan */
[all …]
Dexecunix.cpp101 #define WAIT_FDS_SIZE ( globs.jobs * ( globs.pipe_action ? 2 : 1 ) )
102 #define GET_WAIT_FD( job_idx ) ( wait_fds + ( ( job_idx * ( globs.pipe_action ? 2 : 1 ) ) ) )
110 if ( globs.jobs > cmdtab_size ) in exec_init()
112 cmdtab = (cmdtab_t*)BJAM_REALLOC( cmdtab, globs.jobs * sizeof( *cmdtab ) ); in exec_init()
113 memset( cmdtab + cmdtab_size, 0, ( globs.jobs - cmdtab_size ) * sizeof( *cmdtab ) ); in exec_init()
115 for ( i = cmdtab_size; i < globs.jobs; ++i ) in exec_init()
119 if ( globs.pipe_action ) in exec_init()
125 cmdtab_size = globs.jobs; in exec_init()
215 if ( pipe( out ) < 0 || ( globs.pipe_action && pipe( err ) < 0 ) ) in exec_cmd()
225 if ( 0 < globs.timeout ) in exec_cmd()
[all …]
Djam.cpp153 struct globs globs = variable
353 globs.jobs = sys_info.cpu_thread_count(); in main()
364 out_printf( "\n DEFAULTS: jobs = %i\n", globs.jobs); in main()
371 ++globs.noexec; in main()
372 globs.debug[ 2 ] = 1; in main()
380 globs.pipe_action = atoi( s ); in main()
381 if ( globs.pipe_action < 0 || 3 < globs.pipe_action ) in main()
384 "\n", globs.pipe_action ); in main()
390 globs.quitquick = 1; in main()
397 globs.jobs = atoi( s ); in main()
[all …]
Dexecnt.cpp236 if ( globs.jobs > cmdtab_size ) in exec_init()
238 cmdtab = (_cmdtab_t*)BJAM_REALLOC( cmdtab, globs.jobs * sizeof( *cmdtab ) ); in exec_init()
239 memset( cmdtab + cmdtab_size, 0, ( globs.jobs - cmdtab_size ) * sizeof( *cmdtab ) ); in exec_init()
240 cmdtab_size = globs.jobs; in exec_init()
242 if ( globs.jobs > MAXIMUM_WAIT_OBJECTS && !process_queue.read_okay ) in exec_init()
521 if ( globs.pipe_action && !CreatePipe( &cmdtab[ slot ].pipe_err[ in invoke_cmd()
532 if ( globs.pipe_action ) in invoke_cmd()
543 si.hStdError = globs.pipe_action in invoke_cmd()
815 ( ( EARLY_OUTPUT( c ) && ( globs.pipe_action != 2 ) ) ? \
818 ( ( EARLY_OUTPUT( c ) && ( globs.pipe_action & 2 ) ) ? \
[all …]
Dmake1.cpp274 else if ( ! ( t->progress == T_MAKE_NOEXEC_DONE && globs.noexec ) ) in make1()
318 if ( !globs.noexec && t->progress == T_MAKE_NOEXEC_DONE ) in make1a()
397 if ( !globs.noexec ) in make1b()
544 if ( ( globs.jobs == 1 ) && ( DEBUG_MAKEQ || in make1c()
562 if ( ! globs.noexec && ! cmd->noop ) in make1c()
574 if ( globs.noexec || cmd->noop ) in make1c()
592 assert( 0 < globs.jobs ); in make1c()
593 while ( cmdsrunning >= globs.jobs ) in make1c()
603 if ( t->flags & T_FLAG_FAIL_EXPECTED && !globs.noexec ) in make1c()
623 if ( t->status == EXEC_CMD_FAIL && globs.quitquick ) in make1c()
[all …]
DJambase29 local globs = [ GLOB $(dir) : $(patterns) ] ;
30 while ! $(globs) && $(dir:P) != $(dir)
33 globs = [ GLOB $(dir) : $(patterns) ] ;
35 return $(globs) ;
Dheaders.cpp153 if ( !globs.noexec || errno != ENOENT ) in headers1()
Dbuiltins.cpp1499 original_noexec = globs.noexec; in builtin_update_now()
1500 globs.noexec = 0; in builtin_update_now()
1505 original_quitquick = globs.quitquick; in builtin_update_now()
1506 globs.quitquick = 0; in builtin_update_now()
1513 globs.noexec = original_noexec; in builtin_update_now()
1518 globs.quitquick = original_quitquick; in builtin_update_now()
/third_party/grpc/tools/mkowners/
Dmkowners.py77 directive = Directive(who='*', globs=[])
79 (who, globs) = line.split(' ', 1)
80 globs_list = [glob for glob in globs.split(' ') if glob]
81 directive = Directive(who=who, globs=globs_list)
83 directive = Directive(who=line, globs=[])
147 globs = collections.OrderedDict()
150 for glob in directive.globs or ['**']:
151 if glob not in globs:
152 globs[glob] = []
153 if directive.who not in globs[glob]:
[all …]
/third_party/python/Lib/
Ddoctest.py183 def _extract_future_flags(globs): argument
190 feature = globs.get(fname, None)
529 def __init__(self, examples, globs, name, filename, lineno, docstring): argument
538 self.globs = globs.copy()
560 self.globs == other.globs and \
667 def get_doctest(self, string, globs, name, filename, lineno): argument
676 return DocTest(self.get_examples(string, name), globs,
846 def find(self, obj, name=None, module=None, globs=None, extraglobs=None): argument
926 if globs is None:
928 globs = {}
[all …]
DcProfile.py163 globs = {
172 globs = {
179 runctx(code, globs, None, options.outfile, options.sort)
Dtrace.py707 globs = {
722 globs = {
728 t.runctx(code, globs, globs)
Dprofile.py583 globs = {
592 globs = {
599 runctx(code, globs, None, options.outfile, options.sort)
/third_party/boost/tools/quickbook/test/python/
Drun_tests.py154 globs = {}
164 globs[path] = []
169 globs[glob].append(path)
175 return { 'dependencies': dependencies, 'globs': globs }
/third_party/python/Tools/c-analyzer/cpython/
D_files.py42 globs = (os.path.join(REPO_ROOT, file) for file in GLOBS)
43 yield from expand_filenames(globs)
/third_party/glib/docs/
DCODEOWNERS10 # - the first column contains paths and globs
14 # The last matching glob (rather than the union of *all* matching globs) gives
/third_party/python/Doc/library/
Ddoctest.rst395 ``globs=your_dict`` to :func:`testmod` or :func:`testfile` instead.
841 .. function:: testfile(filename, module_relative=True, name=None, package=None, globs=None, verbose…
872 Optional argument *globs* gives a dict to be used as the globals when executing
878 execute examples. This works like :meth:`dict.update`: if *globs* and
911 .. function:: testmod(m=None, name=None, globs=None, verbose=None, report=True, optionflags=0, extr…
940 *raise_on_error*, and *globs* are the same as for function :func:`testfile`
941 above, except that *globs* defaults to ``m.__dict__``.
944 .. function:: run_docstring_examples(f, globs, verbose=False, name="NoName", compileflags=None, opt…
949 A shallow copy of dictionary argument *globs* is used for the execution context.
959 flags are deduced corresponding to the set of future features found in *globs*.
[all …]
Dglob.rst75 Support for recursive globs using "``**``".
90 Support for recursive globs using "``**``".
/third_party/grpc/examples/csharp/HelloworldXamarin/
D.gitignore10 # globs
/third_party/python/Lib/distutils/command/
Dbuild_py.py123 globs = (self.package_data.get('', [])
126 for pattern in globs:
/third_party/grpc/third_party/upb/tools/
Dmake_cmakelists.py268 globs = GetDict(converter) variable
/third_party/grpc/third_party/upb/cmake/
Dmake_cmakelists.py282 globs = GetDict(converter) variable
/third_party/typescript_eslint/packages/typescript-estree/
DREADME.md198 …* If you provide a glob (or globs) to the project option, you can use this option to ignore certai…
199 * being matched by the globs.
200 * This accepts an array of globs to ignore.
/third_party/boost/libs/test/build/
DCMakeLists.txt60 # include globs

12