OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ED
(Results
1 - 21
of
21
) sorted by relevancy
/src/bin/ed/test/
Makefile
5
ED
?= ../obj/
ed
17
echo "building test scripts for $(
ED
) ..."; \
18
${HOST_SH} ${.CURDIR}/mkscripts.sh $(
ED
); \
22
@echo testing $(
ED
) ...
23
@${HOST_SH} ckscripts.sh $(
ED
)
26
rm -f *.
ed
*.red *.[oz] *~
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
EnumCastOutOfRangeChecker.cpp
70
EnumValueVector getDeclValuesForEnum(const EnumDecl *
ED
) {
72
std::distance(
ED
->enumerator_begin(),
ED
->enumerator_end()));
73
llvm::transform(
ED
->enumerators(), DeclValues.begin(),
128
const EnumDecl *
ED
= T->castAs<EnumType>()->getDecl();
130
EnumValueVector DeclValues = getDeclValuesForEnum(
ED
);
/src/external/apache2/llvm/dist/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h
270
ExpectedData
ED
;
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaModule.cpp
336
if (auto *
ED
= dyn_cast<ExportDecl>(DC))
337
return
ED
;
571
if (auto *
ED
= getEnclosingExportDecl(D)) {
573
if (
ED
->hasBraces())
574
Diag(
ED
->getLocation(), diag::note_export);
690
auto *
ED
= cast<ExportDecl>(D);
692
ED
->setRBraceLoc(RBraceLoc);
698
ED
->hasBraces() ?
ED
->getBeginLoc() : SourceLocation();
699
for (auto *Child :
ED
->decls())
[
all
...]
SemaLambda.cpp
609
if (EnumDecl *
ED
= findEnumForBlockReturn(CO->getTrueExpr()))
610
if (
ED
== findEnumForBlockReturn(CO->getFalseExpr()))
611
return
ED
;
651
EnumDecl *
ED
= findEnumForBlockReturn(*i);
652
if (!
ED
) return nullptr;
656
if (findEnumForBlockReturn(*i) !=
ED
)
661
if (!
ED
->hasNameForLinkage()) return nullptr;
663
return
ED
;
744
const EnumDecl *
ED
= findCommonEnumForBlockReturns(CSI.Returns);
745
if (
ED
) {
[
all
...]
SemaStmt.cpp
1119
const EnumDecl *
ED
,
1124
if (!
ED
->isClosed())
1131
QualType EnumType = S.Context.getTypeDeclType(
ED
);
1138
if (
ED
->hasAttr<FlagEnumAttr>())
1139
return !S.IsValueInFlagEnum(
ED
, Val, false);
1465
const EnumDecl *
ED
= ET->getDecl();
1470
for (auto *EDI :
ED
->enumerators()) {
1483
if (ShouldDiagnoseSwitchCaseNotInEnum(*this,
ED
, CaseExpr, EI, EIEnd,
1494
if (ShouldDiagnoseSwitchCaseNotInEnum(*this,
ED
, CaseExpr, EI, EIEnd,
1504
if (ShouldDiagnoseSwitchCaseNotInEnum(*this,
ED
, CaseExpr, EI, EIEnd
[
all
...]
SemaType.cpp
8434
} else if (auto *
ED
= dyn_cast<EnumDecl>(D)) {
8435
if (auto *Pattern =
ED
->getTemplateInstantiationPattern())
8436
ED
= Pattern;
8437
if (OnlyNeedComplete && (
ED
->isFixed() || getLangOpts().MSVCCompat)) {
8444
for (auto *Redecl :
ED
->redecls()) {
8453
D =
ED
->getDefinition();
8994
EnumDecl *
ED
= BaseType->castAs<EnumType>()->getDecl();
8995
assert(
ED
&& "EnumType has no EnumDecl");
8997
DiagnoseUseOfDecl(
ED
, Loc);
8999
Underlying =
ED
->getIntegerType()
[
all
...]
SemaDecl.cpp
2321
auto *
ED
= cast<EnumConstantDecl>(D);
2322
assert(EnumScope->isDeclScope(
ED
));
2323
EnumScope->RemoveDecl(
ED
);
2324
IdResolver.RemoveDecl(
ED
);
2325
ED
->getLexicalDeclContext()->removeDecl(
ED
);
14254
if (auto *
ED
= dyn_cast<EnumDecl>(NonParmDecl)) {
14255
for (auto *EI :
ED
->enumerators())
15609
EnumDecl *
ED
= cast<EnumDecl>(New);
15611
ED
->setIntegerTypeSourceInfo(TI)
[
all
...]
SemaChecking.cpp
6024
const EnumDecl *
ED
= Type->castAs<EnumType>()->getDecl();
6025
return !(
ED
&&
6026
Context.typesAreCompatible(
ED
->getPromotionType(), Type));
11436
const EnumConstantDecl *
ED
= nullptr;
11438
ED
= dyn_cast<EnumConstantDecl>(DR->getDecl());
11443
if (
ED
) {
11444
OS << '\'' << *
ED
<< "' (" << Value << ")";
11666
EnumDecl *
ED
= EnumTy->getDecl();
11672
bool SignedEnum =
ED
->getNumNegativeBits() > 0;
11683
ED
->getNumPositiveBits() == FieldWidth)
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
TypoCorrection.h
108
void setQualifierDistance(unsigned
ED
) {
109
QualifierDistance =
ED
;
112
void setCallbackDistance(unsigned
ED
) {
113
CallbackDistance =
ED
;
119
static unsigned NormalizeEditDistance(unsigned
ED
) {
120
if (
ED
> MaximumDistance)
122
return (
ED
+ CharDistanceWeight / 2) / CharDistanceWeight;
132
unsigned
ED
=
136
if (
ED
> MaximumDistance)
138
// Half the CharDistanceWeight is added to
ED
to simulate rounding sinc
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypes.cpp
258
if (const EnumDecl *
ED
= dyn_cast<EnumDecl>(TD)) {
260
if (TypeCache.count(
ED
->getTypeForDecl())) {
264
if (!ConvertType(
ED
->getIntegerType())->isIntegerTy(32))
270
DI->completeType(
ED
);
735
const EnumDecl *
ED
= cast<EnumType>(Ty)->getDecl();
736
if (
ED
->isCompleteDefinition() ||
ED
->isFixed())
737
return ConvertType(
ED
->getIntegerType());
CGDebugInfo.cpp
2258
void CGDebugInfo::completeType(const EnumDecl *
ED
) {
2261
QualType Ty = CGM.getContext().getEnumType(
ED
);
3047
const EnumDecl *
ED
= Ty->getDecl();
3051
if (!
ED
->getTypeForDecl()->isIncompleteType()) {
3052
Size = CGM.getContext().getTypeSize(
ED
->getTypeForDecl());
3053
Align = getDeclAlignIfRequired(
ED
, CGM.getContext());
3059
DebugTypeExtRefs &&
ED
->isFromASTFile() &&
ED
->getDefinition();
3063
if (isImportedFromModule || !
ED
->getDefinition()) {
3070
llvm::DIScope *EDContext = getDeclContextDescriptor(
ED
);
[
all
...]
CGExpr.cpp
1631
const EnumDecl *
ED
= ET->getDecl();
1632
llvm::Type *LTy = CGF.ConvertTypeForMem(
ED
->getIntegerType());
1634
unsigned NumNegativeBits =
ED
->getNumNegativeBits();
1635
unsigned NumPositiveBits =
ED
->getNumPositiveBits();
/src/external/apache2/llvm/dist/clang/lib/AST/
MicrosoftMangle.cpp
1074
auto *
ED
= cast<EnumDecl>(TD);
1076
Name +=
ED
->enumerator_begin()->getName();
Decl.cpp
1691
} else if (const auto *
ED
= dyn_cast<EnumDecl>(DC)) {
1699
if (
ED
->isScoped())
1700
OS << *
ED
;
4457
EnumDecl *
ED
= getInstantiatedFromMemberEnum();
4458
while (auto *NewED =
ED
->getInstantiatedFromMemberEnum())
4459
ED
= NewED;
4460
return getDefinitionOrSelf(
ED
);
4476
void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *
ED
,
4479
SpecializationInfo = new (C) MemberSpecializationInfo(
ED
, TSK);
ASTContext.cpp
141
if (const auto *
ED
= dyn_cast<EnumDecl>(D)) {
142
if (
ED
->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
367
if (const auto *
ED
= dyn_cast<EnumDecl>(&D)) {
369
if (const EnumDecl *MemberDecl =
ED
->getInstantiatedFromMemberEnum())
2282
const EnumDecl *
ED
= ET->getDecl();
2284
getTypeInfo(
ED
->getIntegerType()->getUnqualifiedDesugaredType());
2285
if (unsigned AttrAlign =
ED
->getMaxAlignment()) {
/src/external/gpl2/rcs/include/
conf.h
228
#define
ED
"/bin/
ed
" /* name of '
ed
' program (used only if !DIFF3_BIN) */
/src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInstance.cpp
1936
unsigned
ED
= Name.edit_distance((*J)->Name,
1939
if (
ED
<= BestEditDistance) {
1940
if (
ED
< BestEditDistance) {
1942
BestEditDistance =
ED
;
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonConstExtenders.cpp
363
ExtValue(const ExtDesc &
ED
) : ExtValue(
ED
.getOp()) {}
393
OffsetRange getOffsetRange(const ExtDesc &
ED
) const;
404
bool replaceInstrExact(const ExtDesc &
ED
, Register ExtR);
405
bool replaceInstrExpr(const ExtDesc &
ED
, const ExtenderInit &ExtI,
424
friend raw_ostream &operator<< (raw_ostream &OS, const ExtDesc &
ED
);
491
raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtDesc &
ED
) {
492
assert(
ED
.OpNum != -1u);
493
const MachineBasicBlock &MBB = *
ED
.getOp().getParent()->getParent();
497
if (
ED
.Rd.Reg != 0
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterCoalescer.cpp
3314
SlotIndex
ED
, LE;
3320
ED
=
ED
.isValid() ? std::min(
ED
, I->start) : I->start;
3326
if (
ED
.isValid())
3327
NewEnd = std::min(NewEnd,
ED
);
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp
3626
if (EnumDecl *
ED
= dyn_cast<EnumDecl>(Tag)) {
3627
if (!
ED
|| !
ED
->getDeclName().getAsIdentifierInfo())
3630
TagLocation =
ED
->getLocation();
3674
EnumDecl *
ED
= Type->castAs<EnumType>()->getDecl();
3675
if (
ED
->isCompleteDefinition()) {
3677
Result +=
ED
->getName();
3678
if (GlobalDefinedTags.count(
ED
)) {
3685
for (const auto *EC :
ED
->enumerators()) {
Completed in 88 milliseconds
Indexes created Fri Jun 19 00:25:02 UTC 2026