Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ObjCConstants.h
39642 views
//===-- ObjCConstants.h------------------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_OBJCCONSTANTS_H9#define LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_OBJCCONSTANTS_H1011// Objective-C Type Encoding12#define _C_ID '@'13#define _C_CLASS '#'14#define _C_SEL ':'15#define _C_CHR 'c'16#define _C_UCHR 'C'17#define _C_SHT 's'18#define _C_USHT 'S'19#define _C_INT 'i'20#define _C_UINT 'I'21#define _C_LNG 'l'22#define _C_ULNG 'L'23#define _C_LNG_LNG 'q'24#define _C_ULNG_LNG 'Q'25#define _C_FLT 'f'26#define _C_DBL 'd'27#define _C_BFLD 'b'28#define _C_BOOL 'B'29#define _C_VOID 'v'30#define _C_UNDEF '?'31#define _C_PTR '^'32#define _C_CHARPTR '*'33#define _C_ATOM '%'34#define _C_ARY_B '['35#define _C_ARY_E ']'36#define _C_UNION_B '('37#define _C_UNION_E ')'38#define _C_STRUCT_B '{'39#define _C_STRUCT_E '}'40#define _C_VECTOR '!'41#define _C_CONST 'r'4243#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_OBJCCONSTANTS_H444546