Home
last modified time | relevance | path

Searched full:modifier (Results 1 – 25 of 708) sorted by relevance

12345678910>>...29

/freebsd/contrib/bmake/unit-tests/
H A Dmoderrs.exp1 make: Unknown modifier "Z"
4 make: Unknown modifier "Z"
7 make: Unclosed expression, expecting '}' for modifier "S,V,v,"
10 make: Unclosed expression after indirect modifier, expecting '}'
13 make: Unfinished modifier (',' missing)
16 make: Unfinished modifier ('@' missing)
19 make: Unfinished modifier ('@' missing)
23 make: Unclosed expression, expecting '}' for modifier "@var@${var}}...@"
27 make: Unfinished modifier (']' missing)
30 make: Unfinished modifier (']' missing)
[all …]
H A Dmoderrs.mk3 # various modifier error tests
28 # expect: make: Unknown modifier "Z"
32 # expect: make: Unknown modifier "Z"
36 # expect: make: Unclosed expression, expecting '}' for modifier "S,V,v,"
40 # expect: make: Unclosed expression after indirect modifier, expecting '}'
44 # expect: make: Unfinished modifier (',' missing)
48 # expect: make: Unfinished modifier ('@' missing)
51 # expect: make: Unfinished modifier ('@' missing)
60 # This is also contrary to the SysV modifier, where only the actually
63 # expect: make: Unclosed expression, expecting '}' for modifier "@var@${var}}...@"
[all …]
H A Dvarparse-errors.mk22 ERR_BAD_MOD= An ${:Uindirect:Z} expression with an unknown modifier.
37 # expect+1: Unknown modifier "Z"
38 VAR.${:U:Z}= unknown modifier in the variable name
39 .if ${VAR.} != "unknown modifier in the variable name"
46 # expect+1: Unknown modifier "Z"
47 VAR.${:U:Z}post= unknown modifier with text in the variable name
48 .if ${VAR.post} != "unknown modifier with text in the variable name"
69 # expect+4: Bad modifier ":OX"
70 # expect+3: Bad modifier ":OX"
71 # expect+2: Bad modifier ":OX"
[all …]
H A Dvarparse-errors.exp1 make: "varparse-errors.mk" line 38: Unknown modifier "Z"
3 make: "varparse-errors.mk" line 47: Unknown modifier "Z"
5 make: "varparse-errors.mk" line 73: Bad modifier ":OX"
7 make: "varparse-errors.mk" line 73: Bad modifier ":OX"
10 make: "varparse-errors.mk" line 73: Bad modifier ":OX"
12 make: "varparse-errors.mk" line 73: Bad modifier ":OX"
15 make: "varparse-errors.mk" line 81: Unclosed expression, expecting '}' for modifier "Q"
17 make: "varparse-errors.mk" line 83: Unclosed expression, expecting '}' for modifier "sh"
19 make: "varparse-errors.mk" line 85: Unclosed expression, expecting '}' for modifier "tA"
21 make: "varparse-errors.mk" line 87: Unclosed expression, expecting '}' for modifier "tsX"
[all …]
H A Dvarmod-sysv.mk3 # Tests for the variable modifier ':from=to', which replaces the suffix
6 # This modifier is applied when the other modifiers don't match exactly.
10 # A typical use case for the modifier ':from=to' is conversion of filename
16 # The modifier applies to each word on its own.
26 # The modifier ':from=to' is therefore often combined with the modifier ':M'.
31 # Another use case for the modifier ':from=to' is to append a suffix to each
33 # matches. The same effect can be achieved with the modifier ':S,$,teen,'.
38 # The modifier ':from=to' can also be used to surround each word by strings.
40 # shell, but that's the job of the modifier ':Q'.
45 # When the modifier ':from=to' is parsed, it lasts until the closing brace
[all …]
H A Dvarmod-to-separator.mk3 # Tests for the :ts variable modifier, which joins the words of the variable
18 # After the :ts modifier, other modifiers can follow.
24 # The first colon is the separator, the second ends the modifier.
36 # Applying the :tu modifier first and then the :ts modifier does not change
67 # The :ts modifier can be followed by other modifiers.
69 . warning Separator followed by :S modifier does not work.
72 # The :ts modifier can follow other modifiers.
74 . warning :S modifier followed by :ts modifier does not work.
77 # The :ts modifier with an actual separator can be followed by other
80 . warning The :ts modifier followed by an :S modifier does not work.
[all …]
H A Dvarmod-indirect.mk10 # indirect modifiers for all but the very first modifier as well.
13 # To apply a modifier indirectly via another variable, the whole
14 # modifier must be put into a single expression.
16 # modifier contains more than a sole expression.
18 # expect+1: Unknown modifier "${"
38 # It is even allowed to write another modifier directly afterwards.
45 # If an expression for an indirect modifier evaluates to anything else than an
50 # expect+2: Unknown modifier "${"
62 # An indirect modifier can be followed by other modifiers, no matter if the
63 # indirect modifier evaluates to an empty string or not.
[all …]
H A Dvarmod-order.mk3 # Tests for the :O variable modifier and its variants, which either sort the
13 # expect+1: Bad modifier ":OX"
16 # expect+1: Bad modifier ":OxXX"
19 # expect+1: Unclosed expression, expecting '}' for modifier "O"
21 # expect+1: Unclosed expression, expecting '}' for modifier "On"
23 # expect+1: Unclosed expression, expecting '}' for modifier "Onr"
29 # expect+1: Bad modifier ":Oxn"
38 # expect+1: Bad modifier ":On_typo"
47 # expect+1: Bad modifier ":Onr_typo"
56 # expect+1: Bad modifier ":Orn_typo"
[all …]
H A Dvarmod-range.mk3 # Tests for the :range variable modifier, which generates sequences
9 # The :range modifier generates a sequence of integers, one number per
21 # The :range modifier takes the number of words from the value of the
34 # The :range modifier can be given a parameter, which makes the generated
39 # XXX: As of 2023-12-17, the ':range=n' modifier does not turn the undefined
57 # The :range modifier requires a number as parameter.
60 # stopped there. It then tried to parse the next modifier at that point,
61 # which failed with the message "Unknown modifier".
65 # expect+1: Invalid number "x}Rest" != "Rest"" for ':range' modifier
74 # modifier.
[all …]
H A Dvarmod-order.exp1 make: "varmod-order.mk" line 14: Bad modifier ":OX"
3 make: "varmod-order.mk" line 17: Bad modifier ":OxXX"
5 make: "varmod-order.mk" line 20: Unclosed expression, expecting '}' for modifier "O"
7 make: "varmod-order.mk" line 22: Unclosed expression, expecting '}' for modifier "On"
9 make: "varmod-order.mk" line 24: Unclosed expression, expecting '}' for modifier "Onr"
11 make: "varmod-order.mk" line 30: Bad modifier ":Oxn"
13 make: "varmod-order.mk" line 39: Bad modifier ":On_typo"
15 make: "varmod-order.mk" line 48: Bad modifier ":Onr_typo"
17 make: "varmod-order.mk" line 57: Bad modifier ":Orn_typo"
19 make: "varmod-order.mk" line 68: Bad modifier ":Onn"
[all …]
H A Dvarmod.mk11 # * either uses `ParseModifierPart` or parses the modifier literal
17 # * `no-colon`: after parsing this modifier, the following modifier
21 # * `individual`: parsing this modifier does not follow the common
24 # The SysV column says whether a parse error in the modifier falls back
25 # trying the `:from=to` System V modifier.
73 # Another way to get a single '$' sign is to use the :U modifier. In the
74 # argument of that modifier, a '$' is escaped using the backslash instead.
81 # It is also possible to use the :U modifier directly in the expression.
111 # The variable modifier :P does not fall back to the SysV modifier.
112 # Therefore the modifier :P=RE generates a parse error.
[all …]
H A Dvardebug.exp15 Evaluating modifier ${VAR:M...} on value "1 2 3"
20 Evaluating modifier ${VAR:N...} on value "1 2 3"
25 Evaluating modifier ${VAR:S...} on value "1 2 3"
26 Modifier part: "2"
27 Modifier part: "two"
31 Evaluating modifier ${VAR:Q} on value "1 2 3"
34 Evaluating modifier ${VAR:t...} on value "1 2 3"
36 Evaluating modifier ${VAR:t...} on value "1 2 3"
38 Evaluating modifier ${VAR:Q} on value "1 2 3"
41 Evaluating modifier ${:U...} on value "" (eval, undefined)
[all …]
H A Dvarmod-assign.exp7 Evaluating modifier ${VAR.${param}::...} on value "initial-value"
8 Modifier part: "assigned-value"
16 Evaluating modifier ${CMD_CMD_VAR::...} on value "cmd-value"
17 Modifier part: "new-value"
22 Evaluating modifier ${CMD_GLOBAL_VAR::...} on value "global-value"
23 Modifier part: "new-value"
27 Evaluating modifier ${CMD_ENV_VAR::...} on value "env-value"
28 Modifier part: "new-value"
32 Evaluating modifier ${CMD_NEW_VAR::...} on value "" (eval, undefined)
33 Modifier part: "new-value"
[all …]
H A Dvarmod-mtime.mk3 # Tests for the ':mtime' variable modifier, which maps each word of the
12 # didn't exist, the ':mtime' modifier would return the current time.
18 # For a file that doesn't exist, the ':mtime' modifier returns the current
29 # The ':mtime' modifier accepts a timestamp in seconds as an optional
45 # expect+1: Invalid argument '123x' for modifier ':mtime'
63 # If the optional argument of the ':mtime' modifier is the word 'error', the
64 # modifier fails with an error message, once for each affected file.
75 # Only the word 'error' is a special argument to the ':mtime' modifier, all
77 # expect+1: Invalid argument 'errorhandler-no' for modifier ':mtime'
84 # Only the word 'error' can be used as a fallback argument to the modifier.
[all …]
H A Dvarmod-match.exp1 make: "varmod-match.mk" line 289: Unfinished character list in pattern 'a[' of modifier ':M'
3 make: "varmod-match.mk" line 297: Unfinished character list in pattern 'a[^' of modifier ':M'
5 make: "varmod-match.mk" line 305: Unfinished character list in pattern '[-x1-3' of modifier ':M'
7 make: "varmod-match.mk" line 313: Unfinished character list in pattern '*[-x1-3' of modifier ':M'
9 make: "varmod-match.mk" line 322: Unfinished character list in pattern '[^-x1-3' of modifier ':M'
11 make: "varmod-match.mk" line 336: Unfinished character list in pattern '?[\' of modifier ':M'
13 make: "varmod-match.mk" line 344: Unfinished character range in pattern '[x-' of modifier ':M'
15 make: "varmod-match.mk" line 356: Unfinished character range in pattern '[^x-' of modifier ':M'
17 make: "varmod-match.mk" line 363: Unfinished character list in pattern '[' of modifier ':M'
19 make: "varmod-match.mk" line 363: Unknown modifier "]"
H A Dvarmod-assign.mk13 # the '::?=' modifier applies the assignment operator '?=' 3 times. The
21 # the modifier '::=' applies the assignment operator '=' 3 times. The
29 # the modifier '::+=' applies the assignment operator '+=' 3 times. The
37 # the modifier '::!=' applies the assignment operator '!=' 3 times. Just as
38 # with the modifier '::=', the last value is stored in the RAN variable.
43 # When a '::=' modifier is evaluated as part of an .if condition, it happens
77 # expect: make: Bad modifier ":"
83 # expect: make: Bad modifier ":"
87 # The :L modifier sets the value of the expression to its variable
94 # The modifier for assignment operators starts with a ':'.
[all …]
H A Dvarmod-subst-regex.mk3 # Tests for the :C,from,to, variable modifier.
20 # Using the '1' modifier does not change anything. The '1' modifier just
26 # The 'W' modifier treats the whole variable value as a single big word,
33 # The 'g' modifier does not have any effect here since each of the words
39 # The first :C modifier has the 'W' modifier, which makes the whole
40 # expression a single word. The 'g' modifier then replaces all occurrences
41 # of "1 2" with "___". The 'W' modifier only applies to this single :C
42 # modifier. This is demonstrated by the :C modifier that follows. If the
43 # 'W' modifier would be preserved, only a single underscore would have been
60 # The modifier '1' applies the replacement at most once, across the whole
[all …]
H A Dvarmod-indirect.exp1 make: "varmod-indirect.mk" line 19: Unknown modifier "${"
3 make: "varmod-indirect.mk" line 52: Unknown modifier "${"
12 make: "varmod-indirect.mk" line 164: Unknown modifier "Z"
22 Indirect modifier "S,a,a," from "${:US,a,a,}"
23 Evaluating modifier ${UNDEF:S...} on value "" (eval-keep-dollar-and-undefined, undefined)
24 Modifier part: "a"
25 Modifier part: "a"
31 Indirect modifier "" from "${:U}"
35 Indirect modifier "Z" from "${:UZ}"
36 Evaluating modifier ${UNDEF:Z} on value "" (eval-keep-dollar-and-undefined, undefined)
[all …]
H A Dvarmod-unique.mk3 # Tests for the :u variable modifier, which discards adjacent duplicate
7 . warning The modifier ':u' only merges _adjacent_ duplicate words.
11 . warning The modifier ':u' must merge adjacent duplicate words.
15 . warning The modifier ':u' must do nothing with an empty word list.
19 . warning The modifier ':u' must normalize the whitespace.
23 . warning The modifier ':u' must do nothing with a single-element word list.
27 . warning The modifier ':u' must normalize the whitespace.
31 . warning The modifier ':u' must merge _all_ adjacent duplicate words.
35 . warning The modifier ':u' must normalize whitespace between the words.
/freebsd/contrib/libxo/doc/
H A Dfield-modifiers.rst33 a comma. For example, the modifier string "Lwc" (or "L,white,colon")
36 modifier string "Vkq" (or ":key,quote") means the field has a value
41 .. _argument-modifier:
43 The Argument Modifier ({a:})
48 The argument modifier indicates that the content of the field
61 The argument modifier allows field names for value fields to be passed
63 snprintf. For many field roles, the argument modifier is not needed,
68 .. _colon-modifier:
70 The Colon Modifier ({c:})
75 The colon modifier appends a single colon to the data value::
[all …]
/freebsd/contrib/libxo/libxo/
H A Dxo_format.554 \(aq{\(aq [ role | modifier ]* [\(aq,\(aq long\-names ]* \(aq:\(aq [ content ]
285 Note that the sense of the \(aqw\(aq modifier is reversed for units;
383 For example, the modifier string "Lwc" means the field has a label
386 The modifier string "Vkq" means the
392 For example, the modifier string "Lwc" (or "L,white,colon")
395 The modifier string "Vkq" (or ":key,quote") means the field has a value
398 .Ss "The Argument Modifier ({a:})"
399 The argument modifier indicates that the content of the field
413 The argument modifier allows field names for value fields to be passed
416 For many field roles, the argument modifier is not needed,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXInstPrinter.cpp96 const char *Modifier) { in printCvtMode() argument
100 if (strcmp(Modifier, "ftz") == 0) { in printCvtMode()
104 } else if (strcmp(Modifier, "sat") == 0) { in printCvtMode()
108 } else if (strcmp(Modifier, "relu") == 0) { in printCvtMode()
112 } else if (strcmp(Modifier, "base") == 0) { in printCvtMode()
148 llvm_unreachable("Invalid conversion modifier"); in printCvtMode()
153 const char *Modifier) { in printCmpMode() argument
157 if (strcmp(Modifier, "ftz") == 0) { in printCmpMode()
161 } else if (strcmp(Modifier, "base") == 0) { in printCmpMode()
221 llvm_unreachable("Empty Modifier"); in printCmpMode()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYConstantPoolValue.cpp29 CSKYCP::CSKYCPModifier Modifier, in CSKYConstantPoolValue() argument
33 Modifier(Modifier), AddCurrentAddress(AddCurrentAddress), LabelId(ID) {} in CSKYConstantPoolValue()
36 switch (Modifier) { in getModifierText()
54 llvm_unreachable("Unknown modifier!"); in getModifierText()
65 ID.AddInteger(Modifier); in addSelectionDAGCSEId()
69 if (Modifier) in print()
81 CSKYCP::CSKYCPModifier Modifier, bool AddCurrentAddress, unsigned ID) in CSKYConstantPoolConstant() argument
82 : CSKYConstantPoolValue(Ty, Kind, PCAdjust, Modifier, AddCurrentAddress, in CSKYConstantPoolConstant()
88 CSKYCP::CSKYCPModifier Modifier, bool AddCurrentAddress, unsigned ID) { in Create() argument
89 return new CSKYConstantPoolConstant(C, C->getType(), Kind, PCAdjust, Modifier, in Create()
[all …]
/freebsd/lib/libc/gen/
H A Dfmtcheck.c91 enum e_modifier modifier; in get_next_format_from_precision() local
101 modifier = MOD_CHAR; in get_next_format_from_precision()
103 modifier = MOD_SHORT; in get_next_format_from_precision()
108 modifier = MOD_INTMAXT; in get_next_format_from_precision()
115 modifier = MOD_QUAD; in get_next_format_from_precision()
117 modifier = MOD_LONG; in get_next_format_from_precision()
122 modifier = MOD_QUAD; in get_next_format_from_precision()
126 modifier = MOD_PTRDIFFT; in get_next_format_from_precision()
130 modifier = MOD_SIZET; in get_next_format_from_precision()
134 modifier = MOD_LONGDOUBLE; in get_next_format_from_precision()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp36 ARMCP::ARMCPModifier modifier, in ARMConstantPoolValue() argument
39 PCAdjust(PCAdj), Modifier(modifier), in ARMConstantPoolValue()
45 ARMCP::ARMCPModifier modifier, in ARMConstantPoolValue() argument
48 LabelId(id), Kind(kind), PCAdjust(PCAdj), Modifier(modifier), in ARMConstantPoolValue()
54 switch (Modifier) { in getModifierText()
72 llvm_unreachable("Unknown modifier!"); in getModifierText()
90 ACPV->Modifier == Modifier && in hasSameValue()
108 if (Modifier) O << "(" << getModifierText() << ")"; in print()
125 ARMCP::ARMCPModifier Modifier, in ARMConstantPoolConstant() argument
127 : ARMConstantPoolValue(Ty, ID, Kind, PCAdj, Modifier, AddCurrentAddress), in ARMConstantPoolConstant()
[all …]

12345678910>>...29