/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
H A D | BooleanExpression.py | 23 def evaluate(string, variables, triple=""): argument 25 parser = BooleanExpression(string, set(variables), triple) 32 def __init__(self, string, variables, triple=""): argument 34 self.variables = variables 35 self.variables.add('true') 100 self.value = (self.token in self.variables or 138 variables = {'its-true', 'false-lol-true', 'under_score', 140 self.assertTrue(BooleanExpression.evaluate('true', variables)) 141 self.assertTrue(BooleanExpression.evaluate('its-true', variables)) 142 self.assertTrue(BooleanExpression.evaluate('false-lol-true', variables)) [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/doc/ |
H A D | rt-envsubst.texi | 9 @cindex environment variables 10 The @code{envsubst} program substitutes the values of environment variables. 16 @itemx --variables 18 @opindex --variables@r{, @code{envsubst} option} 19 Output the variables occurring in @var{shell-format}. 41 with references to environment variables of the form @code{$VARIABLE} or 43 @var{shell-format} is given, only those environment variables that are 45 variables references occurring in standard input are substituted. 53 When @code{--variables} is used, standard input is ignored, and the output 54 consists of the environment variables that are referenced in
|
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/options/ |
H A D | warn-undefined-variables | 3 $description = "Test the --warn-undefined-variables option."; 5 $details = "Verify that warnings are printed for referencing undefined variables."; 7 # Without --warn-undefined-variables, nothing should happen 19 # With --warn-undefined-variables, it should warn me 20 run_make_test(undef, '--warn-undefined-variables',
|
/netbsd-src/external/apache2/llvm/dist/clang/docs/ |
H A D | BlockLanguageSpec.rst | 152 functions and global variables as one would expect, as well as static 153 local variables. [testme] 155 Local automatic (stack) variables referenced within the compound 172 The lifetime of variables declared in a Block is that of a function; 173 each activation frame contains a new copy of variables declared within 179 (nest) and all variables captured by any nested blocks are implicitly 183 Block variables at global or local static scope. 226 qualifier, :block-term:`__block`, for local variables. [testme: a 234 a Block_copy of a referencing Block. Such variables may be mutated as 235 normal variables are. [all …]
|
H A D | Block-ABI-Apple.rst | 57 // imported variables 101 ``Block`` variables of global or ``static`` local variables. 126 b. The ``flags`` field is set to zero unless there are variables imported 170 variables, and variables marked ``__block``. In Objective-C, variables may 189 variables. 196 structure. Global variables are simply referenced and not considered as 199 Imported ``const`` copy variables 202 Automatic storage variables not marked with ``__block`` are imported as 320 Importing ``__attribute__((NSObject))`` variables 352 Imported ``__block`` marked variables [all …]
|
/netbsd-src/usr.bin/make/unit-tests/ |
H A D | posix1.exp | 11 Local variables 16 Directory and filename parts of local variables 51 Local variables 56 Directory and filename parts of local variables 97 Local variables 102 Directory and filename parts of local variables 144 Local variables 149 Directory and filename parts of local variables
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/ |
H A D | convert-constraint-log-to-z3.py | 52 variables = set() 55 variables.add(m.group()) 56 if len(variables) == 0: 58 for v in variables:
|
/netbsd-src/external/bsd/file/dist/magic/magdir/ |
H A D | arm | 12 # display name+variables+flags for common object formatted files 21 # display name+variables+flags for common object formatted files 30 # display name+variables+flags for common object formatted files 39 # display name+variables+flags for common object formatted files 48 # display name+variables+flags for common object formatted files
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
H A D | LangImpl07.rst | 26 for an imperative language with mutable variables. 36 To understand why mutable variables cause complexities in SSA 78 In this example, the loads from the G and H global variables are 90 assignments to mutable variables?". The issue here is that LLVM 111 to talk about how LLVM represents stack variables. 115 operator. Notice how the type of the @G/@H global variables is actually 118 *name* actually refers to the address for that space. Stack variables 137 to functions, you can store it in other variables, etc. In our example 167 variables without the need to create Phi nodes at all: 209 pass is the answer to dealing with mutable variables, and we highly [all …]
|
/netbsd-src/external/bsd/bc/dist/ |
H A D | storage.c | 137 old_var = variables; in more_variables() 142 variables = bc_malloc (v_count*sizeof(bc_var *)); in more_variables() 148 variables[indx] = old_var[indx]; in more_variables() 154 variables[indx] = NULL; in more_variables() 353 var_ptr = variables[var_name]; in get_var() 356 var_ptr = variables[var_name] = bc_malloc (sizeof (bc_var)); in get_var() 657 var_ptr = variables[var_name]; in load_var() 870 v_temp->v_next = variables[ix]; in auto_var() 872 variables[ix] = v_temp; in auto_var() 924 v_temp = variables[ix]; in pop_vars() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | StackSafetyAnalysis.rst | 9 The Stack Safety Analysis determines if stack allocated variables can be 13 unnecessary instrumentation of 'safe' variables. SafeStack is going to be the 16 'safe' variables can be defined as variables that can not be used out-of-scope 46 We expect that users can tolerate false classification of variables as 51 AddressSanitizer may help with this validation. We can instrument all variables
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
H A D | sel-gram.y | 64 %type <expr> variable variables 108 variable: '%' '{' variables '}' { $$ = $3; } 111 variables: IDENTIFIER '.' variables {
|
/netbsd-src/external/gpl2/gmake/dist/tests/ |
H A D | ChangeLog | 49 * scripts/variables/negative: Test some variable reference failure 51 * scripts/options/warn-undefined-variables: Test the 52 --warn-undefined-variables flag. 74 * scripts/variables/automatic: Add a test for bug #8154. 107 * scripts/variables/INCLUDE_DIRS: Add a test for the .INCLUDE_DIRS 142 * scripts/variables/SHELL: Use a /./ prefix instead of //: the 167 variables are leaking out beyond the tests they are intended for. 173 * tests/scripts/variables/SHELL: Ditto. 207 * scripts/variables/MAKE_RESTARTS: New file: test the 235 * scripts/variables/DEFAULT_GOAL: Rename DEFAULT_TARGET to [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/po/ |
H A D | en@quot.po | 154 msgid "Substitutes the values of environment variables.\n" 155 msgstr "Substitutes the values of environment variables.\n" 164 msgid " -v, --variables output the variables occurring in SHELL-FORMAT\n" 165 msgstr " -v, --variables output the variables occurring in SHELL-FORMAT\n" 186 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 188 "only those environment variables that are referenced in SHELL-FORMAT are\n" 189 "substituted; otherwise all environment variables references occurring in\n" 193 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 195 "only those environment variables that are referenced in SHELL-FORMAT are\n" 196 "substituted; otherwise all environment variables references occurring in\n" [all …]
|
H A D | en@boldquot.po | 157 msgid "Substitutes the values of environment variables.\n" 158 msgstr "Substitutes the values of environment variables.\n" 167 msgid " -v, --variables output the variables occurring in SHELL-FORMAT\n" 168 msgstr " -v, --variables output the variables occurring in SHELL-FORMAT\n" 189 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 191 "only those environment variables that are referenced in SHELL-FORMAT are\n" 192 "substituted; otherwise all environment variables references occurring in\n" 196 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 198 "only those environment variables that are referenced in SHELL-FORMAT are\n" 199 "substituted; otherwise all environment variables references occurring in\n" [all …]
|
H A D | zh_TW.po | 135 msgid "Substitutes the values of environment variables.\n" 145 msgid " -v, --variables output the variables occurring in SHELL-FORMAT\n" 146 msgstr " -v, --variables 顯示 SHELL-FORMAT 中出現過的環境變數\n" 167 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 169 "only those environment variables that are referenced in SHELL-FORMAT are\n" 170 "substituted; otherwise all environment variables references occurring in\n" 180 "When --variables is used, standard input is ignored, and the output consists\n" 181 "of the environment variables that are referenced in SHELL-FORMAT, one per line.\n" 183 "如果使用 --variables 選項,將不會理會輸入資料,只會讀取 SHELL-FORMAT 中的\n"
|
H A D | sr.po | 132 msgid "Substitutes the values of environment variables.\n" 142 msgid " -v, --variables output the variables occurring in SHELL-FORMAT\n" 143 msgstr " -v, --variables исписује променљиве из ФОРМАТ-ЉУСКЕ\n" 164 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 166 "only those environment variables that are referenced in SHELL-FORMAT are\n" 167 "substituted; otherwise all environment variables references occurring in\n" 179 "When --variables is used, standard input is ignored, and the output consists\n" 180 "of the environment variables that are referenced in SHELL-FORMAT, one per line.\n" 182 "Када се користи --variables, занемарује се стандардни улаз, а излаз се састоји \n"
|
H A D | zh_HK.po | 135 msgid "Substitutes the values of environment variables.\n" 145 msgid " -v, --variables output the variables occurring in SHELL-FORMAT\n" 146 msgstr " -v, --variables 顯示 SHELL-FORMAT 中出現過的環境變數\n" 167 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 169 "only those environment variables that are referenced in SHELL-FORMAT are\n" 170 "substituted; otherwise all environment variables references occurring in\n" 180 "When --variables is used, standard input is ignored, and the output consists\n" 181 "of the environment variables that are referenced in SHELL-FORMAT, one per line.\n" 183 "如果使用 --variables 選項,將不會理會輸入資料,只會讀取 SHELL-FORMAT 中的\n"
|
H A D | zh_CN.po | 134 msgid "Substitutes the values of environment variables.\n" 144 msgid " -v, --variables output the variables occurring in SHELL-FORMAT\n" 145 msgstr " -v, --variables 输出 SHELL格式 中出现的变量\n" 166 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 168 "only those environment variables that are referenced in SHELL-FORMAT are\n" 169 "substituted; otherwise all environment variables references occurring in\n" 179 "When --variables is used, standard input is ignored, and the output consists\n" 180 "of the environment variables that are referenced in SHELL-FORMAT, one per line.\n" 182 "若使用了 --variables,则会忽略标准输入,而输出由 SHELL格式 引用的环境变量组成,\n"
|
H A D | ko.po | 132 msgid "Substitutes the values of environment variables.\n" 142 msgid " -v, --variables output the variables occurring in SHELL-FORMAT\n" 143 msgstr " -v, --variables <��-����>�� ������ ������ ����մϴ�\n" 164 "with references to environment variables of the form $VARIABLE or ${VARIABLE}\n" 166 "only those environment variables that are referenced in SHELL-FORMAT are\n" 167 "substituted; otherwise all environment variables references occurring in\n" 178 "When --variables is used, standard input is ignored, and the output consists\n" 179 "of the environment variables that are referenced in SHELL-FORMAT, one per line.\n" 181 "--variables �ɼ��� ����ϸ�, ǥ�� �Է��� �����ϰ�, <��-����>�� ������ ȯ�� ������\n"
|
/netbsd-src/external/bsd/unbound/dist/ |
H A D | README-Travis.md | 69 …he Autotools triplet, the OpenSSL triplet, the toolchain path, the tool variables, and the sysroot… 73 The first step sets environmental variables for the cross-compile using the Travis job. A typical j… 94 …variables `ANDROID_NDK_ROOT` and `ANDROID_SDK_ROOT`. This is an important step because the NDK and… 120 …`. The script is `sourced` so the variables in the script are available to the calling shell. The … 122 …cture to select by inspecting environmental variables set by Travis for the job. In particular, th… 185 …he Autotools triplet, the OpenSSL triplet, the toolchain path, the tool variables, and the sysroot… 189 The first step sets environmental variables for the cross-compile using the Travis job. A typical j… 221 …`. The script is `sourced` so the variables in the script are available to the calling shell. The … 223 …cture to select by inspecting environmental variables set by Travis for the job. In particular, th…
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
H A D | interface.texi | 27 values. (GCC typically allocates variables of such types in 64 @cindex @code{longjmp} and automatic variables 65 If you use @code{longjmp}, beware of automatic variables. ISO C says that 66 automatic variables that are not declared @code{volatile} have undefined 68 because it is very difficult to restore register variables correctly, and 69 one of GCC's features is that it can put variables in registers without
|
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
H A D | interface.texi | 27 values. (GCC typically allocates variables of such types in 64 @cindex @code{longjmp} and automatic variables 65 If you use @code{longjmp}, beware of automatic variables. ISO C says that 66 automatic variables that are not declared @code{volatile} have undefined 68 because it is very difficult to restore register variables correctly, and 69 one of GCC's features is that it can put variables in registers without
|
/netbsd-src/external/bsd/am-utils/dist/m4/macros/ |
H A D | check_libwrap_severity.m4 | 2 dnl check if libwrap (if exists), requires the caller to define the variables 10 # run program one without defining our own severity variables 18 # run program two with defining our own severity variables
|
/netbsd-src/external/gpl2/groff/dist/contrib/groffer/ |
H A D | README_SH | 11 variables, the reading of the configuration files, and the 70 The groffer.sh script uses the following external system variables. 71 It is supposed that these variables are already exported outside of 74 external system environment variables that are explicitly used 82 groffer native environment variables 85 all groff environment variables are used, see groff(1) 93 all GNU man environment variables are used, see man(1). 125 The POSIX draft does not include `local' variables for functions. So 126 this concept was replaced by global variables with a prefix that 128 name. These quasi-local variables are unset before each return of the [all …]
|