Searched refs:IT (Results 1 - 25 of 87) sorted by relevance

1234

/external/llvm/lib/Support/
H A DOptions.cpp21 for (auto IT = Options.begin(); IT != Options.end(); ++IT)
22 delete IT->second;
/external/llvm/test/MC/ARM/
H A 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 bloc
[all...]
H A 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 deprecated
37 @ CHECK-THUMBV8: warning: applying IT instruction to more than one subsequent instruction is deprecated
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
H A Dthumb-load-store-multiple.s25 @ CHECK: error: instruction must be outside of IT block or the last instruction in an IT block
39 @ CHECK: error: instruction must be outside of IT block or the last instruction in an IT block
85 @ CHECK: error: instruction must be outside of IT block or the last instruction in an IT block
H A Dthumb2-diagnostics.s7 @ Ill-formed IT block instructions.
16 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'le', but expected 'eq'
19 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'al', but expected 'ne'
22 @ CHECK-ERRORS: error: instructions in IT block must be predicable
25 @ CHECK-ERRORS: error: too many conditions on IT instruction
28 @ CHECK-ERRORS: error: illegal IT block condition mask 'tfe'
31 @ CHECK-ERRORS: error: predicated instructions must be in IT block
/external/doclava/res/assets/templates/
H A Ddoctype.cs3 <!-- ################ IT IS GENERATED. ################# -->
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A DPR27684_contains_ref_to_incomplete_type.pass.cpp34 using IT = IncompleteType;
36 using Tup = std::tuple<const IT&, const IT&>;
42 using Tup = std::tuple<const IT&, const IT&>;
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dbuildall.sh8 ./buildpkb.sh it IT cm0
15 ./buildbin.sh it-IT cm0
/external/swiftshader/third_party/LLVM/test/MC/ARM/
H A 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
/external/libcxx/test/std/utilities/any/any.class/any.cons/
H A Din_place_type.pass.cpp174 using IT = std::in_place_type_t<I>;
175 static_assert(!test_convertible<std::any, IT, int>(), "");
176 static_assert(std::is_constructible<std::any, IT, int>::value, "");
177 static_assert(!test_convertible<std::any, IT, int, int, int>(), "");
178 static_assert(std::is_constructible<std::any, IT, int, int, int>::value, "");
179 static_assert(!test_convertible<std::any, IT, std::initializer_list<int>&, int>(), "");
180 static_assert(std::is_constructible<std::any, IT, std::initializer_list<int>&, int>::value, "");
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A Dilist.h264 pointer remove(iterator &IT) { argument
265 pointer Node = &*IT++;
271 pointer remove(const iterator &IT) { argument
272 iterator MutIt = IT;
276 pointer remove(pointer IT) { return remove(iterator(IT)); } argument
277 pointer remove(reference IT) { return remove(iterator(IT)); } argument
285 iterator erase(pointer IT) { return erase(iterator(IT)); } argument
286 erase(reference IT) argument
[all...]
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
H A DRegionCode.java46 static final String IT = "IT"; field in class:RegionCode
/external/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp28 const auto IT = AllocaNumbering.find(AI); local
29 assert(IT != AllocaNumbering.end());
30 return LiveRanges[IT->second];
191 for (auto IT : BlockLiveness) {
192 BasicBlock *BB = IT.getFirst();
193 BlockLifetimeInfo &BlockInfo = IT.getSecond();
245 for (auto IT : BlockLiveness) {
246 BasicBlock *BB = IT.getFirst();
H A DSafeStackLayout.cpp31 for (auto &IT : ObjectOffsets) {
32 OS << " at " << IT.getSecond() << ": " << *IT.getFirst() << "\n";
/external/ply/ply/example/BASIC/
H A Dsears.bas2 2 REM :: A PIECE OF PAPER SO THAT IT IS TALLER THAN THE
/external/clang/test/OpenMP/
H A Dfor_loop_messages.cpp595 template <typename IT, int ST>
598 int dotest_lt(IT begin, IT end) {
603 for (IT I = begin; I < end; I = I + ST) {
610 for (IT I = begin; I <= end; I += ST) {
615 for (IT I = begin; I < end; ++I) {
620 static IT step() {
621 return IT(ST);
624 template <typename IT, int ST = 0>
625 int dotest_gt(IT begi
[all...]
H A Dfor_simd_loop_messages.cpp559 template <typename IT, int ST>
562 int dotest_lt(IT begin, IT end) {
567 for (IT I = begin; I < end; I = I + ST) {
574 for (IT I = begin; I <= end; I += ST) {
579 for (IT I = begin; I < end; ++I) {
584 static IT step() {
585 return IT(ST);
588 template <typename IT, int ST = 0>
589 int dotest_gt(IT begi
[all...]
H A Dparallel_for_loop_messages.cpp481 template <typename IT, int ST>
484 int dotest_lt(IT begin, IT end) {
488 for (IT I = begin; I < end; I = I + ST) {
494 for (IT I = begin; I <= end; I += ST) {
498 for (IT I = begin; I < end; ++I) {
503 static IT step() {
504 return IT(ST);
507 template <typename IT, int ST = 0>
508 int dotest_gt(IT begi
[all...]
H A Dparallel_for_simd_loop_messages.cpp482 template <typename IT, int ST>
485 int dotest_lt(IT begin, IT end) {
489 for (IT I = begin; I < end; I = I + ST) {
495 for (IT I = begin; I <= end; I += ST) {
499 for (IT I = begin; I < end; ++I) {
504 static IT step() {
505 return IT(ST);
508 template <typename IT, int ST = 0>
509 int dotest_gt(IT begi
[all...]
H A Dsimd_loop_messages.cpp471 template <typename IT, int ST> class TC {
473 int dotest_lt(IT begin, IT end) {
477 for (IT I = begin; I < end; I = I + ST) {
483 for (IT I = begin; I <= end; I += ST) {
487 for (IT I = begin; I < end; ++I) {
492 static IT step() {
493 return IT(ST);
496 template <typename IT, int ST=0> int dotest_gt(IT begi
[all...]
H A Dtarget_parallel_for_loop_messages.cpp481 template <typename IT, int ST>
484 int dotest_lt(IT begin, IT end) {
488 for (IT I = begin; I < end; I = I + ST) {
494 for (IT I = begin; I <= end; I += ST) {
498 for (IT I = begin; I < end; ++I) {
503 static IT step() {
504 return IT(ST);
507 template <typename IT, int ST = 0>
508 int dotest_gt(IT begi
[all...]
H A Dtarget_parallel_for_simd_loop_messages.cpp481 template <typename IT, int ST>
484 int dotest_lt(IT begin, IT end) {
488 for (IT I = begin; I < end; I = I + ST) {
494 for (IT I = begin; I <= end; I += ST) {
498 for (IT I = begin; I < end; ++I) {
503 static IT step() {
504 return IT(ST);
507 template <typename IT, int ST = 0>
508 int dotest_gt(IT begi
[all...]
H A Dtaskloop_loop_messages.cpp579 template <typename IT, int ST>
582 int dotest_lt(IT begin, IT end) {
587 for (IT I = begin; I < end; I = I + ST) {
594 for (IT I = begin; I <= end; I += ST) {
599 for (IT I = begin; I < end; ++I) {
604 static IT step() {
605 return IT(ST);
608 template <typename IT, int ST = 0>
609 int dotest_gt(IT begi
[all...]
/external/llvm/lib/Analysis/
H A DDemandedBits.cpp282 if (IntegerType *IT = dyn_cast<IntegerType>(I.getType())) {
284 AliveBits[&I] = APInt(IT->getBitWidth(), 0);
294 if (IntegerType *IT = dyn_cast<IntegerType>(J->getType()))
295 AliveBits[J] = APInt::getAllOnesValue(IT->getBitWidth());
326 if (IntegerType *IT = dyn_cast<IntegerType>(I->getType())) {
327 unsigned BitWidth = IT->getBitWidth();
/external/libcxx/test/std/utilities/any/any.class/any.modifiers/
H A Demplace.pass.cpp196 template <class T, class IT, class ...Args>
199 {std::declval<IT>(), std::declval<IT>(), std::declval<IT>()},

Completed in 827 milliseconds

1234