Home
last modified time | relevance | path

Searched refs:IT (Results 1 – 25 of 514) sorted by relevance

12345678910>>...21

/external/llvm/test/MC/ARM/
Dv8_IT_manual.s11 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
14 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
18 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
30 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
34 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
42 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
46 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
50 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
59 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
71 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
[all …]
Dthumb2-narrow-dp.ll44 IT EQ
46 IT EQ
48 IT EQ
50 IT EQ
52 IT EQ
54 IT EQ
56 IT EQ
58 IT EQ
60 IT EQ
62 IT EQ
[all …]
Dthumb2-diagnostics.s4 @ Ill-formed IT block instructions.
13 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'le', but expected 'eq'
16 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'al', but expected 'ne'
19 @ CHECK-ERRORS: error: instructions in IT block must be predicable
22 @ CHECK-ERRORS: error: too many conditions on IT instruction
25 @ CHECK-ERRORS: error: illegal IT block condition mask 'tfe'
28 @ CHECK-ERRORS: error: predicated instructions must be in IT block
Ddeprecated-v8.s31 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
36 @ CHECK-ARMV8: warning: applying IT instruction to more than one subsequent instruction is deprecat…
37 @ CHECK-THUMBV8: warning: applying IT instruction to more than one subsequent instruction is deprec…
41 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
45 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
49 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
Dthumb2-branches.s46 @ unconditional branches with width narrow suffix in IT block
60 @ unconditional branches with wide suffix in IT block
125 @ on whether it is in an IT block or not
189 @ unconditional branches with width narrow suffix in IT block
203 @ unconditional branches with wide suffix in IT block
268 @ on whether it is in an IT block or not
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/
Dit-IT_cm0_sg.txt1 # collection of it-IT cm0 siggen knowledge bases
11 FST_SPHO_2 "../pkb/it-IT/it-IT_cm0_kfst_spho2.pkb"
12 DT_DUR "../pkb/it-IT/it-IT_cm0_kdt_dur.pkb"
13 DT_LFZ1 "../pkb/it-IT/it-IT_cm0_kdt_lfz1.pkb"
14 DT_LFZ2 "../pkb/it-IT/it-IT_cm0_kdt_lfz2.pkb"
15 DT_LFZ3 "../pkb/it-IT/it-IT_cm0_kdt_lfz3.pkb"
16 DT_LFZ4 "../pkb/it-IT/it-IT_cm0_kdt_lfz4.pkb"
17 DT_LFZ5 "../pkb/it-IT/it-IT_cm0_kdt_lfz5.pkb"
18 DT_MGC1 "../pkb/it-IT/it-IT_cm0_kdt_mgc1.pkb"
19 DT_MGC2 "../pkb/it-IT/it-IT_cm0_kdt_mgc2.pkb"
[all …]
Dit-IT_ta.txt1 # collection of it-IT textana knowledge bases
12 TPP_MAIN "../pkb/it-IT/it-IT_kpr.pkb"
13 TAB_GRAPHS "../pkb/it-IT/it-IT_ktab_graphs.pkb"
14 TAB_PHONES "../pkb/it-IT/it-IT_ktab_phones.pkb"
15 TAB_POS "../pkb/it-IT/it-IT_ktab_pos.pkb"
16 LEX_MAIN "../pkb/it-IT/it-IT_klex.pkb"
17 DT_POSP "../pkb/it-IT/it-IT_kdt_posp.pkb"
18 DT_POSD "../pkb/it-IT/it-IT_kdt_posd.pkb"
19 DT_G2P "../pkb/it-IT/it-IT_kdt_g2p.pkb"
20 FST_WPHO_1 "../pkb/it-IT/it-IT_kfst_wpho1.pkb"
[all …]
Dit-IT_dbg.txt1 # collection of it-IT dbg knowledge bases
12 DBG "../pkb/it-IT/it-IT_kdbg.pkb"
/external/svox/pico/tests/data/
Dxsampa_pico_man_it-IT.txt5 # Italian (it-IT)
19 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;baN.ko"/>.</speak>
22 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;da.n:o"/>.</speak>
25 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;gam.ba"/>.</speak>
28 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;ka:.ne"/>.</speak>
31 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;pa:.ne"/>.</speak>
34 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;tan.to"/>.</speak>
37 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;go.b:o"/>.</speak>
40 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;ka.d:e"/>.</speak>
43 <speak xml:lang="it-IT"> I test <phoneme alphabet="xsampa" ph="&#34;fu.g:a"/>.</speak>
[all …]
/external/clang/test/OpenMP/
Dparallel_for_loop_messages.cpp447 template <typename IT, int ST>
450 int dotest_lt(IT begin, IT end) { in dotest_lt()
454 for (IT I = begin; I < end; I = I + ST) { in dotest_lt()
460 for (IT I = begin; I <= end; I += ST) { in dotest_lt()
464 for (IT I = begin; I < end; ++I) { in dotest_lt()
469 static IT step() { in step()
470 return IT(ST); in step()
473 template <typename IT, int ST = 0>
474 int dotest_gt(IT begin, IT end) { in dotest_gt()
478 for (IT I = begin; I >= end; I = I + ST) { in dotest_gt()
[all …]
Dsimd_loop_messages.cpp440 template <typename IT, int ST> class TC {
442 int dotest_lt(IT begin, IT end) { in dotest_lt()
446 for (IT I = begin; I < end; I = I + ST) { in dotest_lt()
452 for (IT I = begin; I <= end; I += ST) { in dotest_lt()
456 for (IT I = begin; I < end; ++I) { in dotest_lt()
461 static IT step() { in step()
462 return IT(ST); in step()
465 template <typename IT, int ST=0> int dotest_gt(IT begin, IT end) { in dotest_gt()
469 for (IT I = begin; I >= end; I = I + ST) { in dotest_gt()
475 for (IT I = begin; I >= end; I += ST) { in dotest_gt()
[all …]
Dfor_loop_messages.cpp522 template <typename IT, int ST>
525 int dotest_lt(IT begin, IT end) { in dotest_lt()
530 for (IT I = begin; I < end; I = I + ST) { in dotest_lt()
537 for (IT I = begin; I <= end; I += ST) { in dotest_lt()
542 for (IT I = begin; I < end; ++I) { in dotest_lt()
547 static IT step() { in step()
548 return IT(ST); in step()
551 template <typename IT, int ST = 0>
552 int dotest_gt(IT begin, IT end) { in dotest_gt()
557 for (IT I = begin; I >= end; I = I + ST) { in dotest_gt()
[all …]
/external/chromium_org/components/autofill/core/browser/
Dautofill_regex_constants.cc.utf826 "|ragione.?sociale" // it-IT
37 "|indirizzo" // it-IT
46 "|indirizzo" // it-IT
55 "|indirizzo2" // it-IT
64 "|indirizzo" // it-IT
71 "|indirizzo[3-9]"; // it-IT
84 "|\\bcap\\b" // it-IT
100 "|localita" // it-IT
126 "|nome.*cart" // it-IT
165 "|scadenza" // it-IT
[all …]
/external/llvm/test/MC/Disassembler/ARM/
Dthumb-fp-armv8.txt15 0xa8 0xbf # IT block
19 0xc8 0xbf # IT block
23 0x08 0xbf # IT block
27 0xb8 0xbf # IT block
119 0xa8 0xbf # IT block
126 0xb8 0xbf # IT block
133 0x08 0xbf # IT block
137 0x68 0xbf # IT block
/external/llvm/tools/llvm-readobj/
DARMEHABIPrinter.h331 void PrintIndexTable(unsigned SectionIndex, const Elf_Shdr *IT) const;
332 void PrintExceptionTable(const Elf_Shdr *IT, const Elf_Shdr *EHT,
392 void PrinterContext<ET>::PrintExceptionTable(const Elf_Shdr *IT, in PrintExceptionTable() argument
461 const Elf_Shdr *IT) const { in PrintIndexTable() argument
462 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(IT); in PrintIndexTable()
478 const unsigned Entries = IT->sh_size / IndexTableEntrySize; in PrintIndexTable()
494 const uint64_t Offset = PREL31(Word0, IT->sh_addr); in PrintIndexTable()
496 if (ErrorOr<StringRef> Name = FunctionAtAddress(IT->sh_link, Offset)) in PrintIndexTable()
518 uint64_t TableEntryOffset = PREL31(Word1, IT->sh_addr); in PrintIndexTable()
521 PrintExceptionTable(IT, EHT, TableEntryOffset); in PrintIndexTable()
[all …]
/external/llvm/lib/Target/
DTargetMachineC.cpp61 for (TargetRegistry::iterator IT = TargetRegistry::begin(), in LLVMGetTargetFromName() local
62 IE = TargetRegistry::end(); IT != IE; ++IT) { in LLVMGetTargetFromName()
63 if (IT->getName() == NameRef) in LLVMGetTargetFromName()
64 return wrap(&*IT); in LLVMGetTargetFromName()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
Dbuildall.sh8 ./buildpkb.sh it IT cm0
15 ./buildbin.sh it-IT cm0
/external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
Dlru_cache_using_std.h103 template <typename IT> void get_keys(IT dst) const { in get_keys()
/external/clang/include/clang/Basic/
DDiagnosticFrontendKinds.td113 def note_fixit_applied : Note<"FIX-IT applied suggested code changes">;
115 "FIX-IT unable to apply suggested code changes in a macro">;
117 "FIX-IT unable to apply suggested code changes">;
118 def note_fixit_unfixed_error : Note<"FIX-IT detected an error it cannot fix">;
120 "FIX-IT detected errors it could not fix; no output will be generated">;
/external/llvm/lib/Target/AArch64/
DAArch64CollectLOH.cpp430 for (auto &IT : Out) in finitReachingDef() local
431 delete[] IT.second; in finitReachingDef()
432 for (auto &IT : In) in finitReachingDef() local
433 delete[] IT.second; in finitReachingDef()
434 for (auto &IT : ReachableUses) in finitReachingDef() local
435 delete[] IT.second; in finitReachingDef()
436 for (auto &IT : Gen) in finitReachingDef() local
437 delete[] IT.second; in finitReachingDef()
/external/llvm/include/llvm/ADT/
Dilist.h435 NodeTy *remove(iterator &IT) {
436 assert(IT != end() && "Cannot remove end of list!");
437 NodeTy *Node = &*IT;
446 IT = NextNode;
459 NodeTy *remove(const iterator &IT) {
460 iterator MutIt = IT;
/external/icu/icu4c/source/data/region/
Dbo.txt19 IT{"ཨི་ཀྲར་ལི་"}
Dii.txt20 IT{"ꑴꄊꆺ"}
Daz_Cyrl.txt21 IT{"Италија"}
/external/chromium_org/third_party/icu/source/data/region/
Dbo.txt18 IT{"ཨི་ཀྲར་ལི་"}

12345678910>>...21