Home
last modified time | relevance | path

Searched full:subject (Results 1 – 25 of 532) sorted by relevance

12345678910>>...22

/llvm-project/clang/test/Parser/
H A Dpragma-attribute.cpp27 #pragma clang attribute push(__attribute__((annotate("test"))), ) // expected-error {{expected attribute subject set specifier 'apply_to'}}
28 #pragma clang attribute push(__attribute__((annotate("test"))), = any(function)) // expected-error {{expected attribute subject set specifier 'apply_to'}}
29 #pragma clang attribute push(__attribute__((annotate("test"))), = function) // expected-error {{expected attribute subject set specifier 'apply_to'}}
30 #pragma clang attribute push(__attribute__((annotate("test"))), any(function)) // expected-error {{expected attribute subject set specifier 'apply_to'}}
31 #pragma clang attribute push(__attribute__((annotate("test"))), function) // expected-error {{expected attribute subject set specifier 'apply_to'}}
32 #pragma clang attribute push(__attribute__((annotate("test"))), apply = any(function )) // expected-error {{expected attribute subject set specifier 'apply_to'}}
33 #pragma clang attribute push(__attribute__((annotate("test"))), to = function) // expected-error {{expected attribute subject set specifier 'apply_to'}}
34 #pragma clang attribute push(__attribute__((annotate("test"))), apply_only_to = function) // expected-error {{expected attribute subject set specifier 'apply_to'}}
44 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = { function, enum }) // expected-error {{expected an identifier that corresponds to an attribute subject rule}}
47 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any(function, )) // expected-error {{expected an identifier that corresponds to an attribute subject rul
[all...]
/llvm-project/clang-tools-extra/clangd/index/
H A DRelation.h28 /// { Subject = A, Predicate = BaseOf, Object = B }.
30 /// { Subject = Base::Foo, Predicate = OverriddenBy, Object = Derived::Foo
33 SymbolID Subject; member
38 return std::tie(Subject, Predicate, Object) ==
39 std::tie(Other.Subject, Other.Predicate, Other.Object);
43 return std::tie(Subject, Predicate, Object) <
44 std::tie(Other.Subject, Other.Predicate, Other.Object);
69 /// Lookup all relations matching the given subject and predicate.
70 llvm::iterator_range<iterator> lookup(const SymbolID &Subject,
H A DRelation.cpp27 return OS << R.Subject << " " << R.Predicate << " " << R.Object; in operator <<()
31 RelationSlab::lookup(const SymbolID &Subject, RelationKind Predicate) const { in lookup() argument
33 Relation{Subject, Predicate, SymbolID{}}, in lookup()
35 return std::tie(A.Subject, A.Predicate) < in lookup()
36 std::tie(B.Subject, B.Predicate); in lookup()
H A DMerge.cpp208 Dynamic->relations(Req, [&](const SymbolID &Subject, const Symbol &Object) { in mergeSymbol()
209 Callback(Subject, Object); in mergeSymbol()
210 SeenRelations.insert(std::make_pair(Subject, Object.ID)); in mergeSymbol()
215 Static->relations(Req, [&](const SymbolID &Subject, const Symbol &Object) { in mergeSymbol()
217 !SeenRelations.count(std::make_pair(Subject, Object.ID))) { in mergeSymbol()
219 Callback(Subject, Object); in mergeSymbol()
174 __anon6f44af050902(const SymbolID &Subject, const Symbol &Object) relations() argument
181 __anon6f44af050a02(const SymbolID &Subject, const Symbol &Object) relations() argument
H A DMemIndex.cpp112 for (const SymbolID &Subject : Req.Subjects) { in indexedFiles()
115 std::make_pair(Subject, static_cast<uint8_t>(Req.Predicate))); in estimateMemoryUsage()
124 lookup(LookupReq, [&](const Symbol &Object) { Callback(Subject, Object); });
92 for (const SymbolID &Subject : Req.Subjects) { relations() local
H A DMemIndex.h31 this->Relations[std::make_pair(R.Subject, in MemIndex()
93 // A map from (subject, predicate) pair to objects.
/llvm-project/clang/test/Sema/
H A Dpragma-attribute-strict-subjects.c7 // Check for contradictions in rules for attribute without a strict subject set:
10 // expected-error@-1 {{redundant attribute subject matcher sub-rule 'variable(is_parameter)'; 'variable' already matches those declarations}}
11 // expected-error@-2 {{redundant attribute subject matcher sub-rule 'variable(is_global)'; 'variable' already matches those declarations}}
16 // expected-error@-1 {{redundant attribute subject matcher sub-rule 'function(is_member)'; 'function' already matches those declarations}}
21 // expected-error@-1 {{redundant attribute subject matcher sub-rule 'variable(unless(is_parameter))'; 'variable' already matches those declarations}}
26 // expected-error@-1 {{negated attribute subject matcher sub-rule 'variable(unless(is_parameter))' contradicts sub-rule 'variable(is_parameter)'}}
31 // expected-error@-1 {{negated attribute subject matcher sub-rule 'variable(unless(is_parameter))' contradicts sub-rule 'variable(is_global)'}}
36 // Verify the strict subject set verification.
67 // Verify the non-strict subject set verification.
147 // without subject lis
[all...]
/llvm-project/clang/test/Misc/
H A Dpragma-attribute-strict-subjects.c4 // Check for contradictions in rules for attribute without a strict subject set:
7 // expected-error@-1 {{redundant attribute subject matcher sub-rule 'variable(is_parameter)'; 'variable' already matches those declarations}}
8 // expected-error@-2 {{redundant attribute subject matcher sub-rule 'variable(is_global)'; 'variable' already matches those declarations}}
19 // expected-error@-1 {{negated attribute subject matcher sub-rule 'variable(unless(is_parameter))' contradicts sub-rule 'variable(is_global)'}}
34 // Verify the strict subject set verification.
75 // Verify the non-strict subject set verification.
/llvm-project/lldb/packages/Python/lldbsuite/test_event/
H A Dbuild_exception.py6 super(BuildError, self).__init__("Error when building test subject")
15 …return "Error when building test subject.\n\nBuild Command:\n{}\n\nBuild Command Output:\n{}".form…
/llvm-project/polly/lib/External/isl/imath/
H A DLICENSE2 You may use it subject to the following Licensing Terms:
9 so, subject to the following conditions:
/llvm-project/polly/lib/External/isl/doc/
H A DSubmittingPatches48 the subject line (e.g., use --subject-prefix='PATCH v2'
/llvm-project/libcxx/test/std/concepts/concepts.lang/concept.derived/
H A Dderived_from.pass.cpp405 { // Base1 is the subject. in main()
417 { // Derived1 is the subject. in main()
429 { // Derived2 is the subject. in main()
440 { // DerivedPrivate is the subject. in main()
451 { // Derived3 is the subject. in main()
462 { // DerivedProtected is the subject. in main()
473 { // Derived4 is the subject. in main()
484 { // Derived5 is the subject. in main()
/llvm-project/llvm/lib/Support/
H A DCOPYRIGHT.regex4 This software is not subject to any license of the American Telephone
8 any computer system, and to alter it and redistribute it, subject
/llvm-project/openmp/
H A DLICENSE.TXT70 2. Grant of Copyright License. Subject to the terms and conditions of
77 3. Grant of Patent License. Subject to the terms and conditions of
268 so, subject to the following conditions:
298 furnished to do so, subject to the following conditions:
333 1. Grant of Copyright License. Subject to the terms and conditions of this
340 2. Grant of Patent License. Subject to the terms and conditions of this
/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp330 auto IsOneOf = [](StringRef subject, auto... list) { in getIsOmitted()
331 return ((subject == list) || ...); in getIsOmitted()
1942 assert(MetaSubject && "Missing subject");
2058 static bool isSupportedPragmaClangAttributeSubject(const Record &Subject) {
2060 // attributes, so test whether the subject is one that appertains to a
2063 if (Subject.isSubClassOf("DeclNode") || Subject.isSubClassOf("DeclBase") || in isSupportedPragmaClangAttributeSubject() argument
2064 Subject.getName() == "DeclBase") in isSupportedPragmaClangAttributeSubject()
2067 if (Subject.isSubClassOf("SubsetSubject")) in isSupportedPragmaClangAttributeSubject()
2069 *Subject in isSupportedPragmaClangAttributeSubject()
324 __anon4af29db20302(StringRef subject, auto... list) getIsOmitted() argument
2098 for (const auto *Subject : ApplicableSubjects) { PragmaClangAttributeSupport() local
2213 for (const auto *Subject : Subjects) { isAttributedSupported() local
2265 for (const auto *Subject : Subjects) { generateStrictConformsTo() local
4078 for (const auto *Subject : Subjects) { CalculateDiagnostic() local
4129 functionNameForCustomAppertainsTo(const Record & Subject) functionNameForCustomAppertainsTo() argument
4133 GenerateCustomAppertainsTo(const Record & Subject,raw_ostream & OS) GenerateCustomAppertainsTo() argument
4664 for (auto Subject : SubjectObj->getValueAsListOfDefs("Subjects")) EmitClangAttrParsedAttrImpl() local
5278 for (const auto &Subject : llvm::enumerate(Subjects)) { EmitTestPragmaAttributeSupportedAttributes() local
[all...]
/llvm-project/llvm/docs/
H A DCFIVerify.rst60 functions and jump tables should also be subject to CFI protections. Non-virtual
85 Only machine code sections that are marked as executable will be subject to this
/llvm-project/openmp/tools/archer/
H A DREADME.md238 …n invitation please write an email to <a href="mailto:simone@cs.utah.edu?Subject=[archer-slack] Sl…
241 …imone@cs.utah.edu?Subject=[archer-dev]%20" target="_top">Simone Atzeni</a> </li> <li> <a href="mai…
/llvm-project/llvm/docs/HistoricalNotes/
H A D2000-11-18-EarlyDesignIdeasResp.txt4 Subject: Re: a few thoughts
16 subject to change)
106 C. In the model I was thinking of (subject to change of course), we
/llvm-project/llvm/lib/Support/BLAKE3/
H A DLICENSE56 subject to the limitations in paragraph 4(a), below;
80 successors, fully intending that such Waiver shall not be subject to
195 2. Grant of Copyright License. Subject to the terms and conditions of
202 3. Grant of Patent License. Subject to the terms and conditions of
/llvm-project/libclc/
H A DLICENSE.TXT70 2. Grant of Copyright License. Subject to the terms and conditions of
77 3. Grant of Patent License. Subject to the terms and conditions of
258 so, subject to the following conditions:
288 furnished to do so, subject to the following conditions:
/llvm-project/pstl/
H A DLICENSE.TXT70 2. Grant of Copyright License. Subject to the terms and conditions of
77 3. Grant of Patent License. Subject to the terms and conditions of
266 so, subject to the following conditions:
296 furnished to do so, subject to the following conditions:
/llvm-project/libcxxabi/
H A DLICENSE.TXT70 2. Grant of Copyright License. Subject to the terms and conditions of
77 3. Grant of Patent License. Subject to the terms and conditions of
269 so, subject to the following conditions:
300 furnished to do so, subject to the following conditions:
/llvm-project/compiler-rt/
H A DLICENSE.TXT70 2. Grant of Copyright License. Subject to the terms and conditions of
77 3. Grant of Patent License. Subject to the terms and conditions of
269 so, subject to the following conditions:
300 furnished to do so, subject to the following conditions:
/llvm-project/libcxx/
H A DLICENSE.TXT70 2. Grant of Copyright License. Subject to the terms and conditions of
77 3. Grant of Patent License. Subject to the terms and conditions of
269 so, subject to the following conditions:
300 furnished to do so, subject to the following conditions:
/llvm-project/libunwind/
H A DLICENSE.TXT70 2. Grant of Copyright License. Subject to the terms and conditions of
77 3. Grant of Patent License. Subject to the terms and conditions of
269 so, subject to the following conditions:
300 furnished to do so, subject to the following conditions:

12345678910>>...22