Home
last modified time | relevance | path

Searched refs:format (Results 3451 - 3475 of 12933) sorted by relevance

1...<<131132133134135136137138139140>>...518

/third_party/node/benchmark/url/
H A Durl-format.js18 // Force-optimize url.format() so that the benchmark doesn't get
21 url.format(inputs[name]);
25 url.format(input);
/third_party/mesa3d/src/mesa/main/
H A Dtexcompress_etc.h80 mesa_format format,
84 _mesa_get_etc_fetch_func(mesa_format format);
H A Dtexgetimage.h37 _mesa_base_pack_format(GLenum format);
43 GLenum format, GLenum type, GLvoid *pixels,
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dapi_exec_decl_h.py65 print('{0} GLAPIENTRY _mesa_{1}({2});'.format(
68 print('{0} GLAPIENTRY _mesa_{1}_no_error({2});'.format(
/third_party/node/deps/icu-small/source/i18n/
H A Dcurrfmt.cpp40 UnicodeString& CurrencyFormat::format(const Formattable& obj, in format() function in CurrencyFormat
45 return getCurrencyFormatInternal().format(obj, appendTo, pos, ec); in format()
H A Dcurrfmt.h63 using MeasureFormat::format;
68 virtual UnicodeString& format(const Formattable& obj,
/third_party/node/deps/v8/src/base/
H A Dstrings.h23 VSNPrintF(Vector<char> str, const char* format, va_list args);
28 SNPrintF(Vector<char> str, const char* format, ...);
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_resource.c29 #include "util/format/u_format.h"
57 size += (util_format_get_nblocksy(res->format, height) * in util_resource_size()
58 util_format_get_stride(res->format, width) * slices * samples); in util_resource_size()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/testing/
H A DAssertUtil.java11 message = String.format("expected exception (%s) was not thrown", clazz.getSimpleName()); in assertThrows()
16 message = String.format("expected (%s), but caught: %s", clazz.getSimpleName(), t); in assertThrows()
/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/testing/testUtils/
H A DAssertUtil.java11 message = String.format("expected exception (%s) was not thrown", clazz.getSimpleName()); in assertThrows()
16 message = String.format("expected (%s), but caught: %s", clazz.getSimpleName(), t); in assertThrows()
/third_party/rust/crates/clap/examples/tutorial_builder/
H A D04_02_validate.rs26 .map_err(|_| format!("`{}` isn't a port number", s))?; in port_in_range()
30 Err(format!( in port_in_range()
/third_party/rust/crates/clap/examples/tutorial_derive/
H A D04_02_validate.rs24 .map_err(|_| format!("`{s}` isn't a port number"))?; in port_in_range()
28 Err(format!( in port_in_range()
/third_party/python/Tools/msi/
H A Dgenerate_md5.py20 print('{:40s} {:<32s} {:<9s}'.format('File', 'MD5', 'Size'))
22 print('{:40s} {:>32s} {:>9s}'.format(f, h, s))
/third_party/python/Include/
H A Dwarnings.h15 const char *format, /* ASCII-encoded string */
23 const char *format, /* ASCII-encoded string */
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
H A DvktComputeTestsUtil.hpp47 inline vk::VkDeviceSize getImageSizeBytes (const tcu::IVec3& imageSize, const vk::VkFormat format) in getImageSizeBytes() argument
49 return tcu::getPixelSize(vk::mapVkFormat(format)) * imageSize.x() * imageSize.y() * imageSize.z(); in getImageSizeBytes()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/compute/
H A DvktComputeTestsUtil.hpp47 inline vk::VkDeviceSize getImageSizeBytes (const tcu::IVec3& imageSize, const vk::VkFormat format) in getImageSizeBytes() argument
49 return tcu::getPixelSize(vk::mapVkFormat(format)) * imageSize.x() * imageSize.y() * imageSize.z(); in getImageSizeBytes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFAddressRange.cpp21 OS << format("0x%*.*" PRIx64 ", ", AddressSize * 2, AddressSize * 2, LowPC) in dump()
22 << format("0x%*.*" PRIx64, AddressSize * 2, AddressSize * 2, HighPC); in dump()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/draw_buffers_indexed/
H A DesextcDrawBuffersIndexedColorMasks.hpp57 unsigned int NumComponents(glw::GLenum format);
58 glw::GLenum ReadableType(glw::GLenum format);
/third_party/skia/src/gpu/d3d/
H A DGrD3DAttachment.h24 DXGI_FORMAT format);
40 DXGI_FORMAT format,
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A Ddebug.h35 void Trace(const char* format, ...);
37 inline void Trace(const char* format, ...) {}
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcurrfmt.cpp40 UnicodeString& CurrencyFormat::format(const Formattable& obj, in format() function in CurrencyFormat
45 return getCurrencyFormatInternal().format(obj, appendTo, pos, ec); in format()
H A Dcurrfmt.h63 using MeasureFormat::format;
68 virtual UnicodeString& format(const Formattable& obj,
/third_party/python/PC/layout/support/
H A Dcatalog.py43 cat.write(CATALOG_TEMPLATE.format(target=target))
44 cat.writelines("<HASH>{}={}\n".format(n, f) for n, f in files if can_sign(f))
H A Dprops.py21 PROPS_DATA["PYTHON_VERSION"] = "{}.{}{}{}".format(
25 PROPS_DATA["PYTHON_TARGET"] = "_GetPythonRuntimeFilesDependsOn{}{}_{}".format(
/third_party/rust/crates/clap/clap_complete/src/shells/
H A Dpowershell.rs15 format!("_{name}.ps1") in file_name()
25 let result = format!( in generate()
80 format!("{};{}", previous_command_name, &p.get_name()) in generate_inner()
92 format!( in generate_inner()
106 format!( in generate_inner()
122 format!( in generate_inner()
136 format!( in generate_inner()
152 format!( in generate_inner()
160 let mut subcommands_cases = format!( in generate_inner()

Completed in 17 milliseconds

1...<<131132133134135136137138139140>>...518