| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/clang-analyzer/ |
| H A D | core.uninitialized.Assign.rst | 1 .. title:: clang-tidy - clang-analyzer-core.uninitialized.Assign 5 clang-analyzer-core.uninitialized.Assign 8 The clang-analyzer-core.uninitialized.Assign check is an alias, please see
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | SpecialMembers.cpp | 31 } Ctor, Assign; in buildSpecialMemberDeclarations() local 35 Assign.Copy = M; in buildSpecialMemberDeclarations() 37 Assign.Move = M; in buildSpecialMemberDeclarations() 65 PrintMembers(Assign, /*MemberPattern=*/"{0} &operator=({1})"); in buildSpecialMemberDeclarations()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | explicit-section-mergeable.ll | 43 ;; Assign a mergeable global to a non-existing section. 45 ;; Assign a compatible mergeable global to the previous section. 54 ;; Assign a compatible mergeable global to the previous section. 63 ;; Assign a compatible mergeable global to the previous section. 86 ;; Assign compatible globals to the previously created sections. 101 ;; Assign a compatible global to a "default" mergeable section. 228 ;; Assign compatible globals to the previously created sections. 264 ;; Assign compatible symbols to sections created using inline asm. 267 ;; Assign incompatible globals to the same sections. 271 ;; Assign incompatible globals to sections created using inline asm. [all …]
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | deprecated.cpp | 85 struct Assign { struct 86 …Assign &operator=(const Assign&); // expected-warning {{definition of implicit copy constructor fo… 88 …Assign a1, a2(a1); // expected-note {{implicit copy constructor for 'DeprecatedCopy::Assign' first…
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | CheckerHelpers.cpp | 85 if (auto Assign = dyn_cast_or_null<BinaryOperator>(S)) { in parseAssignment() local 86 if (Assign->isAssignmentOp()) { in parseAssignment() 88 RHS = Assign->getRHS(); in parseAssignment() 89 if (auto DE = dyn_cast_or_null<DeclRefExpr>(Assign->getLHS())) in parseAssignment()
|
| /llvm-project-15.0.7/flang/include/flang/Runtime/ |
| H A D | assign.h | 37 void Assign(Descriptor &, const Descriptor &, Terminator &); 41 void RTNAME(Assign)(Descriptor &to, const Descriptor &from,
|
| H A D | derived-api.h | 38 void RTNAME(Assign)(const Descriptor &, const Descriptor &,
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | assign.cpp | 62 void Assign(Descriptor &to, const Descriptor &from, Terminator &terminator) { in Assign() function 199 Assign(toCompDesc, fromCompDesc, terminator); in Assign() 244 Assign(*toDesc, *fromDesc, terminator); in Assign() 278 void RTNAME(Assign)(Descriptor &to, const Descriptor &from, in RTNAME() argument 281 Assign(to, from, terminator); in RTNAME()
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/utility/exchange/ |
| H A D | exchange.pass.cpp | 41 template<bool Move, bool Assign> 47 TestNoexcept& operator=(TestNoexcept&&) noexcept(Assign);
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ |
| H A D | dwarfdump-accel.test | 14 CHECK: DW_AT_name{{.*}}"-[TestInterface Assign]" 46 CHECK: String:{{.*}}"-[TestInterface Assign]"
|
| H A D | dwarfdump-objc.test | 13 CHECK: DW_AT_APPLE_property_name {{.*}} "Assign"
|
| /llvm-project-15.0.7/llvm/test/MC/COFF/ |
| H A D | symbol-alias.s | 26 # Order is important here. Assign _bar_alias_alias before _bar_alias.
|
| /llvm-project-15.0.7/clang/test/CodeGenOpenCLCXX/ |
| H A D | addrspace-operators.clcpp | 10 void Assign(E e) { me = e; } 24 c.Assign(a);
|
| /llvm-project-15.0.7/flang/lib/Optimizer/Builder/ |
| H A D | CMakeLists.txt | 11 Runtime/Assign.cpp
|
| /llvm-project-15.0.7/flang/lib/Optimizer/Builder/Runtime/ |
| H A D | Assign.cpp | 18 auto func = fir::runtime::getRuntimeFunc<mkRTKey(Assign)>(loc, builder); in genAssign()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Inputs/ |
| H A D | dwarfdump-objc.m | 8 @property (assign) int Assign; property
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/ |
| H A D | trap-debugloc.ll | 3 ; Assign DebugLoc to unreachable instruction.
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | sstream | 36 // 27.8.1.2 Assign and swap: 84 // 27.8.2.2 Assign and swap: 123 // 27.8.3.2 Assign/swap: 162 // 27.8.5.1 Assign/swap: 243 // 27.8.1.2 Assign and swap: 666 // 27.8.2.2 Assign and swap: 746 // 27.8.2.2 Assign and swap: 827 // 27.8.2.2 Assign and swap:
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | Z3Solver.cpp | 852 SMTExprRef Assign = newExprRef( in getInterpretation() local 855 SMTSortRef Sort = getSort(Assign); in getInterpretation() 856 return toAPSInt(Sort, Assign, Int, true); in getInterpretation() 866 SMTExprRef Assign = newExprRef( in getInterpretation() local 869 SMTSortRef Sort = getSort(Assign); in getInterpretation() 870 return toAPFloat(Sort, Assign, Float, true); in getInterpretation()
|
| /llvm-project-15.0.7/flang/include/flang/Common/ |
| H A D | Fortran-features.h | 28 Assign, AssignedGOTO, Pause, OpenACC, OpenMP, CruftAfterAmpersand,
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | StatisticTest.cpp | 56 TEST(StatisticTest, Assign) { in TEST() argument
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/ |
| H A D | RegBankSelect.cpp | 478 bool Assign; in computeMapping() local 479 if (assignmentMatch(Reg, ValMapping, Assign)) { in computeMapping() 483 if (Assign) { in computeMapping()
|
| /llvm-project-15.0.7/llvm/include/llvm/Demangle/ |
| H A D | ItaniumDemangle.h | 186 Assign, enumerator 1705 bool IsAssign = getPrecedence() == Prec::Assign; in printLeft() 1775 Else->printAsOperand(OB, Prec::Assign, true); in printLeft() 2934 {"aN", OperatorInfo::Binary, false, Node::Prec::Assign, "operator&="}, 2935 {"aS", OperatorInfo::Binary, false, Node::Prec::Assign, "operator="}, 2948 {"dV", OperatorInfo::Binary, false, Node::Prec::Assign, "operator/="}, 2959 {"dv", OperatorInfo::Binary, false, Node::Prec::Assign, "operator/"}, 2960 {"eO", OperatorInfo::Binary, false, Node::Prec::Assign, "operator^="}, 2970 {"mI", OperatorInfo::Binary, false, Node::Prec::Assign, "operator-="}, 2971 {"mL", OperatorInfo::Binary, false, Node::Prec::Assign, "operator*="}, [all …]
|
| /llvm-project-15.0.7/libcxxabi/src/demangle/ |
| H A D | ItaniumDemangle.h | 186 Assign, enumerator 1705 bool IsAssign = getPrecedence() == Prec::Assign; in printLeft() 1775 Else->printAsOperand(OB, Prec::Assign, true); in printLeft() 2934 {"aN", OperatorInfo::Binary, false, Node::Prec::Assign, "operator&="}, 2935 {"aS", OperatorInfo::Binary, false, Node::Prec::Assign, "operator="}, 2948 {"dV", OperatorInfo::Binary, false, Node::Prec::Assign, "operator/="}, 2959 {"dv", OperatorInfo::Binary, false, Node::Prec::Assign, "operator/"}, 2960 {"eO", OperatorInfo::Binary, false, Node::Prec::Assign, "operator^="}, 2970 {"mI", OperatorInfo::Binary, false, Node::Prec::Assign, "operator-="}, 2971 {"mL", OperatorInfo::Binary, false, Node::Prec::Assign, "operator*="}, [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | lower-module-lds-inactive.ll | 34 ; Assign to self is treated as any other initializer, i.e. ignored by this pass
|