Home
last modified time | relevance | path

Searched refs:list_front (Results 1 – 18 of 18) sorted by relevance

/third_party/boost/tools/build/src/engine/
Dbuiltins.cpp640 int status = atoi( object_str( list_front( code ) ) ); in builtin_exit()
1038 char const * delimiters = object_str( list_front( l2 ) ); in builtin_split_by_characters()
1041 string_copy( buf, object_str( list_front( l1 ) ) ); in builtin_split_by_characters()
1104 : list_front( arg0 ) ); in builtin_rulenames()
1135 : list_front( arg0 ) ); in builtin_varnames()
1154 list_front( arg0 ) ); in builtin_delete_module()
1215 : list_front( target_module_list ) ); in builtin_import()
1218 : list_front( source_module_list ) ); in builtin_import()
1279 module_t * const m = bindmodule( list_empty( module_list ) ? 0 : list_front( in builtin_export()
1378 : atoi( object_str( list_front( levels_arg ) ) ); in builtin_backtrace()
[all …]
Dw32_getreg.cpp62 char const* path = object_str( list_front( lol_get(frame->args, 0) ) ); in builtin_system_registry()
77 … RegQueryValueExA(key, field ? object_str( list_front( field ) ) : 0, 0, &type, data, &len) ) in builtin_system_registry()
189 char const* path = object_str( list_front( lol_get(frame->args, 0) ) ); in builtin_system_registry_names()
190 char const* result_type = object_str( list_front( lol_get(frame->args, 1) ) ); in builtin_system_registry_names()
Dclass.cpp129 OBJECT * name = class_module_name( list_front( xname ) ); in make_class_module()
137 pp = (OBJECT * *)hash_insert( classes, list_front( xname ), &found ); in make_class_module()
140 *pp = object_copy( list_front( xname ) ); in make_class_module()
144 out_printf( "Class %s already defined\n", object_str( list_front( xname ) ) in make_class_module()
Dsearch.cpp59 OBJECT * rulename = list_front( bind_rule ); in call_bind_rule()
166 f->f_root.ptr = object_str( list_front( varlist ) ); in search()
167 f->f_root.len = strlen( object_str( list_front( varlist ) ) ); in search()
Djam.cpp604 int const j = atoi( object_str( list_front( p ) ) ); in main()
607 object_str( list_front( p ) ) ); in main()
617 globs.quitquick = atoi( object_str( list_front( p ) ) ) ? 0 : 1; in main()
Dexeccmd.cpp103 !strcmp( object_str( list_front( shell ) ), "%" ) && in is_raw_command_request()
Dmake1.cpp548 OBJECT * target = list_front( lol_get( (LOL *)&cmd->args, 0 ) ); in make1c()
752 OBJECT * rulename = list_front( timing_rule ); in call_timing_rule()
811 OBJECT * rulename = list_front( action_rule ); in call_action_rule()
903 target_name = object_str( list_front( lol_get( (LOL *)&cmd->args, 0 ) ) in make1c_closure()
1004 TARGET * first_target = bindtarget( list_front( lol_get( &next_cmd->args, 0 ) ) ); in push_cmds()
1010 TARGET * first_target = bindtarget( list_front( lol_get( &next_cmd->args, 0 ) ) ); in push_cmds()
Dheaders.cpp103 OBJECT * rulename = list_front( hdrrule ); in headers()
Dhcache.cpp91 TARGET * const t = bindtarget( list_front( hcachevar ) ); in cache_name()
120 age = atoi( object_str( list_front( var ) ) ); in cache_maxage()
Dlists.h98 #define list_front( l ) list_item( list_begin( l ) ) macro
Dfunction.cpp469 rulename = object_copy( list_front( first ) ); in function_call_rule()
532 module = bindmodule( list_front( first ) ); in function_call_member_rule()
555 string_append( buf, object_str( list_front( first ) ) ); in function_call_member_rule()
3102 argument_error( object_str( list_front( error ) ), called, caller, in type_check_range()
3176 argument_error( "extra argument", function, frame, list_front( in argument_list_check()
3253 argument_error( "extra argument", function, frame, list_front( in argument_list_push()
4201 pattern = list_empty( l ) ? "" : object_str( list_front( l ) ); in function_run()
4202 match = list_empty( r ) ? "" : object_str( list_front( r ) ); in function_run()
4354 TARGET * t = bindtarget( list_front( targets ) ); in function_run()
4375 TARGET * t = bindtarget( list_front( targets ) ); in function_run()
[all …]
Dlists.cpp241 object_free( list_front( l ) ); in list_pop_front()
Drules.cpp187 set_explicit_binding( t->name, list_front( s->value ) ); in bind_explicitly_located_target()
Dmake.cpp364 TARGET * const semaphore = bindtarget( list_front( var ) ); in make0()
/third_party/boost/tools/build/src/engine/modules/
Dproperty-set.cpp168 pos->value = object_copy( list_front( val ) ); in property_set_create()
189 object_free( list_front( imports ) ); in property_set_create()
204 const char * name = object_str( list_front( lol_get( frame->args, 0 ) ) ); in property_set_get()
Dpath.cpp16 return file_query( list_front( lol_get( frame->args, 0 ) ) ) ? in path_exists()
Dsequence.cpp61 OBJECT * function_name = list_front( function ); in sequence_transform()
Dregex.cpp180 regexp * const re = regex_compile( list_front( pattern ) ); in regex_transform()