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

  /external/clang/lib/Frontend/
LogDiagnosticPrinter.cpp 41 const LogDiagnosticPrinter::DiagEntry &DE) {
45 EmitString(OS, getLevelName(DE.DiagnosticLevel)) << '\n';
46 if (!DE.Filename.empty()) {
49 EmitString(OS, DE.Filename) << '\n';
51 if (DE.Line != 0) {
54 EmitInteger(OS, DE.Line) << '\n';
56 if (DE.Column != 0) {
59 EmitInteger(OS, DE.Column) << '\n';
61 if (!DE.Message.empty()) {
64 EmitString(OS, DE.Message) << '\n'
    [all...]
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 61 DeletedEnd DE;
62 for (auto i : DE) { } // expected-error{{attempt to use a deleted function}} \
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
AsmPrinter.h 116 /// DE - If the target supports dwarf exception info, this pointer is
118 DwarfException *DE;
  /external/clang/unittests/Lex/
PPCallbacksTest.cpp 142 const DirectoryEntry *DE = FileMgr.getDirectory(SearchPath);
143 DirectoryLookup DL(DE, SrcMgr::C_User, false);
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
RegionCode.java 42 static final String DE = "DE";
  /toolchain/binutils/binutils-2.27/opcodes/
rl78-decode.c 114 #define DE() rl78->op[0].use_es = 1
429 DE(); SE();
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86RecognizableInstr.cpp 68 DC = 7, DD = 8, DE = 9, DF = 10,
884 case X86Local::DE:
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
RichInputMethodSubtypeTests.java 51 RichInputMethodSubtype DE;
105 DE = new RichInputMethodSubtype(mRichImm.findSubtypeByLocaleAndKeyboardLayoutSet(
211 // de qwertz F Deutsch Deutsch
219 // de qwerty T Deutsch Deutsch
235 assertEquals("de", "Deutsch", DE.getFullDisplayName());
247 assertEquals("de", "Deutsch", DE.getMiddleDisplayName());
268 assertEquals("de qwerty", "Deutsch", DE_QWERTY.getFullDisplayName());
276 assertEquals("de qwerty", "Deutsch", DE_QWERTY.getMiddleDisplayName())
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
SubtypeLocaleUtilsTests.java 48 InputMethodSubtype DE;
102 DE = mRichImm.findSubtypeByLocaleAndKeyboardLayoutSet(
169 assertEquals("de", "qwertz", SubtypeLocaleUtils.getKeyboardLayoutSetName(DE));
175 assertEquals("de qwerty", "qwerty", SubtypeLocaleUtils.getKeyboardLayoutSetName(DE_QWERTY));
210 // de qwertz F German
218 // de qwerty T German (QWERTY)
242 assertEquals("de", "German",
243 SubtypeLocaleUtils.getSubtypeDisplayNameInSystemLocale(DE));
273 assertEquals("de qwerty", "German (QWERTY)"
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 229 DE = GroupDiags.end();
230 DI != DE; ++DI) {
259 DE = GroupDiags.end();
260 assert(DI != DE && "We only care about groups with multiple uses!");
273 for (++DI; DI != DE; ++DI) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 757 SDDbgInfo::DbgIterator DE = DAG->DbgEnd();
760 for (unsigned i = 0, e = Orders.size(); i != e && DI != DE; ++i) {
766 for (; DI != DE &&
787 while (DI != DE) {
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp 324 /// DE - The dwarf emitter for the jit.
325 OwningPtr<JITDwarfEmitter> DE;
376 DE.reset(new JITDwarfEmitter(jit));
467 if (DE.get()) DE->setModuleInfo(Info);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86BaseInfo.h 288 DE = 9 << Op0Shift, DF = 10 << Op0Shift,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueBaseLib.h     [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 953 auto *DE = dyn_cast<RedirectingDirectoryEntry>(E);
954 assert(DE && "Should be a directory");
957 llvm::make_range(DE->contents_begin(), DE->contents_end()))
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 614 const CXXDeleteExpr *DE = Dtor.getDeleteExpr();
615 const Stmt *Arg = DE->getArgument();
621 QualType DTy = DE->getDestroyedType();
626 PostImplicitCall PP(Dtor, DE->getLocStart(), LCtx);
632 VisitCXXDestructor(DE->getDestroyedType(),
634 DE, /*IsBase=*/ false,
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
BaseLib.h     [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp     [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/
Cpuid.h 364 /// CR4.DE for controlling the feature, and optional trapping of accesses to
367 UINT32 DE:1;
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 443 CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc);
444 CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc);
622 void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) {
623 B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext());
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-route53/1.11.18/
aws-java-sdk-route53-1.11.18.jar 

Completed in 874 milliseconds