| /src/bin/ed/test/ |
| mkscripts.sh | 4 # This script generates ed test scripts (.ed) from .t files 7 ED=$1 8 [ ! -x $ED ] && { echo "$ED: cannot execute"; exit 1; } 16 # echo "$ED - <<\EOT" 21 # ) >$base.ed 22 # chmod +x $base.ed 24 # use of ed but the point is that it can be done... 25 base=`$ED - \!"echo $i" <<-EO [all...] |
| 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] *~
|
| ckscripts.sh | 4 # This script runs the .ed scripts generated by mkscripts.sh 9 ED=$1 10 [ ! -x $ED ] && { echo "$ED: cannot execute"; exit 1; } 22 for i in *.ed; do 25 base=`$ED - \!"echo $i" <<-EOF 28 if $base.ed; then
|
| /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/sys/arch/mips/cavium/dev/ |
| octeon_cop2var.h | 136 #define __octeon_cop2_aes_ed_16_au_vaddr64(ed, ED, au, AU) \ 138 octeon_cop2_aes_##ed##_16_##au##_vaddr64(uint64_t d, uint64_t s) \ 146 CNASM_MT2(tmp0, CVM_MT_AES_##ED##0, 0) \ 147 CNASM_MT2(tmp1, CVM_MT_AES_##ED##1, 0) \ 159 #define __octeon_cop2_aes_ed_16_au_ptr(ed, ED, au, AU, ptr) \ 161 octeon_cop2_aes_##ed##_16_##au(ptr d, ptr s) \ 163 octeon_cop2_aes_##ed##_16_##au##_vaddr64((intptr_t)d, (intptr_t)s); \ 166 #define __octeon_cop2_aes_ed_16_au(ed, ED, au, AU) [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/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/clang/lib/Frontend/ |
| VerifyDiagnosticConsumer.cpp | 405 static bool ParseDirective(StringRef S, ExpectedData *ED, SourceManager &SM, 460 D.DL = ED ? &ED->Errors : nullptr; 462 D.DL = ED ? &ED->Warnings : nullptr; 464 D.DL = ED ? &ED->Remarks : nullptr; 466 D.DL = ED ? &ED->Notes : nullptr; 783 ParseDirective(C, &ED, SM, &PP, CommentBegin, Status, *Markers) [all...] |
| /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...] |
| JumpDiagnostics.cpp | 602 if (auto *ED = dyn_cast<OMPExecutableDirective>(S)) { 603 if (!ED->isStandaloneDirective()) { 608 ED->getStructuredBlock()->getBeginLoc()); 609 BuildScopeInformation(ED->getStructuredBlock(), NewParentScope);
|
| /src/external/gpl2/rcs/dist/src/ |
| merger.c | 140 if (run(fileno(f), (char*)0, ED, "-", a[0], (char*)0))
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/ |
| USRLocFinder.cpp | 308 if (const auto *ED = 310 if (ED->isScoped()) 312 Decl = ED; 474 if (const auto *ED = 476 return ED;
|
| /src/external/apache2/llvm/dist/clang/lib/Index/ |
| IndexingContext.cpp | 162 } else if (const auto *ED = dyn_cast<EnumDecl>(D)) { 163 if (ED->getInstantiatedFromMemberEnum()) 164 TKind = ED->getTemplateSpecializationKind(); 225 } else if (const auto *ED = dyn_cast<EnumDecl>(D)) { 226 return ED->getInstantiatedFromMemberEnum(); 239 if (const auto *ED = dyn_cast<EnumDecl>(ECD->getDeclContext())) { 240 if (const EnumDecl *Pattern = ED->getInstantiatedFromMemberEnum()) {
|
| /src/external/gpl2/rcs/dist/ |
| configure | 741 # Extract the first word of "ed", so it can be a program name with args. 742 set dummy ed; ac_word=$2 747 case "$ED" in 749 ac_cv_path_ED="$ED" # Let the user override the test with a path. 761 test -z "$ac_cv_path_ED" && ac_cv_path_ED="ed" 765 ED="$ac_cv_path_ED" 766 if test -n "$ED"; then 767 echo "$ac_t""$ED" 1>&6 1146 s%@ED@%$ED% [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| UninitializedValues.cpp | 293 void VisitOMPExecutableDirective(OMPExecutableDirective *ED); 399 void ClassifyRefs::VisitOMPExecutableDirective(OMPExecutableDirective *ED) { 400 for (Stmt *S : OMPExecutableDirective::used_clauses_children(ED->clauses())) 494 void VisitOMPExecutableDirective(OMPExecutableDirective *ED); 699 OMPExecutableDirective *ED) { 700 for (Stmt *S : OMPExecutableDirective::used_clauses_children(ED->clauses())) { 704 if (!ED->isStandaloneDirective()) 705 Visit(ED->getStructuredBlock());
|
| ReachableCode.cpp | 273 if (const EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) 274 return isConfigurationValue(ED->getInitExpr(), PP);
|
| /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...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| VerifyDiagnosticConsumer.h | 270 ExpectedData ED;
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReaderDecl.cpp | 332 void VisitEnumDecl(EnumDecl *ED); 740 void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) { 741 VisitTagDecl(ED); 743 ED->setIntegerTypeSourceInfo(TI); 745 ED->setIntegerType(Record.readType()); 746 ED->setPromotionType(Record.readType()); 747 ED->setNumPositiveBits(Record.readInt()); 748 ED->setNumNegativeBits(Record.readInt()); 749 ED->setScoped(Record.readInt()); 750 ED->setScopedUsingClassTag(Record.readInt()) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| X86RecognizableInstr.h | 72 MAP(ED, 109) \
|
| /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/AST/ |
| JSONNodeDumper.cpp | 816 void JSONNodeDumper::VisitEnumDecl(const EnumDecl *ED) { 817 VisitNamedDecl(ED); 818 if (ED->isFixed()) 819 JOS.attribute("fixedUnderlyingType", createQualType(ED->getIntegerType())); 820 if (ED->isScoped()) 822 ED->isScopedUsingClassTag() ? "class" : "struct");
|
| /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| ObjCMT.cpp | 1872 else if (const EnumDecl *ED = dyn_cast<EnumDecl>(*D)) { 1875 if (!canModify(ED)) 1880 if (migrateNSEnumDecl(Ctx, ED, TD) && TD) 1884 migrateNSEnumDecl(Ctx, ED, /*TypedefDecl */nullptr); 1894 if (const EnumDecl *ED = dyn_cast<EnumDecl>(*N)) { 1895 if (canModify(ED)) { 1899 if (migrateNSEnumDecl(Ctx, ED, TDF)) { 1905 if (migrateNSEnumDecl(Ctx, ED, TD)) {
|