Home
last modified time | relevance | path

Searched full:placeholder (Results 1 – 25 of 469) sorted by relevance

12345678910>>...19

/freebsd/contrib/kyua/utils/format/
H A Dformatter.cpp47 /// Finds the next placeholder in a string.
51 /// \param expansion The string containing the placeholder to look for. Any
55 /// placeholder.
57 /// \return The position in the string in which the placeholder is located and
58 /// the placeholder itself. If there are no placeholders left, this returns
80 const std::string placeholder = expansion.substr(begin, end - begin + 1); in find_next_placeholder() local
82 placeholder.find('%', 1) != std::string::npos) in find_next_placeholder()
83 throw format::bad_format_error(format, "Unterminated placeholder '" + in find_next_placeholder()
84 placeholder + "'"); in find_next_placeholder()
85 return std::make_pair(begin, placeholder); in find_next_placeholder()
[all …]
H A Dformatter.ipp40 /// Replaces the first format placeholder in a formatter.
42 /// Constructs a new formatter object that has one less formatting placeholder,
47 /// \param arg The argument to use as replacement for the format placeholder.
49 /// \return A new formatter that has one less format placeholder.
H A Dformatter.hpp37 /// placeholder in a formatting string is:
63 /// one less formatting placeholder.
86 /// formatting placeholder.
92 /// The position of the first placeholder in the current expansion.
95 /// The first placeholder in the current expansion.
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DBuiltinTypes.def26 // PLACEHOLDER_TYPE(Id, SingletonId) - A placeholder type. Placeholder
266 // The type of an unresolved overload set. A placeholder type.
277 // Overload should be the first placeholder type, or else change
282 // A placeholder type. Expressions with this type have one of the
293 // VS.NET's __property declarations. A placeholder type. The
309 // __builtin_any_type. A placeholder type. Useful for clients
322 // A placeholder type for incomplete matrix index expressions.
325 // A placeholder type for OpenMP array sections.
328 // A placeholder type for OpenMP array shaping operation.
331 // A placeholder type for OpenMP iterators.
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dqmi_wlfw_v01.h230 char placeholder; member
237 char placeholder; member
299 char placeholder; member
452 char placeholder; member
611 char placeholder; member
618 char placeholder; member
639 char placeholder; member
/freebsd/sys/contrib/dev/athk/ath11k/
H A Dqmi.h289 char placeholder; member
293 char placeholder; member
297 char placeholder; member
301 char placeholder; member
399 char placeholder; member
403 char placeholder; member
/freebsd/sys/sys/
H A Dreboot.h45 #define RB_INITNAME 0x010 /* Unused placeholder to specify init path */
50 #define RB_MINIROOT 0x200 /* Unused placeholder */
57 #define RB_SELFTEST 0x20000 /* unused placeholder */
H A Dmount.h143 long f_spare2; /* placeholder */
731 #define VQ_FLAG0100 0x0100 /* placeholder */
732 #define VQ_FLAG0200 0x0200 /* placeholder */
733 #define VQ_FLAG0400 0x0400 /* placeholder */
734 #define VQ_FLAG0800 0x0800 /* placeholder */
735 #define VQ_FLAG1000 0x1000 /* placeholder */
736 #define VQ_FLAG2000 0x2000 /* placeholder */
737 #define VQ_FLAG4000 0x4000 /* placeholder */
738 #define VQ_FLAG8000 0x8000 /* placeholder */
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DConstantEmitter.h153 /// resolve a placeholder. The signal value must be unique in the
157 /// Uses of the placeholder must be properly anchored before finalizing
160 /// the placeholder with the proper address of the signal.
162 llvm::GlobalValue *placeholder);
/freebsd/sys/contrib/device-tree/src/arm/hisilicon/
H A Dhisi-x5hd2-dkb.dts57 /* Placeholder, overwritten by bootloader */
71 /* Placeholder, overwritten by bootloader */
/freebsd/share/examples/ppp/
H A Dppp.secret.sample17 # used as a placeholder if you do not wish to override the IP
22 # can be used as a placeholder if you do not wish to override the
/freebsd/contrib/expat/doc/
H A Dok.min.css2placeholder,textarea::placeholder{color:var(--ok-tc-2)}input::-webkit-input-placeholder,textarea::…
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h265 /// An opaque class to hold the abstract position of a placeholder.
272 /// Add a placeholder value to the structure. The returned position
279 /// of the data. By emitting a placeholder first, the structure can
288 /// Add a placeholder, giving the expected type that will be filled in.
291 /// Fill a previously-added placeholder.
298 /// Fill a previously-added placeholder.
303 assert(slot == nullptr && "placeholder already filled"); in fillPlaceholder()
/freebsd/sys/contrib/device-tree/src/arm64/nvidia/
H A Dtegra210-p2371-2180.dts144 /* Placeholder for external Codec */
170 /* Placeholder for external Codec */
196 /* Placeholder for external Codec */
222 /* Placeholder for external Codec */
248 /* Placeholder for external Codec */
569 /* Placeholder for external Codec */
594 /* Placeholder for external Codec */
619 /* Placeholder for external Codec */
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DCNFFormula.h27 /// A null boolean variable is used as a placeholder in various data structures
37 /// A null literal is used as a placeholder in various data structures and
44 /// A null clause identifier is used as a placeholder in various data structures
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTBitCodes.h84 /// placeholder for "no type". The module file index for predefined
937 /// The placeholder type for overloaded function sets.
940 /// The placeholder type for dependent types.
967 /// The 'unknown any' placeholder type.
970 /// The placeholder type for bound member functions.
982 /// ARC's unbridged-cast placeholder type.
985 /// The pseudo-object placeholder type.
988 /// The placeholder type for builtin functions.
1006 /// The placeholder type for an array section.
1090 /// The placeholder type for OpenMP array shaping operation.
[all …]
/freebsd/share/man/man4/
H A Dng_bluetooth.432 .Nd placeholder for global Bluetooth variables
39 module is a placeholder for global Bluetooth variables.
/freebsd/contrib/llvm-project/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp169 /// of a $VERSION placeholder in the key path.
170 /// $VERSION in the key path is a placeholder for the version number,
185 const char *placeHolder = strstr(keyPath, "$VERSION"); in getSystemRegistryString()
187 // If we have a $VERSION placeholder, do the highest-version search. in getSystemRegistryString()
188 if (placeHolder) { in getSystemRegistryString()
189 const char *keyEnd = placeHolder - 1; in getSystemRegistryString()
190 const char *nextKey = placeHolder; in getSystemRegistryString()
/freebsd/sys/contrib/dev/athk/ath12k/
H A Dqmi.h348 char placeholder; member
352 char placeholder; member
467 char placeholder; member
/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslrules.y260 …: {$$ = TrCreateNullTargetOp ();} /* Placeholder is a ZeroOp object …
261 …| ',' {$$ = TrCreateNullTargetOp ();} /* Placeholder is a ZeroOp object …
297 …: {$$ = TrCreateLeafOp (PARSEOP_ONES);} /* Placeholder is a On…
298 …| ',' {$$ = TrCreateLeafOp (PARSEOP_ONES);} /* Placeholder is a On…
865 …: {$$ = TrCreateLeafOp (PARSEOP_ZERO);} /* Placeholder is a Ze…
866 …| ',' {$$ = TrCreateLeafOp (PARSEOP_ZERO);} /* Placeholder is a Ze…
872 … OP_IS_NULL_RETURN);} /* Placeholder is a ZeroOp object */
/freebsd/usr.sbin/ypserv/
H A Dyp_access.c69 "badproc1", /* placeholder */
70 "badproc2", /* placeholder */
71 "badproc3", /* placeholder */
/freebsd/contrib/sendmail/libsm/
H A Dsyslogio.c62 ** This is a "stub" function (placeholder) that always returns an error.
116 ** This is a "stub" function (placeholder) that always returns an error.
/freebsd/sys/dev/isci/scil/
H A Dscu_remote_node_context.h207 * @todo STP Targets are not yet supported so this definition is a placeholder
213 * Placeholder data for the STP remote node.
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeSystem.h523 // Type systems can have types that are placeholder types, which are meant to
527 // system, can use placeholder types to indicate "type argument goes here",
528 // without promising uniqueness of the placeholder, nor attaching any
529 // actually idenfiable information to said placeholder. This API allows type
/freebsd/sys/cddl/contrib/opensolaris/uts/mips/dtrace/
H A Dfasttrap_isa.c29 * XXX: Placeholder for MIPS fasttrap code

12345678910>>...19