1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

LibPDF: Rename x-macro argument name

I'd like to add a string called `A`, so the argument can't be called
`A` as well.

No behavior change.
This commit is contained in:
Nico Weber 2023-10-17 07:56:07 -04:00 committed by Tim Flynn
parent f646e47d46
commit d9c9510d3c

View file

@ -8,163 +8,163 @@
#include <AK/DeprecatedFlyString.h>
#define ENUMERATE_COMMON_NAMES(A) \
A(AIS) \
A(Alternate) \
A(ASCII85Decode) \
A(ASCIIHexDecode) \
A(Author) \
A(BG) \
A(BG2) \
A(BM) \
A(BaseEncoding) \
A(BaseFont) \
A(BitsPerComponent) \
A(BlackPoint) \
A(C) \
A(CA) \
A(CCITTFaxDecode) \
A(CF) \
A(CFM) \
A(CalRGB) \
A(CIDFontType0) \
A(CIDFontType2) \
A(CIDSystemInfo) \
A(CIDToGIDMap) \
A(Colors) \
A(ColorSpace) \
A(Columns) \
A(Contents) \
A(Count) \
A(CreationDate) \
A(Creator) \
A(CropBox) \
A(Crypt) \
A(D) \
A(DW) \
A(DCTDecode) \
A(DecodeParms) \
A(Decode) \
A(DescendantFonts) \
A(Dest) \
A(Dests) \
A(DeviceCMYK) \
A(DeviceGray) \
A(DeviceRGB) \
A(Differences) \
A(E) \
A(Encoding) \
A(Encrypt) \
A(EncryptMetadata) \
A(ExtGState) \
A(F) \
A(FL) \
A(Filter) \
A(First) \
A(FirstChar) \
A(Fit) \
A(FitB) \
A(FitBH) \
A(FitBV) \
A(FitH) \
A(FitR) \
A(FitV) \
A(FlateDecode) \
A(Font) \
A(FontDescriptor) \
A(FontFamily) \
A(FontFile) \
A(FontFile2) \
A(FontFile3) \
A(Gamma) \
A(H) \
A(Height) \
A(HT) \
A(HTO) \
A(ICCBased) \
A(ID) \
A(Image) \
A(ImageMask) \
A(Index) \
A(Indexed) \
A(Info) \
A(JBIG2Decode) \
A(JPXDecode) \
A(Keywords) \
A(Kids) \
A(L) \
A(LC) \
A(LJ) \
A(LW) \
A(LZWDecode) \
A(Last) \
A(LastChar) \
A(Length) \
A(Length1) \
A(Length2) \
A(Length3) \
A(Limits) \
A(Linearized) \
A(ML) \
A(Matrix) \
A(MediaBox) \
A(MissingWidth) \
A(ModDate) \
A(N) \
A(Names) \
A(Next) \
A(O) \
A(OE) \
A(OP) \
A(OPM) \
A(Ordering) \
A(Outlines) \
A(P) \
A(Pages) \
A(Parent) \
A(Pattern) \
A(Perms) \
A(Predictor) \
A(Prev) \
A(Producer) \
A(R) \
A(RI) \
A(Registry) \
A(Resources) \
A(Root) \
A(Rotate) \
A(RunLengthDecode) \
A(SA) \
A(SM) \
A(SMask) \
A(Separation) \
A(StmF) \
A(StrF) \
A(Subject) \
A(Subtype) \
A(Supplement) \
A(T) \
A(TK) \
A(TR) \
A(TR2) \
A(Title) \
A(ToUnicode) \
A(Type) \
A(Type1C) \
A(U) \
A(UE) \
A(UCR) \
A(UseBlackPTComp) \
A(UserUnit) \
A(V) \
A(W) \
A(WhitePoint) \
A(Width) \
A(Widths) \
A(XObject) \
A(XYZ) \
A(ca) \
A(op)
#define ENUMERATE_COMMON_NAMES(X) \
X(AIS) \
X(Alternate) \
X(ASCII85Decode) \
X(ASCIIHexDecode) \
X(Author) \
X(BG) \
X(BG2) \
X(BM) \
X(BaseEncoding) \
X(BaseFont) \
X(BitsPerComponent) \
X(BlackPoint) \
X(C) \
X(CA) \
X(CCITTFaxDecode) \
X(CF) \
X(CFM) \
X(CalRGB) \
X(CIDFontType0) \
X(CIDFontType2) \
X(CIDSystemInfo) \
X(CIDToGIDMap) \
X(Colors) \
X(ColorSpace) \
X(Columns) \
X(Contents) \
X(Count) \
X(CreationDate) \
X(Creator) \
X(CropBox) \
X(Crypt) \
X(D) \
X(DW) \
X(DCTDecode) \
X(DecodeParms) \
X(Decode) \
X(DescendantFonts) \
X(Dest) \
X(Dests) \
X(DeviceCMYK) \
X(DeviceGray) \
X(DeviceRGB) \
X(Differences) \
X(E) \
X(Encoding) \
X(Encrypt) \
X(EncryptMetadata) \
X(ExtGState) \
X(F) \
X(FL) \
X(Filter) \
X(First) \
X(FirstChar) \
X(Fit) \
X(FitB) \
X(FitBH) \
X(FitBV) \
X(FitH) \
X(FitR) \
X(FitV) \
X(FlateDecode) \
X(Font) \
X(FontDescriptor) \
X(FontFamily) \
X(FontFile) \
X(FontFile2) \
X(FontFile3) \
X(Gamma) \
X(H) \
X(Height) \
X(HT) \
X(HTO) \
X(ICCBased) \
X(ID) \
X(Image) \
X(ImageMask) \
X(Index) \
X(Indexed) \
X(Info) \
X(JBIG2Decode) \
X(JPXDecode) \
X(Keywords) \
X(Kids) \
X(L) \
X(LC) \
X(LJ) \
X(LW) \
X(LZWDecode) \
X(Last) \
X(LastChar) \
X(Length) \
X(Length1) \
X(Length2) \
X(Length3) \
X(Limits) \
X(Linearized) \
X(ML) \
X(Matrix) \
X(MediaBox) \
X(MissingWidth) \
X(ModDate) \
X(N) \
X(Names) \
X(Next) \
X(O) \
X(OE) \
X(OP) \
X(OPM) \
X(Ordering) \
X(Outlines) \
X(P) \
X(Pages) \
X(Parent) \
X(Pattern) \
X(Perms) \
X(Predictor) \
X(Prev) \
X(Producer) \
X(R) \
X(RI) \
X(Registry) \
X(Resources) \
X(Root) \
X(Rotate) \
X(RunLengthDecode) \
X(SA) \
X(SM) \
X(SMask) \
X(Separation) \
X(StmF) \
X(StrF) \
X(Subject) \
X(Subtype) \
X(Supplement) \
X(T) \
X(TK) \
X(TR) \
X(TR2) \
X(Title) \
X(ToUnicode) \
X(Type) \
X(Type1C) \
X(U) \
X(UE) \
X(UCR) \
X(UseBlackPTComp) \
X(UserUnit) \
X(V) \
X(W) \
X(WhitePoint) \
X(Width) \
X(Widths) \
X(XObject) \
X(XYZ) \
X(ca) \
X(op)
namespace PDF {