Home
last modified time | relevance | path

Searched refs:identifiers (Results 1 – 25 of 89) sorted by relevance

1234

/llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/
H A DPresburgerSpaceTest.cpp58 int identifiers[2] = {0, 1}; in TEST() local
59 space.setId<int *>(VarKind::Domain, 0, &identifiers[0]); in TEST()
60 space.setId<int *>(VarKind::Domain, 1, &identifiers[1]); in TEST()
71 EXPECT_EQ(*space.getId<int *>(VarKind::Domain, 2), identifiers[0]); in TEST()
79 int identifiers[6] = {0, 1, 2, 3, 4, 5}; in TEST() local
82 space.setId<int *>(VarKind::Domain, 0, &identifiers[0]); in TEST()
83 space.setId<int *>(VarKind::Domain, 1, &identifiers[1]); in TEST()
86 space.setId<int *>(VarKind::Range, 0, &identifiers[2]); in TEST()
89 space.setId<int *>(VarKind::Symbol, 0, &identifiers[3]); in TEST()
90 space.setId<int *>(VarKind::Symbol, 1, &identifiers[4]); in TEST()
[all …]
/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DPresburgerSpace.cpp89 identifiers.insert(identifiers.begin() + absolutePos, num, nullptr); in insertVar()
114 identifiers.erase(identifiers.begin() + getVarKindOffset(kind) + varStart, in removeVarRange()
115 identifiers.begin() + getVarKindOffset(kind) + varLimit); in removeVarRange()
154 return isCompatible(other) && identifiers == other.identifiers; in isAligned()
164 makeArrayRef(identifiers) in isAligned()
167 makeArrayRef(other.identifiers) in isAligned()
193 for (void *identifier : identifiers) in print()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/misc/
H A Dconfusable-identifiers.rst1 .. title:: clang-tidy - misc-confusable-identifiers
3 misc-confusable-identifiers
6 Warn about confusable identifiers, i.e. identifiers that are visually close to
H A Dmisleading-identifier.rst6 Finds identifiers that contain Unicode characters with right-to-left direction,
/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DPresburgerSpace.h214 identifiers.clear(); in resetIds()
215 identifiers.resize(getNumDimAndSymbolVars()); in resetIds()
225 identifiers.clear(); in disableIds()
239 return identifiers[getVarKindOffset(kind) + i]; in atId()
246 return identifiers[getVarKindOffset(kind) + i]; in atId()
273 SmallVector<void *, 0> identifiers; variable
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DAffine.md15 Dimensions and symbols are the two kinds of identifiers that can appear in the
28 Dimensional identifiers correspond to the dimensions of the underlying structure
31 identifiers represent an unknown quantity that can be treated as constant for a
40 // Uses of SSA values that are passed to dimensional identifiers.
71 arguments any valid symbolic identifiers, or 6. the result of a
202 `floordiv`, `ceildiv`, and `mod` with respect to symbolic identifiers.
252 classes: the set's dimension identifiers, and the set's symbolic identifiers.
253 The set is viewed as being parametric on its symbolic identifiers. In the
303 `s1` are symbol identifiers.
322 indicate SSA identifiers which are symbolic.
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dreserved-identifier.rst8 Checks for usages of identifiers reserved for use by the implementation.
12 - identifiers that begin with an underscore followed by an uppercase letter;
13 - identifiers in the global namespace that begin with an underscore.
/llvm-project-15.0.7/mlir/utils/vim/syntax/
H A Dmlir.vim91 " Prefixed identifiers usually used for ssa values and symbols.
94 " Prefixed identifiers usually used for blocks.
97 " Prefixed identifiers usually used for types.
100 " Prefixed identifiers usually used for attribute aliases and result numbers.
/llvm-project-15.0.7/mlir/lib/Support/
H A DTiming.cpp49 llvm::StringSet<llvm::BumpPtrAllocator &> identifiers; member in mlir::detail::TimingManagerImpl
56 TimingManagerImpl() : identifiers(identifierAllocator) {} in TimingManagerImpl()
91 auto it = impl.identifiers.find(str); in get()
92 if (it != impl.identifiers.end()) { in get()
100 auto it = impl.identifiers.insert(str).first; in get()
/llvm-project-15.0.7/lldb/test/API/lang/c/unicode/
H A DMakefile2 CFLAGS_EXTRAS := -finput-charset=UTF-8 -fextended-identifiers -std=c99
/llvm-project-15.0.7/mlir/test/Dialect/Affine/
H A Dload-store.mlir36 // be parsed as dim identifiers).
53 // be parsed as symbol identifiers).
108 // Dim identifiers are assigned in parse order:
130 // Dim and symbol identifiers are assigned in parse order:
/llvm-project-15.0.7/llvm/test/TableGen/
H A DValidIdentifiers.td4 // Ensure that generated names for anonymous records are valid identifiers via the ctags index.
/llvm-project-15.0.7/llvm/test/Verifier/
H A Dmodule-flags-1.ll29 ; CHECK: module flag identifiers must be unique (or of 'require' type)
32 ; CHECK-NOT: module flag identifiers must be unique
/llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/
H A Dinstrument-section-invalid-c-ident.ll1 ; This test checks that sections with names not resembling valid C identifiers
/llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/
H A Dnonstring.ll3 ; Tests that non-string metadata nodes may be used as bitset identifiers.
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Dc-type-units.ll7 ; no known LLVM frontends produce appropriate unique identifiers for C types,
/llvm-project-15.0.7/lldb/test/API/lang/objc/cpp_keyword_identifiers/
H A Dmain.m2 // Disable clang-format as it gets confused by the keyword identifiers.
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dparameterized_classes.m203 // Type arguments with a mix of identifiers and type-names.
206 // Type arguments with only identifiers.
209 // Type arguments with only identifiers; one is ambiguous (resolved as
213 // Type arguments with only identifiers; one is ambiguous (resolved as
223 // Type arguments and protocol qualifiers (identifiers).
/llvm-project-15.0.7/llvm/lib/Target/SPIRV/
H A DSPIRVRegisterInfo.td15 // All registers are for 32-bit identifiers, so have a single dummy register
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclObjC.cpp1416 ArrayRef<IdentifierInfo *> identifiers, in actOnObjCTypeArgsOrProtocolQualifiers() argument
1526 for (unsigned i = 0, n = identifiers.size(); i != n; ++i) { in actOnObjCTypeArgsOrProtocolQualifiers()
1534 if (numProtocolsResolved == identifiers.size()) in actOnObjCTypeArgsOrProtocolQualifiers()
1544 for (unsigned i = 0, n = identifiers.size(); i != n; ++i) { in actOnObjCTypeArgsOrProtocolQualifiers()
1640 if (numTypeDeclsResolved == identifiers.size()) in actOnObjCTypeArgsOrProtocolQualifiers()
1647 for (unsigned i = 0, n = identifiers.size(); i != n; ++i) { in actOnObjCTypeArgsOrProtocolQualifiers()
1697 << identifiers[i]); in actOnObjCTypeArgsOrProtocolQualifiers()
1708 << identifiers[i]); in actOnObjCTypeArgsOrProtocolQualifiers()
1719 << identifiers[i] << true); in actOnObjCTypeArgsOrProtocolQualifiers()
1732 << identifiers[i]; in actOnObjCTypeArgsOrProtocolQualifiers()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetPfmCounters.td13 // Definition of a hardware counters from libpfm identifiers.
/llvm-project-15.0.7/lld/test/ELF/
H A Dgc-sections-startstop.s26 ## If -z nostart-stop-gc, sections whose names are C identifiers are retained by
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseObjc.cpp1617 SmallVector<IdentifierInfo *, 4> identifiers; in parseObjCTypeArgsOrProtocolQualifiers() local
1628 identifiers.push_back(Tok.getIdentifierInfo()); in parseObjCTypeArgsOrProtocolQualifiers()
1636 for (unsigned i = 0, n = identifiers.size(); i != n; ++i) { in parseObjCTypeArgsOrProtocolQualifiers()
1637 identifierLocPairs.push_back(IdentifierLocPair(identifiers[i], in parseObjCTypeArgsOrProtocolQualifiers()
1667 identifiers, in parseObjCTypeArgsOrProtocolQualifiers()
1692 for (unsigned i = 0, n = identifiers.size(); i != n; ++i) { in parseObjCTypeArgsOrProtocolQualifiers()
1709 foundValidTypeId = identifiers[i]; in parseObjCTypeArgsOrProtocolQualifiers()
1714 unknownTypeArgs.push_back(identifiers[i]); in parseObjCTypeArgsOrProtocolQualifiers()
1719 if (!Actions.LookupProtocol(identifiers[i], identifierLocs[i])) { in parseObjCTypeArgsOrProtocolQualifiers()
1720 unknownTypeArgs.push_back(identifiers[i]); in parseObjCTypeArgsOrProtocolQualifiers()
[all …]
/llvm-project-15.0.7/polly/test/CodeGen/
H A Dnon-affine-update.ll14 ; At some point this did not work due to memory access identifiers not being
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Async/IR/
H A DAsyncTypes.td75 // identifiers and handles. To define type-safe Async Runtime operations and

1234