Home
last modified time | relevance | path

Searched refs:Syntax (Results 1 – 25 of 88) sorted by relevance

1234

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DAttributes.cpp44 static int hasAttributeImpl(AttributeCommonInfo::Syntax Syntax, StringRef Name, in hasAttributeImpl() argument
51 int clang::hasAttribute(AttributeCommonInfo::Syntax Syntax, StringRef ScopeName, in hasAttribute() argument
68 int res = hasAttributeImpl(Syntax, Name, ScopeName, Target, LangOpts); in hasAttribute()
75 if (Ptr->hasSpelling(Syntax, Name)) in hasAttribute()
82 int clang::hasAttribute(AttributeCommonInfo::Syntax Syntax, in hasAttribute() argument
86 return hasAttribute(Syntax, Scope ? Scope->getName() : "", Attr->getName(), in hasAttribute()
90 int clang::hasAttribute(AttributeCommonInfo::Syntax Syntax, in hasAttribute() argument
93 return hasAttribute(Syntax, Scope, Attr, Target, LangOpts, in hasAttribute()
109 AttributeCommonInfo::Syntax SyntaxUsed) { in normalizeAttrScopeName()
119 AttributeCommonInfo::Syntax SyntaxUsed) { in normalizeAttrScopeName()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttributes.h22 int hasAttribute(AttributeCommonInfo::Syntax Syntax, llvm::StringRef ScopeName,
26 int hasAttribute(AttributeCommonInfo::Syntax Syntax,
30 int hasAttribute(AttributeCommonInfo::Syntax Syntax,
H A DAttributeCommonInfo.h32 enum Syntax { enum
91 LLVM_PREFERRED_TYPE(Syntax)
108 constexpr Form(Syntax SyntaxUsed, unsigned SpellingIndex, bool IsAlignas, in Form()
118 Syntax getSyntax() const { return Syntax(SyntaxUsed); } in getSyntax()
138 constexpr Form(Syntax SyntaxUsed) in Form()
142 LLVM_PREFERRED_TYPE(Syntax)
187 Syntax getSyntax() const { return Syntax(SyntaxUsed); } in getSyntax()
268 const IdentifierInfo *Scope, Syntax SyntaxUsed);
H A DParsedAttrInfo.h69 AttributeCommonInfo::Syntax Syntax; member
102 bool hasSpelling(AttributeCommonInfo::Syntax Syntax, StringRef Name) const { in hasSpelling()
104 return (S.Syntax == Syntax && S.NormalizedFullName == Name); in hasSpelling()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DJSONCompilationDatabase.h69 JSONCommandLineSyntax Syntax);
76 JSONCommandLineSyntax Syntax);
98 JSONCommandLineSyntax Syntax) in JSONCompilationDatabase() argument
99 : Database(std::move(Database)), Syntax(Syntax), in JSONCompilationDatabase()
134 JSONCommandLineSyntax Syntax; variable
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp130 std::vector<std::string> unescapeCommandLine(JSONCommandLineSyntax Syntax, in unescapeCommandLine() argument
132 if (Syntax == JSONCommandLineSyntax::AutoDetect) { in unescapeCommandLine()
135 Syntax = JSONCommandLineSyntax::Windows; in unescapeCommandLine()
137 Syntax = JSONCommandLineSyntax::Gnu; in unescapeCommandLine()
141 if (Syntax == JSONCommandLineSyntax::Windows) { in unescapeCommandLine()
149 assert(Syntax == JSONCommandLineSyntax::Gnu); in unescapeCommandLine()
190 JSONCommandLineSyntax Syntax) { in loadFromFile() argument
201 new JSONCompilationDatabase(std::move(*DatabaseBuffer), Syntax)); in loadFromFile()
210 JSONCommandLineSyntax Syntax) { in loadFromBuffer() argument
214 new JSONCompilationDatabase(std::move(DatabaseBuffer), Syntax)); in loadFromBuffer()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DSyntax.td1 //===- Syntax.td - TableGen metamodel for syntax::Node hierarchy ----------===//
30 // Syntax is any constraint on constructs that can appear somewhere.
31 class Syntax;
32 class Optional<Syntax inner_> : Syntax { Syntax inner = inner_; }
33 class AnyToken<list<string> kinds_> : Syntax { list<string> kinds = kinds_; }
39 class NodeType : Syntax {
66 class Role<string role_, Syntax syntax_> {
68 Syntax syntax = syntax_;
H A DNodes.td1 //===- Nodes.td - Node types in the Syntax Tree grammar -------------------===//
10 // The archetypes they fall into (Sequence, List etc) are defined in Syntax.td.
18 include "clang/Tooling/Syntax/Syntax.td"
/freebsd/lib/libfetch/
H A Dftp.errors34 500 PROTO Syntax error, command unrecognized
35 501 PROTO Syntax error in parameters or arguments
/freebsd/crypto/krb5/src/util/profile/
H A Dprof_err.et29 error_code PROF_SECTION_SYNTAX, "Syntax error in profile section header"
30 error_code PROF_RELATION_SYNTAX, "Syntax error in profile relation"
/freebsd/bin/sh/tests/errors/
H A Dbad-binary1.1263 # Syntax error: word unexpected (expecting ")")
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaCodeCompletion.h125 AttributeCommonInfo::Syntax Syntax,
/freebsd/contrib/netbsd-tests/lib/libusbhid/
H A Dtest_usb_hid_usages4 # Syntax:
/freebsd/bin/sh/tests/builtins/
H A Dfc1.012 # Syntax error
/freebsd/contrib/one-true-awk/testdir/
H A DT.lilly25 sed -e 's/awk://' -e 's/Syntax/syntax/' -e '/warning:/d' foo1 >glop1
/freebsd/contrib/tcsh/nls/C/
H A Dset13 1 Syntax Error
36 34 Expression Syntax
/freebsd/contrib/file/magic/Magdir/
H A Dkerberos20 # XXX: Syntax:
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dnvidia,tegra-vde.txt44 reg = <0x6001a000 0x1000 /* Syntax Engine */
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp1826 return II ? hasAttribute(AttributeCommonInfo::Syntax::AS_GNU, nullptr, in ExpandBuiltinMacro()
1838 hasAttribute(AttributeCommonInfo::Syntax::AS_Declspec, nullptr, in ExpandBuiltinMacro()
1868 AttributeCommonInfo::Syntax Syntax = in ExpandBuiltinMacro() local
1869 IsCXX ? AttributeCommonInfo::Syntax::AS_CXX11 in ExpandBuiltinMacro()
1870 : AttributeCommonInfo::Syntax::AS_C23; in ExpandBuiltinMacro()
1871 return II ? hasAttribute(Syntax, ScopeII, II, getTargetInfo(), in ExpandBuiltinMacro()
/freebsd/crypto/heimdal/lib/hdb/
H A Dhdb.schema13 # Syntax definitions
/freebsd/crypto/openssl/doc/man7/
H A DEVP_KDF-PKCS12KDF.pod14 Personal Information Exchange Syntax); it derives a key from a password
H A DEVP_KDF-X963.pod10 X963KDF is used by Cryptographic Message Syntax (CMS) for EC KeyAgreement, to
/freebsd/crypto/heimdal/doc/
H A Dlayman.asc22 subset of OSI's Abstract Syntax Notation One (ASN.1), Basic
58 (Abstract Syntax Notation One, defined in X.208), and one
116 2. Abstract Syntax Notation One
118 Abstract Syntax Notation One, abbreviated ASN.1, is a
1753 Syntax Standard. Version 1.5, November 1993.
1756 Syntax Standard. Version 1.5, November 1993.
1759 Syntax Standard. Version 1.2, November 1993.
1765 Syntax Standard. Version 1.0, November 1993.
1772 Abstract Syntax Notation One (ASN.1). 1988.
1775 Basic Encoding Rules for Abstract Syntax Notation
[all …]
/freebsd/crypto/openssl/demos/
H A DREADME.txt20 Syntax (CMS) standard
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp120 AttributeCommonInfo::Syntax SyntaxUsed = A.getSyntax(); in get()

1234