HomeSort by relevance Sort by last modified time
    Searched defs:ED (Results 1 - 13 of 13) sorted by null

  /external/clang/include/clang/Sema/
TypoCorrection.h 81 void setQualifierDistance(unsigned ED) {
82 QualifierDistance = ED;
85 void setCallbackDistance(unsigned ED) {
86 CallbackDistance = ED;
92 static unsigned NormalizeEditDistance(unsigned ED) {
93 if (ED > MaximumDistance)
95 return (ED + CharDistanceWeight / 2) / CharDistanceWeight;
105 unsigned ED =
109 if (ED > MaximumDistance)
111 // Half the CharDistanceWeight is added to ED to simulate rounding sinc
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 241 if (const EnumDecl *ED = dyn_cast<EnumDecl>(TD)) {
243 if (TypeCache.count(ED->getTypeForDecl())) {
247 if (!ConvertType(ED->getIntegerType())->isIntegerTy(32))
534 const EnumDecl *ED = cast<EnumType>(Ty)->getDecl();
535 if (ED->isCompleteDefinition() || ED->isFixed())
536 return ConvertType(ED->getIntegerType());
CGExpr.cpp     [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 126 const EnumDecl* ED = cast<EnumDecl>(DC);
127 if (ED->isCompleteDefinition())
131 Out << *ED;
VerifyDiagnosticConsumer.cpp 244 ExpectedData &ED, Preprocessor &PP,
261 DL = &ED.Errors;
263 DL = &ED.Warnings;
265 DL = &ED.Notes;
343 static void FindExpectedDiags(Preprocessor &PP, ExpectedData &ED, FileID FID) {
366 ParseDirective(&Comment[0], Comment.size(), ED, PP, Tok.getLocation());
474 ExpectedData &ED) {
483 NumProblems += CheckLists(Diags, SourceMgr, "error", ED.Errors,
487 NumProblems += CheckLists(Diags, SourceMgr, "warning", ED.Warnings,
491 NumProblems += CheckLists(Diags, SourceMgr, "note", ED.Notes
    [all...]
CompilerInstance.cpp     [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 46 ED, FD, EA, FA,
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 868 const EnumDecl *ED = ET->getDecl();
875 for (EnumDecl::enumerator_iterator EDI = ED->enumerator_begin();
876 EDI != ED->enumerator_end(); ++EDI) {
    [all...]
SemaLookup.cpp     [all...]
SemaType.cpp     [all...]
SemaDecl.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]

Completed in 222 milliseconds