/aosp_15_r20/external/vixl/src/aarch64/ |
H A D | registers-aarch64.h | 98 CPURegister(int code, int size_in_bits, RegisterType type) in CPURegister() 502 : code_(code), in code_() argument 559 VRegister(int code, VectorFormat format) in VRegister() 602 ZRegister(int code, VectorFormat format) in ZRegister() 619 ZRegister WithLaneSize(T format) const { in WithLaneSize() 662 PRegister(int code, EncodedSize encoded_lane_size) in PRegister() 669 PRegister(int code, Qualifiers qualifiers) in PRegister() 687 PRegisterWithLaneSize(int code, VectorFormat format) in PRegisterWithLaneSize() 754 inline PRegisterWithLaneSize PRegister::WithLaneSize(T format) const { in WithLaneSize()
|
H A D | simulator-aarch64.cc | 647 const char* Simulator::WRegNameForCode(unsigned code, Reg31Mode mode) { in WRegNameForCode() 658 const char* Simulator::XRegNameForCode(unsigned code, Reg31Mode mode) { in XRegNameForCode() 669 const char* Simulator::BRegNameForCode(unsigned code) { in BRegNameForCode() 675 const char* Simulator::HRegNameForCode(unsigned code) { in HRegNameForCode() 681 const char* Simulator::SRegNameForCode(unsigned code) { in SRegNameForCode() 687 const char* Simulator::DRegNameForCode(unsigned code) { in DRegNameForCode() 693 const char* Simulator::VRegNameForCode(unsigned code) { in VRegNameForCode() 699 const char* Simulator::ZRegNameForCode(unsigned code) { in ZRegNameForCode() 705 const char* Simulator::PRegNameForCode(unsigned code) { in PRegNameForCode() 1033 uint32_t format = 0; in GetPrintRegisterFormatForSize() local [all …]
|
/aosp_15_r20/external/json-schema-validator/src/main/java/com/networknt/schema/ |
H A D | ValidationMessage.java | 48 private final String code; field in ValidationMessage 63 …ValidationMessage(String type, String code, JsonNodePath evaluationPath, SchemaLocation schemaLoca… in ValidationMessage() 226 protected String code; field in ValidationMessage.BuilderSupport 233 protected MessageFormat format; field in ValidationMessage.BuilderSupport 246 public S code(String code) { in code() method in ValidationMessage.BuilderSupport 305 public S format(MessageFormat format) { in format() argument
|
/aosp_15_r20/external/libexif/libexif/ |
H A D | exif-log.c | 39 ExifLogCode code; member 53 exif_log_code_get_title (ExifLogCode code) in exif_log_code_get_title() 62 exif_log_code_get_message (ExifLogCode code) in exif_log_code_get_message() 135 exif_log (ExifLog *log, ExifLogCode code, const char *domain, in exif_log() 136 const char *format, ...) in exif_log() 146 exif_logv (ExifLog *log, ExifLogCode code, const char *domain, in exif_logv() 147 const char *format, va_list args) in exif_logv()
|
/aosp_15_r20/external/javapoet/src/main/java/com/squareup/javapoet/ |
H A D | MethodSpec.java | 55 public final CodeBlock code; field in MethodSpec 59 CodeBlock code = builder.code.build(); in MethodSpec() local 300 private final CodeBlock.Builder code = CodeBlock.builder(); field in MethodSpec.Builder 322 public Builder addJavadoc(String format, Object... args) { in addJavadoc() 438 public Builder addCode(String format, Object... args) { in addCode() 443 public Builder addNamedCode(String format, Map<String, ?> args) { in addNamedCode() argument 453 public Builder addComment(String format, Object... args) { in addComment() 458 public Builder defaultValue(String format, Object... args) { in defaultValue() 524 public Builder addStatement(String format, Object... args) { in addStatement()
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/core/api/ |
H A D | error_reporter.cc | 20 int ErrorReporter::Report(const char* format, ...) { in Report() 23 int code = Report(format, args); in Report() local 30 int ErrorReporter::ReportError(void*, const char* format, ...) { in ReportError() 33 int code = Report(format, args); in ReportError() local
|
/aosp_15_r20/frameworks/base/core/jni/ |
H A D | android_app_NativeActivity.cpp | 186 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_finish() local 191 ANativeActivity* activity, int32_t format) { in android_NativeActivity_setWindowFormat() 192 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_setWindowFormat() local 198 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_setWindowFlags() local 204 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_showSoftInput() local 210 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_hideSoftInput() local 220 NativeCode* code = (NativeCode*)data; in mainWorkCallback() local 281 std::unique_ptr<NativeCode> code; in loadNativeCode_native() local 406 NativeCode* code = (NativeCode*)handle; in unloadNativeCode_native() local 418 NativeCode* code = (NativeCode*)handle; in onStart_native() local [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/ |
D | BaseHTTPServer.py | 344 def send_error(self, code, message=None): argument 389 def send_response(self, code, message=None): argument 425 def log_request(self, code='-', size='-'): argument 435 def log_error(self, format, *args): argument 449 def log_message(self, format, *args): argument
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/powerpc/tm/ |
H A D | tm-unavailable.c | 37 #define err_at_line(status, errnum, format, ...) \ argument 40 #define pr_warn(code, format, ...) err_at_line(0, code, format, ##__VA_ARGS__) argument 41 #define pr_err(code, format, ...) err_at_line(1, code, format, ##__VA_ARGS__) argument
|
/aosp_15_r20/external/zxing/core/src/main/java/com/google/zxing/qrcode/ |
H A D | QRCodeWriter.java | 41 public BitMatrix encode(String contents, BarcodeFormat format, int width, int height) in encode() 49 BarcodeFormat format, in encode() 78 QRCode code = Encoder.encode(contents, errorCorrectionLevel, hints); in encode() local 84 private static BitMatrix renderResult(QRCode code, int width, int height, int quietZone) { in renderResult()
|
/aosp_15_r20/external/rust/android-crates-io/crates/tungstenite/src/protocol/frame/ |
D | frame.rs | 23 pub code: CloseCode, field 94 pub fn format(&self, length: u64, output: &mut impl Write) -> Result<()> { in format() method 95 let code: u8 = self.opcode.into(); in format() localVariable 302 let code = u16::from_be_bytes([data[0], data[1]]).into(); in into_close() localVariable 363 pub fn format(mut self, output: &mut impl Write) -> Result<()> { in format() method 473 fn format() { in format() function
|
/aosp_15_r20/external/libbrillo/brillo/errors/ |
H A D | error.cc | 18 const std::string& code, in LogError() 35 const std::string& code, in Create() 42 const std::string& code, in Create() 53 const std::string& code, in AddTo() 67 const std::string& code, in AddToPrintf() 68 const char* format, in AddToPrintf() 100 const std::string& code, in Error() 122 const std::string& code) { in FindError()
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/http/ |
H A D | server.py | 440 def send_error(self, code, message=None, explain=None): argument 493 def send_response(self, code, message=None): argument 506 def send_response_only(self, code, message=None): argument 545 def log_request(self, code='-', size='-'): argument 556 def log_error(self, format, *args): argument 575 def log_message(self, format, *args): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/http/ |
D | server.py | 440 def send_error(self, code, message=None, explain=None): argument 493 def send_response(self, code, message=None): argument 506 def send_response_only(self, code, message=None): argument 545 def log_request(self, code='-', size='-'): argument 556 def log_error(self, format, *args): argument 575 def log_message(self, format, *args): argument
|
/aosp_15_r20/external/python/cpython3/Lib/http/ |
D | server.py | 440 def send_error(self, code, message=None, explain=None): argument 493 def send_response(self, code, message=None): argument 506 def send_response_only(self, code, message=None): argument 545 def log_request(self, code='-', size='-'): argument 556 def log_error(self, format, *args): argument 575 def log_message(self, format, *args): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/http/ |
D | server.py | 440 def send_error(self, code, message=None, explain=None): argument 493 def send_response(self, code, message=None): argument 506 def send_response_only(self, code, message=None): argument 545 def log_request(self, code='-', size='-'): argument 556 def log_error(self, format, *args): argument 575 def log_message(self, format, *args): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/http/ |
D | server.py | 440 def send_error(self, code, message=None, explain=None): argument 493 def send_response(self, code, message=None): argument 506 def send_response_only(self, code, message=None): argument 545 def log_request(self, code='-', size='-'): argument 556 def log_error(self, format, *args): argument 575 def log_message(self, format, *args): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/http/ |
D | server.py | 440 def send_error(self, code, message=None, explain=None): argument 493 def send_response(self, code, message=None): argument 506 def send_response_only(self, code, message=None): argument 545 def log_request(self, code='-', size='-'): argument 556 def log_error(self, format, *args): argument 575 def log_message(self, format, *args): argument
|
/aosp_15_r20/external/ktfmt/core/src/main/java/com/facebook/ktfmt/cli/ |
H A D | Main.kt | 139 private fun format(file: File?, args: ParsedArgs): Boolean { in format() method 143 val code = BufferedReader(InputStreamReader(bytes, UTF_8)).readText() in format() constant
|
/aosp_15_r20/external/pigweed/pw_tokenizer/public/pw_tokenizer/internal/ |
H A D | decode.h | 57 constexpr ArgStatus(Code code = kOk) : status_(code) {} in status_() argument 67 constexpr bool HasError(Code code) const { return (status_ & code) != 0u; } in HasError() 113 DecodedArg(const char* format, size_t raw_size_bytes, ArgStatus status) in DecodedArg() 248 DecodedArg DecodedArg::FromValue(const char* format, in FromValue()
|
/aosp_15_r20/external/zstd/lib/common/ |
H A D | error_private.h | 58 ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); } in ERR_isError() 60 ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!ERR_isError(code)) return (ERR_enum)0; ret… in ERR_getErrorCode() 78 ERR_STATIC const char* ERR_getErrorName(size_t code) in ERR_getErrorName() 93 void _force_has_format_string(const char *format, ...) { in _force_has_format_string()
|
/aosp_15_r20/external/vulkan-validation-layers/tests/ |
H A D | layer_validation_tests.cpp | 42 bool ImageFormatIsSupported(VkPhysicalDevice phy, VkFormat format, VkImageTiling tiling, VkFormatFe… in ImageFormatIsSupported() 50 bool ImageFormatAndFeaturesSupported(VkPhysicalDevice phy, VkFormat format, VkImageTiling tiling, V… in ImageFormatAndFeaturesSupported() 297 …for (VkFormat format = first_vk_format; format <= last_vk_format; format = static_cast<VkFormat>(f… in FindFormatLinearWithoutMips() local 319 …for (VkFormat format = first_vk_format; format <= last_vk_format; format = static_cast<VkFormat>(f… in FindFormatWithoutSamples() local 349 …for (VkFormat format = first_vk_format; format <= last_vk_format; format = static_cast<VkFormat>(f… in FindUnsupportedImage() local 382 …for (VkFormat format = first_vk_format; format <= last_vk_format; format = static_cast<VkFormat>(f… in FindFormatWithoutFeatures() local 442 void CreateSamplerTest(VkLayerTest &test, const VkSamplerCreateInfo *pCreateInfo, std::string code)… in CreateSamplerTest() 461 void CreateBufferTest(VkLayerTest &test, const VkBufferCreateInfo *pCreateInfo, std::string code) { in CreateBufferTest() 480 void CreateImageTest(VkLayerTest &test, const VkImageCreateInfo *pCreateInfo, std::string code) { in CreateImageTest() 519 …reateImageViewTest(VkLayerTest &test, const VkImageViewCreateInfo *pCreateInfo, std::string code) { in CreateImageViewTest() [all …]
|
/aosp_15_r20/external/oboe/src/opensles/ |
H A D | OpenSLESUtilities.cpp | 25 const char *getSLErrStr(SLresult code) { in getSLErrStr() 67 SLDataFormat_PCM format, SLuint32 representation) { in OpenSLES_createExtendedFormat() 80 SLuint32 OpenSLES_ConvertFormatToRepresentation(AudioFormat format) { in OpenSLES_ConvertFormatToRepresentation()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/pygments/ |
D | __init__.py | 35 def lex(code, lexer): argument 50 def format(tokens, formatter, outfile=None): # pylint: disable=redefined-builtin function 74 def highlight(code, lexer, formatter, outfile=None): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/pygments/ |
D | __init__.py | 35 def lex(code, lexer): argument 50 def format(tokens, formatter, outfile=None): # pylint: disable=redefined-builtin function 74 def highlight(code, lexer, formatter, outfile=None): argument
|