Home
last modified time | relevance | path

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

12345678910>>...30

/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/bmake/unit-tests/
H A Dmoderrs.exp1 make: Unknown modifier ":Z"
5 make: Unknown modifier ":Z"
10 make: Unclosed expression, expecting "}" for modifier "S,V,v,"
14 make: Unclosed expression after indirect modifier, expecting "}"
18 make: Unfinished modifier after "v", expecting ","
23 make: Unfinished modifier after "var}", expecting "@"
27 make: Unfinished modifier after "...}", expecting "@"
32 make: Unclosed expression, expecting "}" for modifier "@var@${var}}...@"
37 make: Unfinished modifier after "}", expecting "]"
41 make: Unfinished modifier after "#}", expecting "]"
[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 after "v", expecting ","
48 # expect: make: Unfinished modifier after "var}", expecting "@"
51 # expect: make: Unfinished modifier after "...}", expecting "@"
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: Unknown modifier ":OX"
70 # expect+3: Unknown modifier ":OX"
71 # expect+2: Unknown modifier ":OX"
[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 Dvarparse-errors.exp1 make: varparse-errors.mk:38: Unknown modifier ":Z"
3 make: varparse-errors.mk:47: Unknown modifier ":Z"
5 make: varparse-errors.mk:73: Unknown modifier ":OX"
7 make: varparse-errors.mk:73: Unknown modifier ":OX"
10 make: varparse-errors.mk:73: Unknown modifier ":OX"
12 make: varparse-errors.mk:73: Unknown modifier ":OX"
15 make: varparse-errors.mk:81: Unclosed expression, expecting "}" for modifier "Q"
17 make: varparse-errors.mk:83: Unclosed expression, expecting "}" for modifier "sh"
19 make: varparse-errors.mk:85: Unclosed expression, expecting "}" for modifier "tA"
21 make: varparse-errors.mk:87: Unclosed expression, expecting "}" for modifier "tsX"
[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 ":${"
59 # An indirect modifier can be followed by other modifiers, no matter if the
60 # indirect modifier evaluates to an empty string or not.
[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 modifier falls back trying the `:from=to`
25 # System V modifier. Remarks:
28 # the modifier name, so they never fall back to the `:from=to` modifier.
30 # All no-colon modifiers get a "no", as the modifier name would be
31 # trimmed off before the `:from=to` modifier could see them, for
34 # | **Modifier** | **Behavior** | **Remarks** | **SysV** |
83 # Another way to get a single '$' sign is to use the :U modifier. In the
[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.
72 # The :ts modifier can follow other modifiers.
77 # The :ts modifier with an actual separator can be followed by other
83 # After the modifier ':ts/', the expression value is a single word since all
85 # 'two', which makes the modifier ':S' a no-op.
90 # After the :ts modifier, the whole string is interpreted as a single
[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 modifier ":range"
74 # modifier.
[all …]
H A Dvarmod-order.mk3 # Tests for the :O variable modifier and its variants, which either sort the
13 # expect+1: Unknown modifier ":OX"
16 # expect+1: Unknown 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: Unknown modifier ":Oxn"
38 # expect+1: Unknown modifier ":On_typo"
47 # expect+1: Unknown modifier ":Onr_typo"
56 # expect+1: Unknown modifier ":Orn_typo"
[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-order.exp1 make: varmod-order.mk:14: Unknown modifier ":OX"
3 make: varmod-order.mk:17: Unknown modifier ":OxXX"
5 make: varmod-order.mk:20: Unclosed expression, expecting "}" for modifier "O"
7 make: varmod-order.mk:22: Unclosed expression, expecting "}" for modifier "On"
9 make: varmod-order.mk:24: Unclosed expression, expecting "}" for modifier "Onr"
11 make: varmod-order.mk:30: Unknown modifier ":Oxn"
13 make: varmod-order.mk:39: Unknown modifier ":On_typo"
15 make: varmod-order.mk:48: Unknown modifier ":Onr_typo"
17 make: varmod-order.mk:57: Unknown modifier ":Orn_typo"
19 make: varmod-order.mk:68: Unknown modifier ":Onn"
[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:293: Unfinished character list in pattern "a[" of modifier ":M"
3 make: varmod-match.mk:301: Unfinished character list in pattern "a[^" of modifier ":M"
5 make: varmod-match.mk:309: Unfinished character list in pattern "[-x1-3" of modifier ":M"
7 make: varmod-match.mk:317: Unfinished character list in pattern "*[-x1-3" of modifier ":M"
9 make: varmod-match.mk:326: Unfinished character list in pattern "[^-x1-3" of modifier ":M"
11 make: varmod-match.mk:340: Unfinished character list in pattern "?[\" of modifier ":M"
13 make: varmod-match.mk:348: Unfinished character range in pattern "[x-" of modifier ":M"
15 make: varmod-match.mk:360: Unfinished character range in pattern "[^x-" of modifier ":M"
17 make: varmod-match.mk:367: Unfinished character list in pattern "[" of modifier ":M"
19 make: varmod-match.mk:367: 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: Invalid attempt to assign "value" to variable "" via modifier "::="
83 # expect: make: Invalid attempt to assign "overwritten" to variable "" via modifier "::="
89 # expect: make: Invalid attempt to assign "appended" to variable "" via modifier "::+="
93 # The :L modifier sets the value of the expression to its variable
[all …]
H A Dvar-op-expand.mk29 # end of evaluating the expression ${:Ufallback}, the modifier ':U' has turned
71 # expression with an indirect modifier referring to an undefined variable
83 # expression with an indirect modifier referring to another variable that
87 # the variable modifier is not preserved. To preserve it, ParseModifierPart
142 # consumes the '$' from modifier parts.
209 # Same as the test case above, except for the additional modifier ':tl' when
231 # assignment, the variable modifier ':S,value,replaced,' is converted to
232 # lowercase, which turns 'S' into 's', thus producing an unknown modifier.
233 # In this case, make issues a warning, but in cases where the modifier
234 # includes a '=', the modifier would be interpreted as a SysV-style
[all …]
H A Dvarmod-indirect.exp1 make: varmod-indirect.mk:19: Unknown modifier ":${"
3 make: varmod-indirect.mk:52: Unknown modifier ":${"
11 make: varmod-indirect.mk:161: Unknown modifier ":Z"
20 Indirect modifier "S,a,a," from "${:US,a,a,}"
21 Evaluating modifier ${UNDEF:S...} on value "" (eval-keep-dollar-and-undefined, undefined)
22 Modifier part: "a"
23 Modifier part: "a"
29 Indirect modifier "" from "${:U}"
33 Indirect modifier "Z" from "${:UZ}"
34 Evaluating modifier ${UNDEF:Z} on value "" (eval-keep-dollar-and-undefined, undefined)
[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 …]
/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>>...30