Searched refs:DE (Results 1 - 25 of 81) sorted by relevance

1234

/external/llvm/unittests/Support/
H A DDataExtractorTest.cpp22 DataExtractor DE(StringRef(numberData, sizeof(numberData)-1), false, 8);
23 EXPECT_FALSE(DE.isValidOffsetForDataOfSize(-2U, 5));
27 DataExtractor DE(StringRef(numberData, sizeof(numberData)-1), false, 8);
30 EXPECT_EQ(0x80U, DE.getU8(&offset));
33 EXPECT_EQ(0x8090U, DE.getU16(&offset));
36 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset));
39 EXPECT_EQ(0x8090FFFF80000000ULL, DE.getU64(&offset));
42 EXPECT_EQ(0x8090FFFF80000000ULL, DE.getAddress(&offset));
47 EXPECT_EQ(data, DE.getU32(&offset, data, 2));
54 DE
[all...]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dbuildall.sh3 ./buildpkb.sh de DE gl0
10 ./buildbin.sh de-DE gl0
H A Dbuildpkb.sh44 if [ $2 = "DE" ]; then
107 elif [ $LANG = "de-DE" ]; then
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DRegionCode.java35 static final String DE = "DE"; field in class:RegionCode
H A DPhoneNumberMatcherTest.java55 doTestFindInContext("123/45678", RegionCode.DE);
364 new NumberTest("10/12/82", RegionCode.DE),
399 new NumberTest("+494949-4-94", RegionCode.DE), // National number in wrong format
415 new NumberTest("0800-2491234", RegionCode.DE),
431 new NumberTest("+494949 49", RegionCode.DE),
432 new NumberTest("+49-49-34", RegionCode.DE),
433 new NumberTest("+49-4931-49", RegionCode.DE),
434 new NumberTest("04931-49", RegionCode.DE), // With National Prefix
435 new NumberTest("+49-494949", RegionCode.DE), // One group with country code
436 new NumberTest("+49-494949 ext. 49", RegionCode.DE),
[all...]
/external/clang/test/SemaCXX/
H A Dfor-range-dereference.cpp61 DeletedEnd DE; local
62 for (auto i : DE) { } // expected-error{{attempt to use a deleted function}} \
/external/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp56 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI)
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp197 DI = (*HI)->Data.begin(), DE = (*HI)->Data.end();
198 DI != DE; ++DI) {
246 DE = EI->second.end();
247 DI != DE; ++DI)
259 DI = Data.begin(), DE = Data.end(); DI != DE; ++DI)
H A DAsmPrinter.cpp105 DD = 0; DE = 0; MMI = 0; LI = 0;
112 assert(DD == 0 && DE == 0 && "Debug/EH info didn't get finalized");
202 DE = new DwarfCFIException(this);
205 DE = new ARMException(this);
208 DE = new Win64Exception(this);
471 if (DE) {
473 DE->BeginFunction(MF);
787 if (DE) {
789 DE->EndFunction();
882 if (DE) {
[all...]
/external/clang/include/clang/Analysis/Visitors/
H A DCFGRecStmtDeclVisitor.h46 for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end();
47 DI != DE; ++DI) {
/external/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp259 DI = MaybeDeadCopies.begin(), DE = MaybeDeadCopies.end();
260 DI != DE; ++DI) {
297 DI = MaybeDeadCopies.begin(), DE = MaybeDeadCopies.end();
298 DI != DE; ++DI) {
H A DPHIElimination.cpp179 DE = MRI->def_end(); DI != DE; ++DI)
/external/clang/lib/ARCMigrate/
H A DPlistReporter.cpp149 DI = diags.begin(), DE = diags.end(); DI != DE; ++DI) {
H A DTransAutoreleasePool.cpp57 if (DeclRefExpr *DE = dyn_cast<DeclRefExpr>(instance)) {
58 if (DE->getDecl() == Dcl)
/external/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp116 for (BasicBlock::iterator DI = BB.begin(), DE = BB.end(); DI != DE; ) {
H A DLoopDeletion.cpp211 DE = ChildNodes.end(); DI != DE; ++DI) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp163 DE = dstGenericPrevisit.end(); DI != DE; ++DI) {
H A DPlistDiagnostics.cpp358 DE = Diags.end(); DI != DE; ++DI) {
429 DE = Diags.end(); DI!=DE; ++DI) {
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp925 DE = CacheInfo->NonLocalDeps.end(); DI != DE; ++DI)
946 DE = CacheInfo->NonLocalDeps.end(); DI != DE; ++DI)
1290 for (NonLocalDepInfo::iterator DI = BlockMap.begin(), DE = BlockMap.end();
1291 DI != DE; ++DI)
1379 DE = INLD.first.end(); DI != DE; ++DI) {
1420 for (NonLocalDepInfo::iterator DI = NLPDI.begin(), DE = NLPDI.end();
1421 DI != DE;
[all...]
/external/clang/lib/AST/
H A DStmtDumper.cpp310 for (DeclStmt::decl_iterator DI = Node->decl_begin(), DE = Node->decl_end();
311 DI != DE; ++DI) {
317 if (DI+1 != DE)
/external/openssl/crypto/srp/
H A Dsrp_grps.h66 bn_pack4(35DE,236D,525F,5475),
175 bn_pack4(DBBB,C2DB,04DE,8EF9),
269 bn_pack4(C1D4,DCB2,6026,46DE),
281 bn_pack4(DBBB,C2DB,04DE,8EF9),
407 bn_pack4(C1D4,DCB2,6026,46DE),
419 bn_pack4(DBBB,C2DB,04DE,8EF9),
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp328 /// DE - The dwarf emitter for the jit.
329 OwningPtr<JITDwarfEmitter> DE; member in class:__anon8763::JITEmitter
380 DE.reset(new JITDwarfEmitter(jit));
468 if (DE.get()) DE->setModuleInfo(Info);
983 uint8_t *FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd,
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSKeychainAPIChecker.cpp396 if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(DeallocatorExpr)) {
397 StringRef DeallocatorName = DE->getFoundDecl()->getName();
408 if (DE->getFoundDecl()->getName() != "kCFAllocatorNull") {
H A DCallAndMessageChecker.cpp194 DI = F.FieldChain.begin(), DE = F.FieldChain.end(); DI!=DE;++DI){
H A DDeadStoresChecker.cpp309 for (DeclStmt::const_decl_iterator DI=DS->decl_begin(), DE=DS->decl_end();
310 DI != DE; ++DI) {

Completed in 784 milliseconds

1234