OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Groups
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
OptRSTEmitter.cpp
34
// Get the option
groups
.
35
const std::vector<Record *> &
Groups
=
37
for (unsigned i = 0, e =
Groups
.size(); i != e; ++i) {
38
const Record &R = *
Groups
[i];
OptParserEmitter.cpp
217
// Get the option
groups
and options.
218
const std::vector<Record*> &
Groups
=
225
// Generate prefix
groups
.
262
OS << "//
Groups
\n\n";
264
for (const Record &R : llvm::make_pointee_range(
Groups
)) {
287
// The other option arguments (unused for
groups
).
301
// The option Values (unused for
groups
).
421
// have reordered the options again when generating prefix
groups
. We need to
CodeGenSchedule.h
380
std::vector<OpcodeGroup>
Groups
;
395
if (
Groups
.empty() ||
396
Groups
.back().getOpcodeInfo().getPredicates() != Info.getPredicates())
397
Groups
.emplace_back(std::move(Info));
398
Groups
.back().addOpcode(OpcodeRec);
410
ArrayRef<OpcodeGroup> getGroups() const { return
Groups
; }
/src/external/apache2/llvm/dist/clang/lib/Format/
NamespaceEndCommentsFixer.cpp
102
SmallVector<StringRef, 8>
Groups
;
104
NamespaceMacroCommentPattern.match(Comment->TokenText, &
Groups
)) {
105
StringRef NamespaceTokenText =
Groups
.size() > 4 ?
Groups
[4] : "";
110
!NamespaceCommentPattern.match(Comment->TokenText, &
Groups
)) {
114
StringRef NamespaceNameInComment =
Groups
.size() > 5 ?
Groups
[5] : "";
118
StringRef AnonymousInComment =
Groups
.size() > 3 ?
Groups
[3] : "";
135
if (!CommentPattern.match(Comment->Next->TokenText, &
Groups
)) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstrFMA3Info.cpp
65
static const X86InstrFMA3Group
Groups
[] = {
119
assert(llvm::is_sorted(
Groups
) && llvm::is_sorted(RoundGroups) &&
151
Table = makeArrayRef(
Groups
);
/src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangOptionDocEmitter.cpp
32
std::vector<DocumentedGroup>
Groups
;
43
// Build the tree of
groups
. The root in the tree is the fake option group
44
// (Record*)nullptr, which contains all top-level
groups
and options.
120
auto &
Groups
= GroupsInGroup[R];
121
llvm::sort(
Groups
, CompareByLocation);
122
for (Record *G :
Groups
) {
123
D.
Groups
.emplace_back();
124
D.
Groups
.back().Group = G;
125
Documentation &Base = D.
Groups
.back();
206
assert(Depth < 8 && "
groups
nested too deeply")
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/MCA/HardwareUnits/
LSUnit.h
221
DenseMap<unsigned, std::unique_ptr<MemoryGroup>>
Groups
;
272
return Index && (
Groups
.find(Index) !=
Groups
.end());
306
return *
Groups
.find(Index)->second;
311
return *
Groups
.find(Index)->second;
315
Groups
.insert(
330
Groups
[GroupID]->onInstructionIssued(IR);
/src/sys/external/bsd/gnu-efi/dist/inc/
efiudp.h
153
EFI_UDP4_GROUPS
Groups
;
267
EFI_UDP6_GROUPS
Groups
;
efiip.h
204
EFI_IP4_GROUPS
Groups
;
452
EFI_IP6_GROUPS
Groups
;
/src/external/apache2/llvm/dist/llvm/lib/MC/
XCOFFObjectWriter.cpp
127
CsectGroups
Groups
;
137
for (auto *Group :
Groups
)
142
CsectGroups
Groups
)
145
Index(UninitializedIndex), IsVirtual(IsVirtual),
Groups
(
Groups
) {
533
for (const auto *Group : Section->
Groups
) {
734
for (const auto *Group : Section->
Groups
) {
781
for (const auto *Group : Section->
Groups
) {
805
for (const auto *Group : Section->
Groups
) {
866
llvm::all_of(Section->
Groups
,
[
all
...]
ELFObjectWriter.cpp
1085
std::vector<MCSectionELF *>
Groups
;
1112
Groups
.push_back(Group);
1138
for (MCSectionELF *Group :
Groups
) {
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopAccessAnalysis.cpp
311
// We build the
groups
from dependency candidates equivalence classes
321
// We use the following (greedy) algorithm to construct the
groups
349
// separate checking
groups
for all pointers.
371
// Go through all equivalence classes, get the "pointer check
groups
"
383
SmallVector<RuntimeCheckingPtrGroup, 2>
Groups
;
403
for (RuntimeCheckingPtrGroup &Group :
Groups
) {
407
// will create separate
groups
for all remaining pointers.
423
Groups
.push_back(RuntimeCheckingPtrGroup(Pointer, *this));
428
llvm::copy(
Groups
, std::back_inserter(CheckingGroups));
712
// Accesses between different
groups
doesn't need to be checked
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
VTableBuilder.cpp
2905
// 1) Group overloads by declaration name. New
groups
are added to the
2911
SmallVector<MethodGroup, 10>
Groups
;
2921
std::make_pair(ND->getDeclName(),
Groups
.size()));
2923
Groups
.push_back(MethodGroup());
2926
Groups
[J->second].push_back(MD->getCanonicalDecl());
2929
for (const MethodGroup &Group :
Groups
)
/src/external/apache2/llvm/dist/llvm/lib/IR/
AutoUpgrade.cpp
730
SmallVector<StringRef, 2>
Groups
;
732
if (R.match(Name, &
Groups
)) {
734
ID = StringSwitch<Intrinsic::ID>(
Groups
[1])
756
Groups
.clear();
757
if (R2.match(Name, &
Groups
)) {
759
if (
Groups
[1] == "fadd")
761
if (
Groups
[1] == "fmul")
4463
SmallVector<StringRef, 4>
Groups
;
4465
if (!R.match(DL, &
Groups
))
4468
return (
Groups
[1] + AddrSpaces + Groups[3]).str()
[
all
...]
Completed in 113 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026