|
Blender V5.0
|
#include <cerrno>#include <cstdlib>#include <cstring>#include "MEM_guardedalloc.h"#include "CLG_log.h"#include "BLI_args.h"#include "BLI_dynstr.h"#include "BLI_fileops.h"#include "BLI_listbase.h"#include "BLI_path_utils.hh"#include "BLI_string.h"#include "BLI_string_utf8.h"#include "BLI_system.h"#include "BLI_threads.h"#include "BLI_utildefines.h"#include "BLI_mempool.h"#include "BKE_appdir.hh"#include "BKE_blender.hh"#include "BKE_blender_cli_command.hh"#include "BKE_blender_version.h"#include "BKE_blendfile.hh"#include "BKE_context.hh"#include "BKE_global.hh"#include "BKE_image_format.hh"#include "BKE_lib_id.hh"#include "BKE_main.hh"#include "BKE_report.hh"#include "BKE_scene.hh"#include "BKE_sound.h"#include "GPU_context.hh"#include "RE_engine.h"#include "RE_pipeline.h"#include "WM_api.hh"#include "DEG_depsgraph.hh"#include "WM_types.hh"#include "creator_intern.h"Go to the source code of this file.
Classes | |
| struct | BuildDefs |
| struct | BA_ArgCallback_Deferred |
Macros | |
| #define | printf __ERROR__ |
| #define | PRINT(...) |
| #define | CB(a) |
| #define | CB_EX(a, b) |
| #define | CB_ALL(a) |
Functions | |
Build Defines | |
| static void | build_defs_init (BuildDefs *build_defs, bool force_all) |
Utility String Parsing | |
| static bool | parse_int_relative (const char *str, const char *str_end_test, int pos, int neg, int *r_value, const char **r_err_msg) |
| static const char * | parse_int_range_sep_search (const char *str, const char *str_end_test) |
| static bool | parse_int_range_relative (const char *str, const char *str_end_range, const char *str_end_test, int pos, int neg, int r_value_range[2], const char **r_err_msg) |
| static bool | parse_int_relative_clamp (const char *str, const char *str_end_test, int pos, int neg, int min, int max, int *r_value, const char **r_err_msg) |
| static bool | parse_int_range_relative_clamp (const char *str, const char *str_end_range, const char *str_end_test, int pos, int neg, int min, int max, int r_value_range[2], const char **r_err_msg) |
| static bool | parse_int_strict_range (const char *str, const char *str_end_test, const int min, const int max, int *r_value, const char **r_err_msg) |
| static bool | parse_int (const char *str, const char *str_end_test, int *r_value, const char **r_err_msg) |
| static bool | parse_int_clamp (const char *str, const char *str_end_test, int min, int max, int *r_value, const char **r_err_msg) |
| static int(* | parse_int_range_relative_clamp_n (const char *str, int pos, int neg, int min, int max, int *r_value_len, const char **r_err_msg))[2] |
Deferred Argument Handling | |
Support executing an argument running instead of WM_main which is deferred. Needed for arguments which are handled early but require sub-systems (Python in particular) * to be initialized. | |
| static bool | main_arg_deferred_is_set () |
| static void | main_arg_deferred_setup (BA_ArgCallback func, int argc, const char **argv, void *data) |
| void | main_arg_deferred_free () |
| static void | main_arg_deferred_exit_code_set (int exit_code) |
| int | main_arg_deferred_handle () |
Handle Argument Callbacks | |
| |
| #define | PY_ENABLE_AUTO ", (default, non-standard compilation option)" |
| #define | PY_DISABLE_AUTO "" |
| static const char | arg_handle_print_version_doc [] |
| static const char | arg_handle_print_help_doc [] |
| static const char | arg_handle_print_help_doc_win32 [] |
| static const char | arg_handle_arguments_end_doc [] |
| static const char | arg_handle_python_set_doc_enable [] |
| static const char | arg_handle_python_set_doc_disable [] |
| static const char | arg_handle_internet_allow_set_doc_online [] |
| static const char | arg_handle_internet_allow_set_doc_offline [] |
| static const char | arg_handle_crash_handler_disable_doc [] |
| static const char | arg_handle_abort_handler_disable_doc [] |
| static const char | arg_handle_debug_exit_on_error_doc [] |
| static const char | arg_handle_quiet_set_doc [] |
| static const char | arg_handle_background_mode_set_doc [] |
| static const char | arg_handle_command_set_doc [] |
| static const char | arg_handle_disable_depsgraph_on_file_load_doc [] |
| static const char | arg_handle_disable_liboverride_auto_resync_doc [] |
| static const char | arg_handle_log_level_set_doc [] |
| static const char | arg_handle_log_show_source_set_doc [] |
| static const char | arg_handle_log_show_backtrace_set_doc [] |
| static const char | arg_handle_log_show_memory_set_doc [] |
| static const char | arg_handle_log_file_set_doc [] |
| static const char | arg_handle_log_set_doc [] |
| static const char | arg_handle_list_clog_cats_doc [] |
| static const char | arg_handle_debug_mode_set_doc [] |
| static const char | arg_handle_debug_mode_generic_set_doc_freestyle [] |
| static const char | arg_handle_debug_mode_generic_set_doc_python [] |
| static const char | arg_handle_debug_mode_generic_set_doc_events [] |
| static const char | arg_handle_debug_mode_generic_set_doc_handlers [] |
| static const char | arg_handle_debug_mode_generic_set_doc_wm [] |
| static const char | arg_handle_debug_mode_generic_set_doc_ghost [] |
| static const char | arg_handle_debug_mode_generic_set_doc_wintab [] |
| static const char | arg_handle_debug_mode_generic_set_doc_xr [] |
| static const char | arg_handle_debug_mode_generic_set_doc_xr_time [] |
| static const char | arg_handle_debug_mode_generic_set_doc_jobs [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph_build [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph_tag [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph_time [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph_eval [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph_no_threads [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph_pretty [] |
| static const char | arg_handle_debug_mode_generic_set_doc_depsgraph_uid [] |
| static const char | arg_handle_debug_mode_generic_set_doc_gpu_force_workarounds [] |
| static const char | arg_handle_debug_mode_generic_set_doc_gpu_force_vulkan_local_read [] |
| static const char | arg_handle_debug_mode_io_doc [] |
| static const char | arg_handle_debug_mode_all_doc [] |
| static const char | arg_handle_debug_mode_libmv_doc [] |
| static const char | arg_handle_debug_mode_cycles_doc [] |
| static const char | arg_handle_debug_mode_ffmpeg_doc [] |
| static const char | arg_handle_debug_mode_memory_set_doc [] |
| static const char | arg_handle_debug_value_set_doc [] |
| static const char | arg_handle_debug_gpu_set_doc [] |
| static const char | arg_handle_debug_gpu_compile_shaders_set_doc [] |
| static const char | arg_handle_debug_gpu_scope_capture_set_doc [] |
| static const char | arg_handle_debug_gpu_renderdoc_set_doc [] |
| static const char | arg_handle_debug_gpu_shader_debug_info_set_doc [] |
| static const char | arg_handle_gpu_backend_set_doc_all [] |
| static const char | arg_handle_gpu_backend_set_doc [] |
| static const char | arg_handle_gpu_vsync_set_doc [] |
| static const char | arg_handle_gpu_compilation_subprocesses_set_doc [] |
| static const char | arg_handle_debug_fpe_set_doc [] |
| static const char | arg_handle_app_template_doc [] |
| static const char | arg_handle_factory_startup_set_doc [] |
| static const char | arg_handle_enable_event_simulate_doc [] |
| static const char | arg_handle_env_system_set_doc_datafiles [] |
| static const char | arg_handle_env_system_set_doc_scripts [] |
| static const char | arg_handle_env_system_set_doc_python [] |
| static const char | arg_handle_env_system_set_doc_extensions [] |
| static const char | arg_handle_playback_mode_doc [] |
| static const char | arg_handle_window_geometry_doc [] |
| static const char | arg_handle_native_pixels_set_doc [] |
| static const char | arg_handle_window_border_doc [] |
| static const char | arg_handle_window_fullscreen_doc [] |
| static const char | arg_handle_window_maximized_doc [] |
| static const char | arg_handle_no_window_frame_doc [] |
| static const char | arg_handle_no_window_focus_doc [] |
| static const char | arg_handle_start_with_console_doc [] |
| static const char | arg_handle_register_extension_doc [] |
| static const char | arg_handle_register_extension_all_doc [] |
| static const char | arg_handle_unregister_extension_doc [] |
| static const char | arg_handle_unregister_extension_all_doc [] |
| static const char | arg_handle_qos_set_doc [] |
| static const char | arg_handle_audio_disable_doc [] |
| static const char | arg_handle_audio_set_doc [] |
| static const char | arg_handle_output_set_doc [] |
| static const char | arg_handle_engine_set_doc [] |
| static const char | arg_handle_image_type_set_doc [] |
| static const char | arg_handle_threads_set_doc [] |
| static const char | arg_handle_verbosity_set_doc [] |
| static const char | arg_handle_extension_set_doc [] |
| static const char | arg_handle_render_frame_doc [] |
| static const char | arg_handle_render_animation_doc [] |
| static const char | arg_handle_scene_set_doc [] |
| static const char | arg_handle_frame_start_set_doc [] |
| static const char | arg_handle_frame_end_set_doc [] |
| static const char | arg_handle_frame_skip_set_doc [] |
| static const char | arg_handle_python_file_run_doc [] |
| static const char | arg_handle_python_text_run_doc [] |
| static const char | arg_handle_python_expr_run_doc [] |
| static const char | arg_handle_python_console_run_doc [] |
| static const char | arg_handle_python_exit_code_set_doc [] |
| static const char | arg_handle_python_use_system_env_set_doc [] |
| static const char | arg_handle_addons_set_doc [] |
| static const char | arg_handle_profile_gpu_set_doc [] |
| static const char | arg_handle_load_last_file_doc [] |
| static void | print_version_full () |
| static void | print_version_short () |
| static int | arg_handle_print_version (int, const char **, void *) |
| static void | print_help (bArgs *ba, bool all) |
| static void | help_print_ds_fn (void *ds_v, const char *format, va_list args) |
| static char * | main_args_help_as_string (bool all) |
| static int | arg_handle_print_help (int, const char **, void *data) |
| static int | arg_handle_arguments_end (int, const char **, void *) |
| static int | arg_handle_python_set (int, const char **, void *data) |
| static int | arg_handle_internet_allow_set (int, const char **, void *data) |
| static int | arg_handle_crash_handler_disable (int, const char **, void *) |
| static int | arg_handle_abort_handler_disable (int, const char **, void *) |
| static void | clog_abort_on_error_callback (void *fp) |
| static int | arg_handle_debug_exit_on_error (int, const char **, void *) |
| static int | arg_handle_quiet_set (int, const char **, void *) |
| static void | background_mode_set () |
| static int | arg_handle_background_mode_set (int, const char **, void *) |
| static int | arg_handle_command_set (int argc, const char **argv, void *data) |
| static int | arg_handle_disable_depsgraph_on_file_load (int, const char **, void *) |
| static int | arg_handle_disable_liboverride_auto_resync (int, const char **, void *) |
| static int | arg_handle_log_level_set (int argc, const char **argv, void *) |
| static int | arg_handle_log_show_source_set (int, const char **, void *) |
| static int | arg_handle_log_show_backtrace_set (int, const char **, void *) |
| static int | arg_handle_log_show_memory_set (int, const char **, void *) |
| static int | arg_handle_log_file_set (int argc, const char **argv, void *) |
| static int | arg_handle_log_set (int argc, const char **argv, void *) |
| static int | arg_handle_list_clog_cats (int, const char **, void *) |
| static int | arg_handle_debug_mode_set (int, const char **, void *data) |
| static int | arg_handle_debug_mode_generic_set (int, const char **, void *data) |
| static int | arg_handle_debug_mode_io (int, const char **, void *) |
| static int | arg_handle_debug_mode_all (int, const char **, void *) |
| static int | arg_handle_debug_mode_libmv (int, const char **, void *) |
| static int | arg_handle_debug_mode_cycles (int, const char **, void *) |
| static int | arg_handle_debug_mode_ffmpeg (int, const char **, void *) |
| static int | arg_handle_debug_mode_memory_set (int, const char **, void *) |
| static int | arg_handle_debug_value_set (int argc, const char **argv, void *) |
| static int | arg_handle_debug_gpu_set (int, const char **, void *) |
| static int | arg_handle_debug_gpu_compile_shaders_set (int, const char **, void *) |
| static int | arg_handle_debug_gpu_scope_capture_set (int argc, const char **argv, void *) |
| static int | arg_handle_debug_gpu_renderdoc_set (int, const char **, void *) |
| static int | arg_handle_debug_gpu_shader_debug_info_set (int, const char **, void *) |
| static int | arg_handle_gpu_backend_set (int argc, const char **argv, void *) |
| static int | arg_handle_gpu_vsync_set (int argc, const char **argv, void *) |
| static int | arg_handle_gpu_compilation_subprocesses_set (int argc, const char **argv, void *) |
| static int | arg_handle_debug_fpe_set (int, const char **, void *) |
| static int | arg_handle_app_template (int argc, const char **argv, void *) |
| static int | arg_handle_factory_startup_set (int, const char **, void *) |
| static int | arg_handle_enable_event_simulate (int, const char **, void *) |
| static int | arg_handle_env_system_set (int argc, const char **argv, void *) |
| static int | arg_handle_playback_mode (int argc, const char **argv, void *) |
| static int | arg_handle_window_geometry (int argc, const char **argv, void *) |
| static int | arg_handle_native_pixels_set (int, const char **, void *) |
| static int | arg_handle_window_border (int, const char **, void *) |
| static int | arg_handle_window_fullscreen (int, const char **, void *) |
| static int | arg_handle_window_maximized (int, const char **, void *) |
| static int | arg_handle_no_window_frame (int, const char **, void *) |
| static int | arg_handle_no_window_focus (int, const char **, void *) |
| static int | arg_handle_start_with_console (int, const char **, void *) |
| static bool | arg_handle_extension_registration (const bool do_register, const bool all_users) |
| static int | arg_handle_register_extension (int argc, const char **argv, void *data) |
| static int | arg_handle_register_extension_all (int argc, const char **argv, void *data) |
| static int | arg_handle_unregister_extension (int argc, const char **argv, void *data) |
| static int | arg_handle_unregister_extension_all (int argc, const char **argv, void *data) |
| static int | arg_handle_qos_set (int argc, const char **argv, void *) |
| static int | arg_handle_audio_disable (int, const char **, void *) |
| static int | arg_handle_audio_set (int argc, const char **argv, void *) |
| static int | arg_handle_output_set (int argc, const char **argv, void *data) |
| static int | arg_handle_engine_set (int argc, const char **argv, void *data) |
| static int | arg_handle_image_type_set (int argc, const char **argv, void *data) |
| static int | arg_handle_threads_set (int argc, const char **argv, void *) |
| static int | arg_handle_verbosity_set (int argc, const char **argv, void *) |
| static int | arg_handle_extension_set (int argc, const char **argv, void *data) |
| static void | add_log_render_filter () |
| static int | arg_handle_render_frame (int argc, const char **argv, void *data) |
| static int | arg_handle_render_animation (int, const char **, void *data) |
| static int | arg_handle_scene_set (int argc, const char **argv, void *data) |
| static int | arg_handle_frame_start_set (int argc, const char **argv, void *data) |
| static int | arg_handle_frame_end_set (int argc, const char **argv, void *data) |
| static int | arg_handle_frame_skip_set (int argc, const char **argv, void *data) |
| static int | arg_handle_python_file_run (int argc, const char **argv, void *data) |
| static int | arg_handle_python_text_run (int argc, const char **argv, void *data) |
| static int | arg_handle_python_expr_run (int argc, const char **argv, void *data) |
| static int | arg_handle_python_console_run (int, const char **, void *data) |
| static int | arg_handle_python_exit_code_set (int argc, const char **argv, void *) |
| static int | arg_handle_python_use_system_env_set (int, const char **, void *) |
| static int | arg_handle_addons_set (int argc, const char **argv, void *data) |
| static int | arg_handle_profile_gpu_set (int, const char **, void *) |
| static bool | handle_load_file (bContext *C, const char *filepath_arg, const bool load_empty_file) |
| int | main_args_handle_load_file (int, const char **argv, void *data) |
| static int | arg_handle_load_last_file (int, const char **, void *data) |
| void | main_args_setup (bContext *C, bArgs *ba, bool all) |
| #define CB | ( | a | ) |
Referenced by blender::animrig::ANIM_armature_foreach_bone(), blender::animrig::ANIM_armature_foreach_bone(), and main_args_setup().
| #define CB_ALL | ( | a | ) |
Referenced by main_args_setup().
| #define CB_EX | ( | a, | |
| b ) |
Referenced by main_args_setup().
| #define PRINT | ( | ... | ) |
Referenced by print_help().
| #define printf __ERROR__ |
| #define PY_DISABLE_AUTO "" |
Definition at line 964 of file creator_args.cc.
| #define PY_ENABLE_AUTO ", (default, non-standard compilation option)" |
Definition at line 963 of file creator_args.cc.
|
static |
Definition at line 2304 of file creator_args.cc.
References CLG_type_filter_include().
Referenced by arg_handle_render_animation(), and arg_handle_render_frame().
|
static |
Definition at line 1022 of file creator_args.cc.
References app_state.
Referenced by main_args_setup().
|
static |
Definition at line 2680 of file creator_args.cc.
References BLI_assert, BLI_snprintf(), BPY_run_string_exec(), C, data, free(), str, and UNUSED_VARS.
Referenced by main_args_setup().
|
static |
Definition at line 1730 of file creator_args.cc.
References app_template, STREQ, and WM_init_state_app_template_set().
Referenced by main_args_setup().
|
static |
Definition at line 953 of file creator_args.cc.
Referenced by main_args_setup().
|
static |
Definition at line 2065 of file creator_args.cc.
References BKE_sound_force_device().
Referenced by main_args_setup().
|
static |
Definition at line 2075 of file creator_args.cc.
References BKE_sound_force_device(), and STREQ.
Referenced by main_args_setup().
|
static |
Definition at line 1083 of file creator_args.cc.
References background_mode_set(), CLG_quiet_get(), and print_version_short().
Referenced by main_args_setup().
|
static |
Definition at line 1099 of file creator_args.cc.
References arg_handle_command_set(), background_mode_set(), BKE_blender_cli_command_exec(), BKE_blender_cli_command_print_help(), BLI_assert_unreachable, C, CLG_quiet_set(), data, main_arg_deferred_exit_code_set(), main_arg_deferred_is_set(), main_arg_deferred_setup(), and STREQ.
Referenced by arg_handle_command_set(), and main_args_setup().
|
static |
Definition at line 1013 of file creator_args.cc.
References app_state.
Referenced by main_args_setup().
|
static |
Definition at line 1038 of file creator_args.cc.
References CLG_error_fn_set(), clog_abort_on_error_callback(), and MEM_enable_fail_on_memleak().
Referenced by main_args_setup().
|
static |
Definition at line 1721 of file creator_args.cc.
References main_signal_setup_fpe().
Referenced by main_args_setup().
|
static |
Definition at line 1522 of file creator_args.cc.
References G, and G_DEBUG_GPU_COMPILE_SHADERS.
Referenced by main_args_setup().
|
static |
Definition at line 1551 of file creator_args.cc.
References BLI_assert_unreachable, G, G_DEBUG_GPU, G_DEBUG_GPU_RENDERDOC, and G_DEBUG_GPU_SHADER_DEBUG_INFO.
Referenced by main_args_setup().
|
static |
Definition at line 1533 of file creator_args.cc.
References BLI_assert_unreachable, G, STRNCPY(), and UNUSED_VARS.
Referenced by main_args_setup().
|
static |
Definition at line 1510 of file creator_args.cc.
References CLG_type_filter_include(), G, and G_DEBUG_GPU.
Referenced by main_args_setup().
|
static |
Definition at line 1566 of file creator_args.cc.
References G, and G_DEBUG_GPU_SHADER_DEBUG_INFO.
Referenced by main_args_setup().
|
static |
Definition at line 1436 of file creator_args.cc.
References G, G_DEBUG_ALL, and libmv_startDebugLogging().
Referenced by main_args_setup().
|
static |
Definition at line 1459 of file creator_args.cc.
References CLG_type_filter_include().
Referenced by main_args_setup().
|
static |
Definition at line 1469 of file creator_args.cc.
References CLG_type_filter_include().
Referenced by main_args_setup().
|
static |
Definition at line 1418 of file creator_args.cc.
References data, G, and POINTER_AS_INT.
Referenced by main_args_setup().
|
static |
Definition at line 1427 of file creator_args.cc.
References G, and G_DEBUG_IO.
Referenced by main_args_setup().
|
static |
Definition at line 1448 of file creator_args.cc.
References libmv_startDebugLogging().
Referenced by main_args_setup().
|
static |
Definition at line 1479 of file creator_args.cc.
References MEM_set_memory_debug.
Referenced by main_args_setup().
|
static |
Definition at line 1337 of file creator_args.cc.
References BKE_blender_version_string(), BLI_args_print(), BLI_mempool_set_memory_debug(), build_date, build_platform, build_time, build_type, data, G, G_DEBUG, MEM_set_memory_debug, and printf.
Referenced by main_args_setup().
|
static |
Definition at line 1488 of file creator_args.cc.
References G, and parse_int().
Referenced by main_args_setup().
|
static |
Definition at line 1143 of file creator_args.cc.
References G, and G_BACKGROUND_NO_DEPSGRAPH.
Referenced by main_args_setup().
|
static |
Definition at line 1157 of file creator_args.cc.
References G, and G_LIBOVERRIDE_NO_AUTO_RESYNC.
Referenced by main_args_setup().
|
static |
Definition at line 1754 of file creator_args.cc.
References G, and G_FLAG_EVENT_SIMULATE.
Referenced by main_args_setup().
|
static |
Definition at line 2132 of file creator_args.cc.
References BLI_findstring(), C, CTX_data_scene(), data, DEG_id_tag_update(), RenderData::engine, Scene::id, ID_RECALC_SYNC_TO_EVAL, LISTBASE_FOREACH, offsetof, printf, Scene::r, R_engines, STREQ, STRNCPY_UTF8, and WM_exit_ex().
Referenced by main_args_setup().
|
static |
Definition at line 1773 of file creator_args.cc.
References BLI_assert_unreachable, and BLI_setenv().
Referenced by main_args_setup().
|
static |
Definition at line 1920 of file creator_args.cc.
References BLI_windows_register_blend_extension(), BLI_windows_unregister_blend_extension(), MEM_freeN(), result, and WM_platform_associate_set().
Referenced by arg_handle_register_extension(), arg_handle_register_extension_all(), arg_handle_unregister_extension(), and arg_handle_unregister_extension_all().
|
static |
Definition at line 2274 of file creator_args.cc.
References C, CTX_data_scene(), data, DEG_id_tag_update(), Scene::id, ID_RECALC_SYNC_TO_EVAL, Scene::r, R_EXTENSION, and RenderData::scemode.
Referenced by main_args_setup().
|
static |
Definition at line 1744 of file creator_args.cc.
References G, and G_FLAG_USERPREF_NO_SAVE_ON_EXIT.
Referenced by main_args_setup().
|
static |
Definition at line 2462 of file creator_args.cc.
References C, CTX_data_scene(), data, DEG_id_tag_update(), RenderData::efra, Scene::id, ID_RECALC_SYNC_TO_EVAL, MAXFRAME, MINAFRAME, parse_int_relative_clamp(), and Scene::r.
Referenced by main_args_setup().
|
static |
Definition at line 2496 of file creator_args.cc.
References C, CTX_data_scene(), data, DEG_id_tag_update(), RenderData::frame_step, Scene::id, ID_RECALC_SYNC_TO_EVAL, MAXFRAME, parse_int_clamp(), and Scene::r.
Referenced by main_args_setup().
|
static |
Definition at line 2428 of file creator_args.cc.
References C, CTX_data_scene(), data, DEG_id_tag_update(), Scene::id, ID_RECALC_SYNC_TO_EVAL, MAXFRAME, MINAFRAME, parse_int_relative_clamp(), Scene::r, and RenderData::sfra.
Referenced by main_args_setup().
|
static |
Definition at line 1596 of file creator_args.cc.
References GPU_BACKEND_METAL, GPU_BACKEND_NONE, GPU_BACKEND_OPENGL, GPU_backend_type_selection_set_override(), GPU_BACKEND_VULKAN, i, and STREQ.
Referenced by main_args_setup().
|
static |
Definition at line 1682 of file creator_args.cc.
References BLI_assert_unreachable, BLI_system_thread_count(), GPU_compilation_subprocess_override_set(), max, min, parse_int_strict_range(), and UNUSED_VARS.
Referenced by main_args_setup().
|
static |
Definition at line 1649 of file creator_args.cc.
References GPU_backend_vsync_set_override(), and STREQ.
Referenced by main_args_setup().
|
static |
Definition at line 2185 of file creator_args.cc.
References BKE_image_format_set(), BKE_imtype_from_arg(), C, CTX_data_scene(), data, DEG_id_tag_update(), Scene::id, ID_RECALC_SYNC_TO_EVAL, RenderData::im_format, Scene::r, and R_IMF_IMTYPE_INVALID.
Referenced by main_args_setup().
|
static |
Definition at line 996 of file creator_args.cc.
References data, G, G_FLAG_INTERNET_ALLOW, G_FLAG_INTERNET_OVERRIDE_PREF_ANY, G_FLAG_INTERNET_OVERRIDE_PREF_OFFLINE, and G_FLAG_INTERNET_OVERRIDE_PREF_ONLINE.
Referenced by main_args_setup().
|
static |
Definition at line 1321 of file creator_args.cc.
References BKE_blender_atexit(), CLG_logref_list_all(), and printf.
Referenced by main_args_setup().
|
static |
Definition at line 2817 of file creator_args.cc.
References BLI_listbase_is_empty(), C, data, RecentFile::filepath, G, and handle_load_file().
Referenced by main_args_setup().
|
static |
Definition at line 1252 of file creator_args.cc.
References BLI_fopen(), CLG_output_set(), G, and UNLIKELY.
Referenced by main_args_setup().
|
static |
Definition at line 1175 of file creator_args.cc.
References CLG_LEVEL_DEBUG, CLG_LEVEL_ERROR, CLG_LEVEL_FATAL, CLG_LEVEL_INFO, CLG_LEVEL_LEN, CLG_level_set(), CLG_LEVEL_TRACE, CLG_LEVEL_WARN, G, parse_int_clamp(), and STRCASEEQ.
Referenced by main_args_setup().
|
static |
Definition at line 1284 of file creator_args.cc.
References CLG_type_filter_exclude(), and CLG_type_filter_include().
Referenced by main_args_setup().
|
static |
Definition at line 1232 of file creator_args.cc.
References BLI_system_backtrace(), and CLG_backtrace_fn_set().
Referenced by main_args_setup().
|
static |
Definition at line 1243 of file creator_args.cc.
References CLG_output_use_memory_set().
Referenced by main_args_setup().
|
static |
Definition at line 1223 of file creator_args.cc.
References CLG_output_use_source_set().
Referenced by main_args_setup().
|
static |
Definition at line 1860 of file creator_args.cc.
References WM_init_native_pixels().
Referenced by main_args_setup().
|
static |
Definition at line 1905 of file creator_args.cc.
References WM_init_window_focus_set().
Referenced by main_args_setup().
|
static |
Definition at line 1896 of file creator_args.cc.
References WM_init_window_frame_set().
Referenced by main_args_setup().
|
static |
Definition at line 2110 of file creator_args.cc.
References C, CTX_data_scene(), data, DEG_id_tag_update(), Scene::id, ID_RECALC_SYNC_TO_EVAL, RenderData::pic, Scene::r, and STRNCPY().
Referenced by main_args_setup().
|
static |
Definition at line 1818 of file creator_args.cc.
References G, and WM_main_playanim().
Referenced by main_args_setup().
|
static |
Definition at line 934 of file creator_args.cc.
References BKE_blender_atexit(), BLI_assert_unreachable, data, and print_help().
Referenced by main_args_setup().
|
static |
Definition at line 634 of file creator_args.cc.
References BKE_blender_atexit(), BLI_assert_unreachable, and print_version_full().
Referenced by main_args_setup().
|
static |
|
static |
Definition at line 2620 of file creator_args.cc.
References BPY_run_string_eval(), C, data, and UNUSED_VARS.
Referenced by main_args_setup().
|
static |
Definition at line 2638 of file creator_args.cc.
References app_state, max, min, and parse_int_strict_range().
Referenced by main_args_setup().
|
static |
Definition at line 2593 of file creator_args.cc.
References app_state, BPY_run_string_exec(), C, data, UNUSED_VARS, and WM_exit().
Referenced by main_args_setup().
|
static |
Definition at line 2522 of file creator_args.cc.
References app_state, BLI_path_canonicalize_native(), BPY_run_filepath(), C, data, FILE_MAX, STRNCPY(), UNUSED_VARS, and WM_exit().
Referenced by main_args_setup().
|
static |
Definition at line 977 of file creator_args.cc.
References data, G, G_FLAG_SCRIPT_AUTOEXEC, and G_FLAG_SCRIPT_OVERRIDE_PREF.
Referenced by main_args_setup().
|
static |
Definition at line 2554 of file creator_args.cc.
References app_state, BKE_libblock_find_name(), BPY_run_text(), C, CTX_data_main(), data, ID_TXT, UNUSED_VARS, and WM_exit().
Referenced by main_args_setup().
|
static |
Definition at line 2667 of file creator_args.cc.
References BPY_python_use_system_env().
Referenced by main_args_setup().
|
static |
Definition at line 2032 of file creator_args.cc.
References BLI_windows_process_set_qos(), CMDLINE_ARG, DEFAULT, ECO, HIGH, STRCASEEQ, and UNUSED_VARS.
Referenced by main_args_setup().
|
static |
Definition at line 1048 of file creator_args.cc.
References CLG_quiet_set().
Referenced by main_args_setup().
|
static |
Definition at line 1948 of file creator_args.cc.
References arg_handle_extension_registration(), arg_handle_register_extension(), background_mode_set(), CLG_quiet_set(), data, main_arg_deferred_is_set(), main_arg_deferred_setup(), and UNUSED_VARS.
Referenced by arg_handle_register_extension(), and main_args_setup().
|
static |
Definition at line 1968 of file creator_args.cc.
References arg_handle_extension_registration(), arg_handle_register_extension_all(), background_mode_set(), CLG_quiet_set(), data, main_arg_deferred_is_set(), main_arg_deferred_setup(), and UNUSED_VARS.
Referenced by arg_handle_register_extension_all(), and main_args_setup().
|
static |
Definition at line 2375 of file creator_args.cc.
References add_log_render_filter(), BKE_reports_free(), BKE_reports_init(), C, CTX_data_main(), CTX_data_scene(), data, RenderData::efra, RenderData::frame_step, Scene::r, RE_NewSceneRender(), RE_RenderAnim(), RE_SetReports(), RPT_STORE, and RenderData::sfra.
Referenced by main_args_setup().
|
static |
Definition at line 2318 of file creator_args.cc.
References add_log_render_filter(), BKE_reports_free(), BKE_reports_init(), C, CTX_data_main(), CTX_data_scene(), data, RenderData::efra, RenderData::frame_step, i, MAXFRAME, MEM_freeN(), MINAFRAME, parse_int_range_relative_clamp_n(), Scene::r, RE_NewSceneRender(), RE_RenderAnim(), RE_SetReports(), RPT_STORE, and RenderData::sfra.
Referenced by main_args_setup().
|
static |
Definition at line 2401 of file creator_args.cc.
References BKE_scene_set_name(), C, CTX_data_main(), CTX_data_scene_set(), CTX_wm_manager(), CTX_wm_window(), data, ListBase::first, wmWindowManager::windows, and WM_window_set_active_scene().
Referenced by main_args_setup().
|
static |
Definition at line 1914 of file creator_args.cc.
References WM_init_state_start_with_console_set().
Referenced by main_args_setup().
|
static |
Definition at line 2219 of file creator_args.cc.
References BLENDER_MAX_THREADS, BLI_system_num_threads_override_set(), max, min, and parse_int_strict_range().
Referenced by main_args_setup().
|
static |
Definition at line 1988 of file creator_args.cc.
References arg_handle_extension_registration(), arg_handle_unregister_extension(), background_mode_set(), CLG_quiet_set(), data, main_arg_deferred_is_set(), main_arg_deferred_setup(), and UNUSED_VARS.
Referenced by arg_handle_unregister_extension(), and main_args_setup().
|
static |
Definition at line 2008 of file creator_args.cc.
References arg_handle_extension_registration(), arg_handle_unregister_extension_all(), background_mode_set(), CLG_quiet_set(), data, main_arg_deferred_is_set(), main_arg_deferred_setup(), and UNUSED_VARS.
Referenced by arg_handle_unregister_extension_all(), and main_args_setup().
|
static |
Definition at line 2251 of file creator_args.cc.
References libmv_setLoggingVerbosity(), and parse_int().
Referenced by main_args_setup().
|
static |
Definition at line 1869 of file creator_args.cc.
References WM_init_state_normal_set().
Referenced by main_args_setup().
|
static |
Definition at line 1878 of file creator_args.cc.
References WM_init_state_fullscreen_set().
Referenced by main_args_setup().
|
static |
Definition at line 1834 of file creator_args.cc.
References i, params, parse_int(), UNPACK4, and WM_init_state_size_set().
Referenced by main_args_setup().
|
static |
Definition at line 1887 of file creator_args.cc.
References WM_init_state_maximized_set().
Referenced by main_args_setup().
|
static |
Shared by --background & --command.
Definition at line 1055 of file creator_args.cc.
References BKE_sound_force_device(), and G.
Referenced by arg_handle_background_mode_set(), arg_handle_command_set(), arg_handle_register_extension(), arg_handle_register_extension_all(), arg_handle_unregister_extension(), and arg_handle_unregister_extension_all().
|
static |
Definition at line 105 of file creator_args.cc.
References BuildDefs::win32, BuildDefs::with_cycles, BuildDefs::with_ffmpeg, BuildDefs::with_freestyle, BuildDefs::with_libmv, BuildDefs::with_opencolorio, BuildDefs::with_opengl_backend, BuildDefs::with_renderdoc, BuildDefs::with_vulkan_backend, and BuildDefs::with_xr_openxr.
Referenced by main_args_setup(), and print_help().
|
static |
Definition at line 1028 of file creator_args.cc.
References BLI_system_backtrace().
Referenced by arg_handle_debug_exit_on_error().
|
static |
Implementation for arg_handle_load_last_file, also used by --open-last.
Definition at line 2719 of file creator_args.cc.
References BKE_blendfile_extension_check(), BKE_report_print_level_set(), BKE_reports_free(), BKE_reports_init(), BLI_exists(), BLI_path_canonicalize_native(), C, CTX_wm_manager(), CTX_wm_window_set(), FILE_MAX, G, G_MAIN, printf, RPT_PRINT, RPT_STORE, RPT_WARNING, STRNCPY(), WM_exit(), WM_file_read(), and WM_reports_from_reports_move().
Referenced by arg_handle_load_last_file(), and main_args_handle_load_file().
|
static |
Definition at line 907 of file creator_args.cc.
References BLI_dynstr_vappendf(), and help_print_ds_fn().
Referenced by help_print_ds_fn(), and main_args_help_as_string().
|
static |
Definition at line 504 of file creator_args.cc.
References app_state, BLI_assert, and BA_ArgCallback_Deferred::exit_code.
Referenced by arg_handle_command_set().
| void main_arg_deferred_free | ( | ) |
Definition at line 494 of file creator_args.cc.
References app_state, BA_ArgCallback_Deferred::argc, BA_ArgCallback_Deferred::argv, and MEM_freeN().
Referenced by main().
| int main_arg_deferred_handle | ( | ) |
Handle an argument which requested deferred evaluation. Needed when arguments which evaluate early need Python to be initialized for example.
Definition at line 511 of file creator_args.cc.
References app_state, BA_ArgCallback_Deferred::argc, BA_ArgCallback_Deferred::argv, BA_ArgCallback_Deferred::data, BA_ArgCallback_Deferred::exit_code, and BA_ArgCallback_Deferred::func.
Referenced by main().
|
static |
Definition at line 474 of file creator_args.cc.
References app_state.
Referenced by arg_handle_command_set(), arg_handle_register_extension(), arg_handle_register_extension_all(), arg_handle_unregister_extension(), and arg_handle_unregister_extension_all().
|
static |
Definition at line 479 of file creator_args.cc.
References app_state, BA_ArgCallback_Deferred::argc, BA_ArgCallback_Deferred::argv, BLI_assert, BA_ArgCallback_Deferred::data, data, BA_ArgCallback_Deferred::exit_code, BA_ArgCallback_Deferred::func, and MEM_callocN().
Referenced by arg_handle_command_set(), arg_handle_register_extension(), arg_handle_register_extension_all(), arg_handle_unregister_extension(), and arg_handle_unregister_extension_all().
| int main_args_handle_load_file | ( | int | argc, |
| const char ** | argv, | ||
| void * | data ) |
Handler for loading blend files.
Definition at line 2798 of file creator_args.cc.
References C, data, and handle_load_file().
Referenced by main().
|
static |
Definition at line 913 of file creator_args.cc.
References all(), BLI_args_create(), BLI_args_destroy(), BLI_args_print_fn_set(), BLI_dynstr_free(), BLI_dynstr_get_cstring(), BLI_dynstr_new(), help_print_ds_fn(), main_args_setup(), and print_help().
Referenced by main_args_setup().
| all | When enabled, all arguments are initialized even for configurations that don't apply to the current system. Used for documentation (see Python API: bpy.app.help_text(all=True)). |
Expand the doc-string from the function.
A version of CB that expands an additional suffix.
A version of CB that uses all, needed when the doc-string depends on build options.
Definition at line 2832 of file creator_args.cc.
References all(), arg_handle_abort_handler_disable(), arg_handle_addons_set(), arg_handle_app_template(), arg_handle_arguments_end(), arg_handle_audio_disable(), arg_handle_audio_set(), arg_handle_background_mode_set(), arg_handle_command_set(), arg_handle_crash_handler_disable(), arg_handle_debug_exit_on_error(), arg_handle_debug_fpe_set(), arg_handle_debug_gpu_compile_shaders_set(), arg_handle_debug_gpu_renderdoc_set(), arg_handle_debug_gpu_scope_capture_set(), arg_handle_debug_gpu_set(), arg_handle_debug_gpu_shader_debug_info_set(), arg_handle_debug_mode_all(), arg_handle_debug_mode_cycles(), arg_handle_debug_mode_ffmpeg(), arg_handle_debug_mode_generic_set(), arg_handle_debug_mode_io(), arg_handle_debug_mode_libmv(), arg_handle_debug_mode_memory_set(), arg_handle_debug_mode_set(), arg_handle_debug_value_set(), arg_handle_disable_depsgraph_on_file_load(), arg_handle_disable_liboverride_auto_resync(), arg_handle_enable_event_simulate(), arg_handle_engine_set(), arg_handle_env_system_set(), arg_handle_extension_set(), arg_handle_factory_startup_set(), arg_handle_frame_end_set(), arg_handle_frame_skip_set(), arg_handle_frame_start_set(), arg_handle_gpu_backend_set(), arg_handle_gpu_compilation_subprocesses_set(), arg_handle_gpu_vsync_set(), arg_handle_image_type_set(), arg_handle_internet_allow_set(), arg_handle_list_clog_cats(), arg_handle_load_last_file(), arg_handle_log_file_set(), arg_handle_log_level_set(), arg_handle_log_set(), arg_handle_log_show_backtrace_set(), arg_handle_log_show_memory_set(), arg_handle_log_show_source_set(), arg_handle_native_pixels_set(), arg_handle_no_window_focus(), arg_handle_no_window_frame(), arg_handle_output_set(), arg_handle_playback_mode(), arg_handle_print_help(), arg_handle_print_version(), arg_handle_profile_gpu_set(), arg_handle_python_console_run(), arg_handle_python_exit_code_set(), arg_handle_python_expr_run(), arg_handle_python_file_run(), arg_handle_python_set(), arg_handle_python_text_run(), arg_handle_python_use_system_env_set(), arg_handle_qos_set(), arg_handle_quiet_set(), arg_handle_register_extension(), arg_handle_register_extension_all(), arg_handle_render_animation(), arg_handle_render_frame(), arg_handle_scene_set(), arg_handle_start_with_console(), arg_handle_threads_set(), arg_handle_unregister_extension(), arg_handle_unregister_extension_all(), arg_handle_verbosity_set(), arg_handle_window_border(), arg_handle_window_fullscreen(), arg_handle_window_geometry(), arg_handle_window_maximized(), ARG_PASS_ENVIRONMENT, ARG_PASS_FINAL, ARG_PASS_SETTINGS, ARG_PASS_SETTINGS_FORCE, ARG_PASS_SETTINGS_GUI, BLI_args_add(), BLI_args_add_case(), BLI_args_pass_set(), BPY_python_app_help_text_fn, build_defs_init(), C, CB, CB_ALL, CB_EX, depsgraph, G_DEBUG_DEPSGRAPH, G_DEBUG_DEPSGRAPH_BUILD, G_DEBUG_DEPSGRAPH_EVAL, G_DEBUG_DEPSGRAPH_NO_THREADS, G_DEBUG_DEPSGRAPH_PRETTY, G_DEBUG_DEPSGRAPH_TAG, G_DEBUG_DEPSGRAPH_TIME, G_DEBUG_DEPSGRAPH_UID, G_DEBUG_EVENTS, G_DEBUG_FREESTYLE, G_DEBUG_GHOST, G_DEBUG_GPU_FORCE_VULKAN_LOCAL_READ, G_DEBUG_GPU_FORCE_WORKAROUNDS, G_DEBUG_HANDLERS, G_DEBUG_JOBS, G_DEBUG_PYTHON, G_DEBUG_WINTAB, G_DEBUG_WM, G_DEBUG_XR, G_DEBUG_XR_TIME, main_args_help_as_string(), BuildDefs::with_cycles, BuildDefs::with_ffmpeg, BuildDefs::with_freestyle, BuildDefs::with_libmv, BuildDefs::with_opengl_backend, BuildDefs::with_renderdoc, BuildDefs::with_vulkan_backend, and BuildDefs::with_xr_openxr.
Referenced by main(), and main_args_help_as_string().
|
static |
Definition at line 298 of file creator_args.cc.
References parse_int_strict_range(), and str.
Referenced by arg_handle_debug_value_set(), arg_handle_verbosity_set(), arg_handle_window_geometry(), and parse_int_clamp().
|
static |
Definition at line 306 of file creator_args.cc.
References CLAMP, max, min, parse_int(), and str.
Referenced by arg_handle_frame_skip_set(), and arg_handle_log_level_set().
|
static |
Parse a number as a range, eg: 1..4.
The str_end_range argument is a result of parse_int_range_sep_search.
Definition at line 216 of file creator_args.cc.
References parse_int_relative(), pos, and str.
Referenced by parse_int_range_relative_clamp().
|
static |
Definition at line 248 of file creator_args.cc.
References CLAMP, max, min, parse_int_range_relative(), pos, and str.
Referenced by parse_int_range_relative_clamp_n().
|
static |
Version of parse_int_relative_clamp & parse_int_range_relative_clamp that parses a comma separated list of numbers.
Definition at line 376 of file creator_args.cc.
References ELEM, i, len, max, MEM_freeN(), MEM_malloc_arrayN(), min, parse_int_range_relative_clamp(), parse_int_range_sep_search(), parse_int_relative_clamp(), pos, and str.
Referenced by arg_handle_render_frame().
|
static |
Definition at line 193 of file creator_args.cc.
References str.
Referenced by parse_int_range_relative_clamp_n().
|
static |
Definition at line 155 of file creator_args.cc.
Referenced by parse_int_range_relative(), and parse_int_relative_clamp().
|
static |
Definition at line 232 of file creator_args.cc.
References CLAMP, max, min, parse_int_relative(), pos, and str.
Referenced by arg_handle_frame_end_set(), arg_handle_frame_start_set(), and parse_int_range_relative_clamp_n().
|
static |
No clamping, fails with any number outside the range.
Definition at line 271 of file creator_args.cc.
Referenced by arg_handle_gpu_compilation_subprocesses_set(), arg_handle_python_exit_code_set(), arg_handle_threads_set(), and parse_int().
|
static |
Definition at line 646 of file creator_args.cc.
References all(), BKE_blender_version_string(), BLI_args_has_other_doc(), BLI_args_print_arg_doc(), BLI_args_print_other_doc(), build_defs_init(), PRINT, BuildDefs::win32, BuildDefs::with_cycles, BuildDefs::with_freestyle, BuildDefs::with_libmv, BuildDefs::with_opencolorio, BuildDefs::with_opengl_backend, BuildDefs::with_renderdoc, BuildDefs::with_vulkan_backend, and BuildDefs::with_xr_openxr.
Referenced by arg_handle_print_help(), and main_args_help_as_string().
|
static |
Definition at line 597 of file creator_args.cc.
References BKE_blender_version_string(), build_branch, build_cflags, build_commit_date, build_commit_time, build_cxxflags, build_date, build_hash, build_linkflags, build_platform, build_system, build_time, build_type, and printf.
Referenced by arg_handle_print_version().
|
static |
Definition at line 616 of file creator_args.cc.
References BKE_blender_version_string(), build_date, build_hash, build_time, and printf.
Referenced by arg_handle_background_mode_set().
|
static |
Definition at line 1019 of file creator_args.cc.
|
static |
Definition at line 2677 of file creator_args.cc.
|
static |
Definition at line 1727 of file creator_args.cc.
|
static |
Definition at line 949 of file creator_args.cc.
|
static |
Definition at line 2062 of file creator_args.cc.
|
static |
Definition at line 2071 of file creator_args.cc.
|
static |
Definition at line 1077 of file creator_args.cc.
|
static |
Definition at line 1092 of file creator_args.cc.
|
static |
Definition at line 1010 of file creator_args.cc.
|
static |
Definition at line 1035 of file creator_args.cc.
|
static |
Definition at line 1718 of file creator_args.cc.
|
static |
Definition at line 1519 of file creator_args.cc.
|
static |
Definition at line 1548 of file creator_args.cc.
|
static |
Definition at line 1530 of file creator_args.cc.
|
static |
Definition at line 1507 of file creator_args.cc.
|
static |
Definition at line 1563 of file creator_args.cc.
|
static |
Definition at line 1433 of file creator_args.cc.
|
static |
Definition at line 1456 of file creator_args.cc.
|
static |
Definition at line 1466 of file creator_args.cc.
|
static |
Definition at line 1387 of file creator_args.cc.
|
static |
Definition at line 1390 of file creator_args.cc.
|
static |
Definition at line 1399 of file creator_args.cc.
|
static |
Definition at line 1402 of file creator_args.cc.
|
static |
Definition at line 1405 of file creator_args.cc.
|
static |
Definition at line 1393 of file creator_args.cc.
|
static |
Definition at line 1396 of file creator_args.cc.
|
static |
Definition at line 1408 of file creator_args.cc.
|
static |
Definition at line 1360 of file creator_args.cc.
|
static |
Definition at line 1354 of file creator_args.cc.
|
static |
Definition at line 1370 of file creator_args.cc.
|
static |
Definition at line 1414 of file creator_args.cc.
|
static |
Definition at line 1411 of file creator_args.cc.
|
static |
Definition at line 1363 of file creator_args.cc.
|
static |
Definition at line 1384 of file creator_args.cc.
|
static |
Definition at line 1357 of file creator_args.cc.
|
static |
Definition at line 1373 of file creator_args.cc.
|
static |
Definition at line 1366 of file creator_args.cc.
|
static |
Definition at line 1376 of file creator_args.cc.
|
static |
Definition at line 1381 of file creator_args.cc.
|
static |
Definition at line 1424 of file creator_args.cc.
|
static |
Definition at line 1445 of file creator_args.cc.
|
static |
Definition at line 1476 of file creator_args.cc.
|
static |
Definition at line 1330 of file creator_args.cc.
|
static |
Definition at line 1485 of file creator_args.cc.
|
static |
Definition at line 1132 of file creator_args.cc.
|
static |
Definition at line 1151 of file creator_args.cc.
|
static |
Definition at line 1751 of file creator_args.cc.
|
static |
Definition at line 2128 of file creator_args.cc.
|
static |
Definition at line 1760 of file creator_args.cc.
|
static |
Definition at line 1769 of file creator_args.cc.
|
static |
Definition at line 1766 of file creator_args.cc.
|
static |
Definition at line 1763 of file creator_args.cc.
|
static |
Definition at line 2271 of file creator_args.cc.
|
static |
Definition at line 1741 of file creator_args.cc.
|
static |
Definition at line 2459 of file creator_args.cc.
|
static |
Definition at line 2493 of file creator_args.cc.
|
static |
Definition at line 2425 of file creator_args.cc.
|
static |
Definition at line 1580 of file creator_args.cc.
|
static |
Definition at line 1574 of file creator_args.cc.
|
static |
Definition at line 1679 of file creator_args.cc.
|
static |
Definition at line 1641 of file creator_args.cc.
|
static |
Definition at line 2177 of file creator_args.cc.
|
static |
Definition at line 992 of file creator_args.cc.
|
static |
Definition at line 989 of file creator_args.cc.
|
static |
Definition at line 1317 of file creator_args.cc.
|
static |
Definition at line 2814 of file creator_args.cc.
|
static |
Definition at line 1249 of file creator_args.cc.
|
static |
Definition at line 1165 of file creator_args.cc.
|
static |
Definition at line 1275 of file creator_args.cc.
|
static |
Definition at line 1229 of file creator_args.cc.
|
static |
Definition at line 1240 of file creator_args.cc.
|
static |
Definition at line 1220 of file creator_args.cc.
|
static |
Definition at line 1857 of file creator_args.cc.
|
static |
Definition at line 1902 of file creator_args.cc.
|
static |
Definition at line 1893 of file creator_args.cc.
|
static |
Definition at line 2092 of file creator_args.cc.
|
static |
Definition at line 1796 of file creator_args.cc.
|
static |
Definition at line 928 of file creator_args.cc.
|
static |
Definition at line 931 of file creator_args.cc.
|
static |
Definition at line 631 of file creator_args.cc.
|
static |
Definition at line 2705 of file creator_args.cc.
|
static |
Definition at line 2617 of file creator_args.cc.
|
static |
Definition at line 2634 of file creator_args.cc.
|
static |
Definition at line 2590 of file creator_args.cc.
|
static |
Definition at line 2519 of file creator_args.cc.
|
static |
Definition at line 970 of file creator_args.cc.
|
static |
Definition at line 967 of file creator_args.cc.
|
static |
Definition at line 2551 of file creator_args.cc.
|
static |
Definition at line 2663 of file creator_args.cc.
|
static |
Definition at line 2025 of file creator_args.cc.
|
static |
Definition at line 1045 of file creator_args.cc.
|
static |
Definition at line 1965 of file creator_args.cc.
|
static |
Definition at line 1945 of file creator_args.cc.
|
static |
Definition at line 2372 of file creator_args.cc.
|
static |
Definition at line 2310 of file creator_args.cc.
|
static |
Definition at line 2398 of file creator_args.cc.
|
static |
Definition at line 1911 of file creator_args.cc.
|
static |
Definition at line 2215 of file creator_args.cc.
|
static |
Definition at line 2005 of file creator_args.cc.
|
static |
Definition at line 1985 of file creator_args.cc.
|
static |
Definition at line 2248 of file creator_args.cc.
|
static |
Definition at line 1866 of file creator_args.cc.
|
static |
Definition at line 1875 of file creator_args.cc.
|
static |
Definition at line 1831 of file creator_args.cc.
|
static |
Definition at line 1884 of file creator_args.cc.