Home
last modified time | relevance | path

Searched refs:format (Results 9251 - 9275 of 13453) sorted by relevance

1...<<371372373374375376377378379380>>...539

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DFormat.h9 // This file implements the format() function, which can be used with other
14 // OS << "mynumber: " << format("%4.5f", 1234.412) << '\n';
18 // OS << format("mynumber: %4.5f\n", 1234.412);
74 /// These are templated helper classes used by the format function that
75 /// capture the object to be formatted and the format string. When actually
79 // Helper to validate that format() parameters are scalars or pointers.
84 "format can't be used with non fundamental / non pointer type");
120 /// OS << format("%0.4f", myfloat) << '\n';
124 inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) { in format() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp53 OS << format("%#llx", (unsigned long long)UInt); in toString()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormat.h10 // This file implements the format() function, which can be used with other
15 // OS << "mynumber: " << format("%4.5f", 1234.412) << '\n';
19 // OS << format("mynumber: %4.5f\n", 1234.412);
74 /// These are templated helper classes used by the format function that
75 /// capture the object to be formatted and the format string. When actually
79 // Helper to validate that format() parameters are scalars or pointers.
84 "format can't be used with non fundamental / non pointer type");
120 /// OS << format("%0.4f", myfloat) << '\n';
124 inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) { in format() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DStatistic.cpp191 OS << format("%*u %-*s - %s\n", in PrintStatistics()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp103 CommentStream << format("0x%llx", (0xfffffffffffff000LL & Address) + in tryAddingSymbolicOperand()
/third_party/skia/third_party/externals/tint/fuzzers/
H A Dtransform_builder.h189 desc.format = b->enum_class<transform::VertexFormat>( in GenerateVertexAttributeDescriptor()
/third_party/skia/tools/calmbench/
H A Dcalmbench.py34 """.format(__file__)
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DValidationTest.cpp234 descriptor.format = attachmentFormat;
/third_party/skia/third_party/externals/expat/expat/
H A Dcoverage.sh112 git archive --format=tar "${version}" | ( cd "${target_dir}" && tar x )
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DNioByteString.java1 // Protocol Buffers - Google's data interchange format
284 String.format("Invalid indices [%d, %d]", beginIndex, endIndex)); in slice()
/third_party/pulseaudio/src/tests/
H A Dinterpol-test.c104 .format = PA_SAMPLE_S16LE, in context_state_callback()
H A Dformat-test.c28 #include <pulse/format.h>
41 /* 1. Simple fixed format int check */ in START_TEST()
81 /* 6. Simple fixed format string check */ in START_TEST()
84 pa_format_info_set_prop_string(f1, "format.test_string", "thing1"); in START_TEST()
86 pa_format_info_set_prop_string(f2, "format.test_string", "notthing1"); in START_TEST()
92 pa_format_info_set_prop_string_array(f1, "format.test_string", strings, PA_ELEMENTSOF(strings)); in START_TEST()
94 pa_format_info_set_prop_string(f2, "format.test_string", "thing3"); in START_TEST()
101 pa_format_info_set_prop_string(f2, "format.test_string", "thing5"); in START_TEST()
107 pa_format_info_set_prop_int(f1, "format.test_string", 42); in START_TEST()
108 fail_unless(pa_format_info_get_prop_type(f1, "format in START_TEST()
[all...]
/third_party/python/Lib/test/test_importlib/import_/
H A Dtest_relative_imports.py142 create.append('{0}.pkg{1}.__init__'.format(
/third_party/python/Lib/turtledemo/
H A Dsorting_animate.py39 return "Block size: {0}".format(self.size)
/third_party/python/Lib/test/
H A Dtest_urllibnet.py148 urllib.request.urlopen("http://{}/".format(bogus_domain))
201 self.fail('Date value not in %r format' % dateformat)
/third_party/python/Lib/test/test_peg_generator/
H A Dtest_c_parser.py119 TEST_TEMPLATE.format(extension_path=self.tmp_path, test_source=test_source),
/third_party/python/Lib/unittest/
H A Dresult.py180 msgLines = list(tb_e.format())
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
H A Dattributes.h79 // Tells the compiler to perform `printf` format string checking if the
80 // compiler supports it; see the 'format' attribute in
86 #if ABSL_HAVE_ATTRIBUTE(format) || (defined(__GNUC__) && !defined(__clang__))
/third_party/skia/experimental/sktext/src/
H A DPaint.cpp86 wrappedText->format(textAlign, textDirection); in layout()
/third_party/selinux/libsepol/cil/src/
H A Dcil_list.c38 __attribute__((noreturn)) __attribute__((format (printf, 1, 2))) static void cil_list_error(const char* msg, ...) in cil_list_error()
/third_party/rust/crates/proc-macro-error/src/
H A Dlib.rs133 //! The rest is your message in format-like style.
170 //! Build an instance of `Diagnostic` in format-like style.
192 //! This form is pretty much the same as 2, except `format!(format_literal, format_args...)`
227 //! help = "format {} {}", "arg1", "arg2"; // <--- every attachment ends with `;`,
230 //! note = "to_string"; // <--- one arg uses `.to_string()` instead of `format!()`
405 e.msg = format!("{}: {}", message, e.msg); in expect_or_abort()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationOperation.hpp208 vk::VkFormat format,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktSampleVerifier.hpp115 vk::VkFormat format; member
/third_party/vk-gl-cts/framework/qphelper/
H A DqpTestLog.h91 /* Add new values here if needed, remember to update relevant code in qpTestLog.c and change format revision */
104 /* Add new values here if needed, remember to update relevant code in qpTestLog.c and change format revision */
225 deBool qpTestLog_writeImage (qpTestLog* log, const char* name, const char* description, qpImageCompressionMode compressionMode, qpImageFormat format, int width, int height, int stride, const void* data);
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 18 milliseconds

1...<<371372373374375376377378379380>>...539