| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | DebugUtils.h | 33 /// Render a SymbolNameSet. 36 /// Render a SymbolNameVector. 40 /// Render an array of SymbolStringPtrs. 44 /// Render JITSymbolFlags. 47 /// Render a SymbolFlagsMap entry. 51 /// Render a SymbolMap entry. 55 /// Render a SymbolFlagsMap. 59 /// Render a SymbolMap. 62 /// Render a SymbolDependenceMap entry. 66 /// Render a SymbolDependendeMap. [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageView.h | 201 /// Render a header for the view. 204 /// Render a footer for the view. 207 /// Render the source name for the view. 210 /// Render the line prefix at the given \p ViewDepth. 213 /// Render the line suffix at the given \p ViewDepth. 216 /// Render a view divider at the given \p ViewDepth. 219 /// Render a source line with highlighting. 224 /// Render the line's execution count column. 228 /// Render the line number column. 231 /// Render all the region's execution counts on a line. [all …]
|
| H A D | CoverageReport.h | 30 void render(const FileCoverageSummary &File, raw_ostream &OS) const; 31 void render(const FunctionCoverageSummary &Function, const DemangleCache &DC, 57 /// Render file reports for every unique file in the coverage mapping. 61 /// Render file reports for the files specified in \p Files. 64 /// Render file reports for the files specified in \p Files and the functions 69 /// Render file reports with given data.
|
| H A D | CoverageExporterJson.h | 26 /// Render the CoverageMapping object. 29 /// Render the CoverageMapping object for specified source files.
|
| H A D | CoverageExporterLcov.h | 26 /// Render the CoverageMapping object. 29 /// Render the CoverageMapping object for specified source files.
|
| H A D | CoverageReport.cpp | 50 void render(raw_ostream &OS) const { in render() function 77 Value.render(OS); in operator <<() 218 void CoverageReport::render(const FileCoverageSummary &File, in render() function in llvm::CoverageReport 330 void CoverageReport::render(const FunctionCoverageSummary &Function, in render() function in llvm::CoverageReport 435 render(Function, DC, OS); in renderFunctionReports() 440 render(Totals, DC, OS); in renderFunctionReports() 570 render(FCS, OS); in renderFileReports() 580 render(*FCS, OS); in renderFileReports() 585 render(Totals, OS); in renderFileReports()
|
| H A D | CoverageExporter.h | 42 /// Render the CoverageMapping object. 45 /// Render the CoverageMapping object for specified source files.
|
| /freebsd/tools/lua/ |
| H A D | template.lua | 250 local render 254 render = function(self, context) function 260 layout:render() 271 render = function(self, context) function 275 template.render(layout, context) 285 render = function(self, context) function 286 return template.render(view, context or self) 295 render = function(...) function 296 local ok, err = pcall(render, ...) 319 render = render, [all …]
|
| /freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
| H A D | xml.h | 37 #define ISC_XML_RENDERCONFIG 0x00000001 /* render config data */ 38 #define ISC_XML_RENDERSTATS 0x00000002 /* render stats */ 39 #define ISC_XML_RENDERALL 0x000000ff /* render everything */
|
| /freebsd/contrib/mandoc/ |
| H A D | mchars_alloc.3 | 103 output modules use this function to render 124 output modules use this function to render 156 output modules use this function to render 189 output module use this function to render
|
| /freebsd/sys/contrib/openzfs/include/ |
| H A D | libnvpair.h | 62 * then pass the cookie to nvlist_prt to render the nvlist. Finally, 80 * and char * for "string". The function that is appointed to render the 130 * rendering function is called to render a single 135 * const char * Member name to render 137 * valtype Value of the member to render
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Option/ |
| H A D | ArgList.h | 314 /// Given an option Pos and its negative form Neg, render the option if Pos is 318 /// Render the option if Neg is present. 324 /// Render only the last argument match \p Id0, if present. 328 A->render(*this, Output); in addLastArg() 335 /// AddAllArgsExcept - Render all arguments matching any of the given ids 340 /// Render all arguments matching any of the given ids. 344 /// AddAllArgs - Render all arguments matching the given ids. 347 /// AddAllArgValues - Render the argument values of all arguments 353 /// AddAllArgsTranslated - Render all the arguments matching the 357 /// \param Joined - If true, render the argument as joined with
|
| H A D | Arg.h | 139 LLVM_ABI void render(const ArgList &Args, ArgStringList &Output) const; 141 /// Append the argument, render as an input, onto the given 144 /// The distinction is that some options only render their values
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Mustache.h | 44 // T.render(Data, OS); 53 // T.render(Data, OS); 63 // T.render(D, OS); 107 LLVM_ABI void render(const llvm::json::Value &Data, llvm::raw_ostream &OS);
|
| /freebsd/sys/contrib/openzfs/lib/libnvpair/ |
| H A D | libnvpair.c | 116 #define RENDER(pctl, type, nvl, name, val) \ macro 604 RENDER(pctl, boolean, nvl, name, 1); in nvlist_print_with_indent() 610 RENDER(pctl, boolean_value, nvl, name, val); in nvlist_print_with_indent() 616 RENDER(pctl, byte, nvl, name, val); in nvlist_print_with_indent() 622 RENDER(pctl, int8, nvl, name, val); in nvlist_print_with_indent() 628 RENDER(pctl, uint8, nvl, name, val); in nvlist_print_with_indent() 634 RENDER(pctl, int16, nvl, name, val); in nvlist_print_with_indent() 640 RENDER(pctl, uint16, nvl, name, val); in nvlist_print_with_indent() 646 RENDER(pctl, int32, nvl, name, val); in nvlist_print_with_indent() 652 RENDER(pctl, uint32, nvl, name, val); in nvlist_print_with_indent() [all …]
|
| /freebsd/lib/libc/stdio/ |
| H A D | xprintf.c | 235 printf_render *render; member 547 } else if (printf_tbl[pi->spec].render != NULL) { in __v2printf() 549 n = printf_tbl[pi->spec].render( in __v2printf() 556 errx(1, "render[%c] = NULL", *fmt); in __v2printf() 624 register_printf_function(int spec, printf_function *render, printf_arginfo_function *arginfo) in register_printf_function() argument 629 printf_tbl[spec].gnurender = render; in register_printf_function() 636 register_printf_render(int spec, printf_render *render, printf_arginfo_function *arginfo) in register_printf_render() argument 641 printf_tbl[spec].render = render; in register_printf_render()
|
| /freebsd/contrib/libder/derdump/ |
| H A D | derdump.1 | 48 does not currently make any attempt to render a type that uses the long encoded 50 Instead, it will render as
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Twine.h | 113 /// A char value, to render as a character. 116 /// An unsigned int value, to render as an unsigned decimal integer. 119 /// An int value, to render as a signed decimal integer. 122 /// A pointer to an unsigned long value, to render as an unsigned decimal 126 /// A pointer to a long value, to render as a signed decimal integer. 129 /// A pointer to an unsigned long long value, to render as an unsigned 133 /// A pointer to a long long value, to render as a signed decimal integer. 136 /// A pointer to a uint64_t value, to render as an unsigned hexadecimal
|
| /freebsd/usr.sbin/bsdconfig/dot/ |
| H A D | USAGE | 39 Render dot(1) output in SVG format (displays in most modern browsers): 77 Render dot(1) output as PostScript print output consisting of multiple 90 Render dot(1) output as PostScript scaled to fit on a poster consisting
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Mustache.cpp | 160 void render(const llvm::json::Value &Data, llvm::raw_ostream &OS); 285 // would be considered as having no text ahead and would be render as 569 void ASTNode::render(const json::Value &CurrentCtx, raw_ostream &OS) { in render() function in llvm::mustache::ASTNode 681 Child->render(Contexts, OS); in renderChild() 687 Partial->render(Contexts, IS); in renderPartial() 701 LambdaNode->render(Contexts, ES); in renderLambdas() 704 LambdaNode->render(Contexts, OS); in renderLambdas() 717 LambdaNode->render(Contexts, OS); in renderSectionLambdas() 720 void Template::render(const json::Value &Data, llvm::raw_ostream &OS) { in render() function in llvm::mustache::Template 721 Tree->render(Data, OS); in render()
|
| /freebsd/contrib/llvm-project/llvm/lib/Option/ |
| H A D | Arg.cpp | 75 render(Args, ASL); in getAsString() 82 render(Args, Output); in renderAsInput() 89 void Arg::render(const ArgList &Args, ArgStringList &Output) const { in render() function in Arg
|
| /freebsd/share/man/man3/ |
| H A D | qmath.3 | 183 .Xr Q_MAXSTRLEN 3 number of characters to render string 184 .Xr Q_TOSTR 3 render string 187 .Xr Q_DEBUG 3 render debugging information 333 initialise it with the fixed-point value for 5/3, and render a debugging
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | GIMatchTableExecutor.h | 481 /// Render complex operands to the specified instruction 485 /// Render sub-operands of complex operands to the specified instruction 488 /// - RenderOpID(ULEB128) - The suboperand to render. 490 /// Render subregisters of suboperands of complex operands to the 494 /// - RenderOpID(ULEB128) - The suboperand to render 498 /// Render operands to the specified instruction using a custom function 510 /// Render operands to the specified instruction using a custom function, 514 /// - OpIdx(ULEB128) - Operand index in OldInsnID the render function should 520 /// Render a G_CONSTANT operator as a sign-extended immediate. 526 /// Render a G_FCONSTANT operator as a sign-extended immediate.
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ |
| H A D | XRayArgs.cpp | 185 XRayInstrument->render(Args, CmdArgs); in addArgs() 212 A->render(Args, CmdArgs); in addArgs() 222 A->render(Args, CmdArgs); in addArgs() 232 A->render(Args, CmdArgs); in addArgs()
|
| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | FormBrowser2.h | 80 … This field specifies the identifier of the form within the form set to render as the first 82 render the first enabled form in the form set.
|