Searched refs:variables (Results 26 - 50 of 153) sorted by relevance

1234567

/freebsd-13-stable/contrib/bmake/unit-tests/
H A Drecursive.mk8 # whether there are unclosed variables. It might be enough to parse the
28 # The purpose of the -dL flag is to detect unclosed variables. This
32 # variables are not discovered. But these are hard to produce anyway,
H A Dcond-undef-lint.mk3 # Tests for defined and undefined variables in .if conditions, in lint mode.
6 # accurate error messages in case of undefined variables, instead of the
59 # and a few others. Just because these nested variables are not defined,
64 # variables. In particular, there is no modifier that would turn undefined
65 # nested variables into empty strings, as an equivalent to the :U modifier.
H A Ddirective-undef.mk38 # words, just like everywhere else. This prevents variables whose names
40 # undefined, but these characters do not appear in variables names anyway.
56 # for such variables anyway.
H A Ddirective-export.mk31 # No argument means to export all variables.
H A Dforloop.exp16 make: "forloop.mk" line 46: Wrong number of words (9) in .for substitution list with 2 variables
H A Dforsubst.mk6 # with the new handling of .for variables in ${:U<value>...) caused
H A Ddirective-for.mk5 # TODO: Describe naming conventions for the loop variables.
24 # The .for loop also works for multiple iteration variables.
47 # In the body of the .for loop, the iteration variables can be accessed
48 # like normal variables, even though they are not really variables.
54 # iteration variables and the normal global variables live in separate
83 # Until 2008-12-21, the values of the iteration variables were simply
H A Dposix1.mk52 # Local variables: regular forms, D/F forms and suffix substitution.
66 "Local variables\n\
72 # X is one of the local variables.
74 "Directory and filename parts of local variables\n\
81 # Do all kinds of meaningless substitutions on local variables to see
H A Dvar-op-expand.mk17 # variable expressions based on undefined variables are preserved though.
90 # In variable assignments using the ':=' operator, undefined variables are
122 # variables. These referred-to variables are expanded at the time of
123 # assignment. The undefined variables are kept as-is and are later expanded
154 # there were actually 2 assignments to different variables:
162 # It might be a good idea to forbid undefined variables on the left-hand side
H A Dcmdline-undefined.mk17 # expands its right-hand side. But only those variables that are
H A Dcond-func-defined.mk45 . info In .for loops, variable expressions for the loop variables are
H A Dexport-variants.mk3 # Test whether exported variables apply to each variant of running
H A Dvarmisc.mk111 # Appending to parameterized variables works as well.
155 # Demonstrate that the target-specific variables are not evaluated in
185 # Since 2020-07-28, make complains about unclosed variables.
186 # Before that, it had complained about unclosed variables only when
H A Dvarmod-to-abs.mk15 # keeping the cache, just like the GNode for global variables.
H A Dvarmod-ifelse.mk33 # In a variable assignment, undefined variables are not an error.
39 # In a condition, undefined variables generate a "Malformed conditional"
103 # This hack does not work for variables from .for loops since these are
H A Dvar-op-default.mk29 # variables. This is not entirely true. Instead, each occurrence of an
53 # variable didn't exist (and variables with '$' in their name are particularly
/freebsd-13-stable/share/mk/
H A Dbsd.port.mk23 # and setting MK_* variables when building ports.
H A Dbsd.linker.mk3 # Setup variables for the linker.
21 # These variables with an X_ prefix will also be provided if XLD is set.
31 # Only the toplevel makefile needs to compute the X_LINKER_* variables.
49 .info "Cannot import ${X_}LINKER variables since cached ${var} is different: ${${var}__${${X_}_ld_hash}} != ${${var}}"
H A Dbsd.compiler.mk3 # Setup variables for the compiler
35 # These variables with an X_ prefix will also be provided if XCC is set.
48 # variables that are expected by the other .mk files and return
73 # Expand and export some variables so they may be based on make vars.
140 # Only the toplevel makefile needs to compute the X_COMPILER_* variables.
161 .info "Cannot import ${X_}COMPILER variables since cached ${var} is different: ${${var}__${${X_}_cc_hash}} != ${${var}}"
/freebsd-13-stable/contrib/googletest/googlemock/scripts/
H A Dgmock-config.in3 # These variables are automatically filled in by the configure script.
195 # overridden by environment variables or command line parameters.
202 # it's not, we provide variables pointing to the source and build tree rather
259 # Add the necessary Google Test bits into the various flag variables
/freebsd-13-stable/contrib/googletest/googletest/scripts/
H A Dgtest-config.in3 # These variables are automatically filled in by the configure script.
195 # overridden by environment variables or command line parameters.
202 # it's not, we provide variables pointing to the source and build tree rather
/freebsd-13-stable/sys/conf/
H A Dkern.opts.mk6 # Define MK_* variables (which are either "yes" or "no") for users
10 # The NO_* variables should only be set by makefiles for variables
/freebsd-13-stable/usr.bin/mail/
H A Dcmd3.c371 for (vp = variables[h]; vp != NULL; vp = vp->v_link)
375 for (vp = variables[h]; vp != NULL; vp = vp->v_link)
427 if (vp2 == variables[h]) {
428 variables[h] = variables[h]->v_link;
434 for (vp = variables[h]; vp->v_link != vp2; vp = vp->v_link)
/freebsd-13-stable/contrib/bmake/mk/
H A Dsys.clean-env.mk18 # The variables used by this makefile include:
21 # The actuall list of variables from the environment that will be
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp839 uint32_t max_matches, VariableList &variables) {
849 variables);
850 if (variables.GetSize() > max_matches)
859 uint32_t max_matches, VariableList &variables) {
864 const uint32_t old_size = variables.GetSize();
866 variables);
867 const uint32_t oso_matches = variables.GetSize() - old_size;
890 VariableList &variables) {
894 const uint32_t old_size = variables.GetSize();
895 oso_dwarf->FindGlobalVariables(regex, max_matches, variables);
835 PrivateFindGlobalVariables( ConstString name, const CompilerDeclContext &parent_decl_ctx, const std::vector<uint32_t> &indexes, uint32_t max_matches, VariableList &variables) argument
857 FindGlobalVariables( ConstString name, const CompilerDeclContext &parent_decl_ctx, uint32_t max_matches, VariableList &variables) argument
888 FindGlobalVariables( const RegularExpression &regex, uint32_t max_matches, VariableList &variables) argument
[all...]

Completed in 237 milliseconds

1234567