/third_party/boost/tools/build/src/engine/ |
D | output.cpp | 31 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 …]
|
D | jam.h | 469 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 …]
|
D | execunix.cpp | 101 #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 …]
|
D | jam.cpp | 153 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 …]
|
D | execnt.cpp | 236 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 …]
|
D | make1.cpp | 274 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 …]
|
D | Jambase | 29 local globs = [ GLOB $(dir) : $(patterns) ] ; 30 while ! $(globs) && $(dir:P) != $(dir) 33 globs = [ GLOB $(dir) : $(patterns) ] ; 35 return $(globs) ;
|
D | headers.cpp | 153 if ( !globs.noexec || errno != ENOENT ) in headers1()
|
D | builtins.cpp | 1499 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/ |
D | mkowners.py | 77 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/ |
D | doctest.py | 183 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 …]
|
D | cProfile.py | 163 globs = { 172 globs = { 179 runctx(code, globs, None, options.outfile, options.sort)
|
D | trace.py | 707 globs = { 722 globs = { 728 t.runctx(code, globs, globs)
|
D | profile.py | 583 globs = { 592 globs = { 599 runctx(code, globs, None, options.outfile, options.sort)
|
/third_party/boost/tools/quickbook/test/python/ |
D | run_tests.py | 154 globs = {} 164 globs[path] = [] 169 globs[glob].append(path) 175 return { 'dependencies': dependencies, 'globs': globs }
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | _files.py | 42 globs = (os.path.join(REPO_ROOT, file) for file in GLOBS) 43 yield from expand_filenames(globs)
|
/third_party/glib/docs/ |
D | CODEOWNERS | 10 # - 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/ |
D | doctest.rst | 395 ``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 …]
|
D | glob.rst | 75 Support for recursive globs using "``**``". 90 Support for recursive globs using "``**``".
|
/third_party/grpc/examples/csharp/HelloworldXamarin/ |
D | .gitignore | 10 # globs
|
/third_party/python/Lib/distutils/command/ |
D | build_py.py | 123 globs = (self.package_data.get('', []) 126 for pattern in globs:
|
/third_party/grpc/third_party/upb/tools/ |
D | make_cmakelists.py | 268 globs = GetDict(converter) variable
|
/third_party/grpc/third_party/upb/cmake/ |
D | make_cmakelists.py | 282 globs = GetDict(converter) variable
|
/third_party/typescript_eslint/packages/typescript-estree/ |
D | README.md | 198 …* 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/ |
D | CMakeLists.txt | 60 # include globs
|