/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Format.h | 9 // 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 D | MsgPackDocumentYAML.cpp | 53 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 D | Format.h | 10 // 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 D | Statistic.cpp | 191 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 D | AArch64ExternalSymbolizer.cpp | 103 CommentStream << format("0x%llx", (0xfffffffffffff000LL & Address) + in tryAddingSymbolicOperand()
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
H A D | transform_builder.h | 189 desc.format = b->enum_class<transform::VertexFormat>( in GenerateVertexAttributeDescriptor()
|
/third_party/skia/tools/calmbench/ |
H A D | calmbench.py | 34 """.format(__file__)
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | ValidationTest.cpp | 234 descriptor.format = attachmentFormat;
|
/third_party/skia/third_party/externals/expat/expat/ |
H A D | coverage.sh | 112 git archive --format=tar "${version}" | ( cd "${target_dir}" && tar x )
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | NioByteString.java | 1 // 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 D | interpol-test.c | 104 .format = PA_SAMPLE_S16LE, in context_state_callback()
|
H A D | format-test.c | 28 #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 D | test_relative_imports.py | 142 create.append('{0}.pkg{1}.__init__'.format(
|
/third_party/python/Lib/turtledemo/ |
H A D | sorting_animate.py | 39 return "Block size: {0}".format(self.size)
|
/third_party/python/Lib/test/ |
H A D | test_urllibnet.py | 148 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 D | test_c_parser.py | 119 TEST_TEMPLATE.format(extension_path=self.tmp_path, test_source=test_source),
|
/third_party/python/Lib/unittest/ |
H A D | result.py | 180 msgLines = list(tb_e.format())
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
H A D | attributes.h | 79 // 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 D | Paint.cpp | 86 wrappedText->format(textAlign, textDirection); in layout()
|
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_list.c | 38 __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 D | lib.rs | 133 //! 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 D | vktSynchronizationOperation.hpp | 208 vk::VkFormat format,
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/ |
H A D | vktSampleVerifier.hpp | 115 vk::VkFormat format; member
|
/third_party/vk-gl-cts/framework/qphelper/ |
H A D | qpTestLog.h | 91 /* 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 D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |