Lines Matching full:default
58 # Calculate default column width for print_var functions based on environment variable settings. T…
128 # If user specified no stack_frame_ix, we'll set it to a proper default value.
706 Return the default number of hex digits to be used to represent a hex number in print.
872 def list_pop(a_list, index=0, default=None): argument
874 …e list entry indicated by the index and return the entry. If no such entry exists, return default.
881 …default The value to be returned if there is no entry at the given index l…
886 return default
986 first_element = list_pop(fmt, index=0, default=0)
1006 …Print the var name/value passed to it. If the caller lets col1_width default, the printing lines …
1071 …idth The width of the output column containing the variable name. The default
1074 …ing_char The character to be used at the end of the returned string. The default
1102 # Set default value for value_format.
1493 # If user wants default stack_frame_ix.
1691 ) or BuiltIn().get_variable_value("${OPENBMC_PASSWORD}", default="")
1825 def get_var_value(var_value=None, default=1, var_name=None): argument
1827 Return either var_value, the corresponding global value or default.
1837 If there is no global value associated with the variable, default is returned.
1839 This function is useful for other functions in setting default values for parameters.
1854 default).
1860 default The value that is returned if var_value is None and there is no
1876 "${" + var_name + "}", default
1879 var_value = getattr(__builtin__, var_name, default)
1884 def get_stack_var(var_name, default="", init_stack_ix=2): argument
1888 variable still cannot be found, return default.
1893 my_loc_var1 = get_stack_var('my_var1', "default value")
1904 default The value to return if the the variable cannot be found.
1911 default = get_var_value(var_name=var_name, default=default)
1918 default,