Home
last modified time | relevance | path

Searched refs:il (Results 1 – 25 of 141) sorted by relevance

123456

/external/chromium_org/third_party/webrtc/base/
Dbase64.cc30 static const unsigned char il = 0xFF; // Illegal base64 character variable
43 il,il,il,il,il,il,il,il,il,sp, // 0 - 9
44 sp,sp,sp,sp,il,il,il,il,il,il, // 10 - 19
45 il,il,il,il,il,il,il,il,il,il, // 20 - 29
46 il,il,sp,il,il,il,il,il,il,il, // 30 - 39
47 il,il,il,62,il,il,il,63,52,53, // 40 - 49
48 54,55,56,57,58,59,60,61,il,il, // 50 - 59
49 il,pd,il,il,il, 0, 1, 2, 3, 4, // 60 - 69
52 25,il,il,il,il,il,il,26,27,28, // 90 - 99
55 49,50,51,il,il,il,il,il,il,il, // 120 - 129
[all …]
/external/libcxx/test/language.support/support.initlist/support.initlist.range/
Dbegin_end.pass.cpp21 A(std::initializer_list<int> il) in A()
23 const int* b = begin(il); in A()
24 const int* e = end(il); in A()
25 assert(il.size() == 3); in A()
26 assert(e - b == il.size()); in A()
36 constexpr B(std::initializer_list<int> il) in B()
38 const int* b = begin(il); in B()
39 const int* e = end(il); in B()
40 assert(il.size() == 3); in B()
41 assert(e - b == il.size()); in B()
/external/libcxx/test/language.support/support.initlist/support.initlist.access/
Daccess.pass.cpp23 A(std::initializer_list<int> il) in A()
25 const int* b = il.begin(); in A()
26 const int* e = il.end(); in A()
27 assert(il.size() == 3); in A()
28 assert(e - b == il.size()); in A()
38 constexpr B(std::initializer_list<int> il) in B()
40 const int* b = il.begin(); in B()
41 const int* e = il.end(); in B()
42 assert(il.size() == 3); in B()
43 assert(e - b == il.size()); in B()
/external/libcxx/test/utilities/optional/optional.object/optional.object.assign/
Demplace_initializer_list.pass.cpp32 constexpr X(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) {} in X() argument
48 constexpr Y(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) {} in Y() argument
62 constexpr Z(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) in Z() argument
/external/eigen/Eigen/src/Eigenvalues/
DComplexSchur.h395 Index il;
418 il = iu-1;
419 while(il > 0 && !subdiagonalEntryIsNeglegible(il-1))
421 --il;
430 rot.makeGivens(m_matT.coeff(il,il) - shift, m_matT.coeff(il+1,il));
431 m_matT.rightCols(m_matT.cols()-il).applyOnTheLeft(il, il+1, rot.adjoint());
432 m_matT.topRows((std::min)(il+2,iu)+1).applyOnTheRight(il, il+1, rot);
433 if(computeU) m_matU.applyOnTheRight(il, il+1, rot);
435 for(Index i=il+1 ; i<iu ; i++)
DRealSchur.h240 …void initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHo…
241 …void performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseh…
289 Index il = findSmallSubdiagEntry(iu, norm); in computeFromHessenberg() local
292 if (il == iu) // One root found in computeFromHessenberg()
300 else if (il == iu-1) // Two roots found in computeFromHessenberg()
315 initFrancisQRStep(il, iu, shiftInfo, im, firstHouseholderVector); in computeFromHessenberg()
316 performFrancisQRStep(il, im, iu, computeU, firstHouseholderVector, workspace); in computeFromHessenberg()
441 inline void RealSchur<MatrixType>::initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo,… in initFrancisQRStep() argument
446 for (im = iu-2; im >= il; --im) in initFrancisQRStep()
454 if (im == il) { in initFrancisQRStep()
[all …]
/external/chromium_org/tools/traceline/traceline/scripts/
Dheap.js46 for (var i = 0, il = this.sorted.length; i < il; ++i) {
56 for (var i = 0, il = z.length; i < il; ++i) {
66 for (var i = 0, il = datas.length; i < il; ++i) {
/external/chromium_org/third_party/icu/source/data/rbnf/
Dmt.txt169 "11: \u0127dax-il;",
170 "12: tnax-il;",
171 "13: tlettax-il;",
172 "14: erbatax-il;",
173 "15: \u0127mistax-il;",
174 "16: sittax-il;",
175 "17: sbatax-il;",
176 "18: tmintax-il;",
177 "19: dsatax-il;",
224 "11: \u0127dax-il;",
[all …]
/external/icu/icu4c/source/data/rbnf/
Dmt.txt169 "11: \u0127dax-il;",
170 "12: tnax-il;",
171 "13: tlettax-il;",
172 "14: erbatax-il;",
173 "15: \u0127mistax-il;",
174 "16: sittax-il;",
175 "17: sbatax-il;",
176 "18: tmintax-il;",
177 "19: dsatax-il;",
224 "11: \u0127dax-il;",
[all …]
/external/clang/test/SemaCXX/
Dcxx1y-user-defined-literals.cpp26 complex<long double> operator""il(long double);
27 complex<long double> operator""il(unsigned long long);
42 complex<long double> cld1 = 1il, cld2 = 2.il, cld3 = 0047il;
Dcxx0x-initializer-stdinitializerlist.cpp58 std::initializer_list<int> il = { 1, 2, 3 }; in simple_list() local
132 std::initializer_list<int> il = {1, 2, 3}; // expected-warning{{at the end of the constructor}} member
138 : il{1, 2, 3} // expected-warning{{at the end of the constructor}} in haslist1()
149 std::initializer_list<int> il = {1, 2}; in foo() local
150 g({il, {2, 3}}); in foo()
164 std::initializer_list<const char *> *il = &x; in g() local
/external/libcxx/test/utilities/optional/optional.object/optional.object.ctor/
Dinitializer_list.pass.cpp49 constexpr Y(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) {} in Y() argument
62 constexpr Z(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) in Z() argument
/external/libcxx/test/support/
Dnasty_containers.hpp40 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector() argument
48 void assign(std::initializer_list<value_type> il) { v_.assign(il); } in assign() argument
113 …tor insert(const_iterator pos, std::initializer_list<value_type> il) { return v_.insert(pos, il); } in insert() argument
162 nasty_list(std::initializer_list<value_type> il) : l_(il) {} in nasty_list() argument
168 nasty_list& operator=(std::initializer_list<value_type> il) { l_ = il; return *this; } in operator =() argument
174 void assign(std::initializer_list<value_type> il) { l_.assign(il); } in assign() argument
234 …tor insert(const_iterator pos, std::initializer_list<value_type> il) { return l_.insert(pos, il); } in insert() argument
/external/libcxx/test/numerics/complex.number/complex.literals/
Dliterals.pass.cpp22 static_assert ( std::is_same<decltype( 3.0il ), std::complex<long double>>::value, "" ); in main()
23 static_assert ( std::is_same<decltype( 3il ), std::complex<long double>>::value, "" ); in main()
30 std::complex<long double> c1 = 3.0il; in main()
32 auto c2 = 3il; in main()
Dliterals1.pass.cpp22 std::complex<long double> c1 = 3.0il; in main()
24 auto c2 = 3il; in main()
Dliterals2.pass.cpp22 std::complex<long double> c1 = 3.0il; in main()
24 auto c2 = 3il; in main()
/external/chromium_org/tools/traceline/svgui/
Dtraceline.js233 for (var i = 0, il = json_data.length; i < il; ++i) {
282 for (var i = 0, il = this.threads.length; i < il; ++i) {
394 for (var i = 0, il = threadnames.length; i < il; ++i) {
501 for (var i = 0, il = this.threads.length; i < il; ++i) {
531 for (var i = 0, il = this.threads.length; i < il; ++i) {
660 for (var i = 0, il = stuff.length; i < il; ++i) {
/external/clang/test/CodeGenCXX/
Dcxx0x-initializer-stdinitializerlist.cpp217 std::initializer_list<int> il; member
228 : il{1, 2, 3} in haslist1()
234 std::initializer_list<destroyme1> il; member
240 : il{destroyme1(), destroyme1()} in haslist2()
365 …std::initializer_list<std::initializer_list<int>> &&il = { { 1, 2, 3 }, { 4, k }, { 5, 6, 7, 8 } };
/external/libcxx/test/re/re.regex/re.regex.assign/
DAndroid.mk27 test_name := re/re.regex/re.regex.assign/il
28 test_src := il.pass.cpp
51 test_name := re/re.regex/re.regex.assign/assign.il
52 test_src := assign.il.pass.cpp
/external/emma/core/java12/com/vladium/emma/report/
DIItemAttribute.java109 final IItem il = (IItem) l; in compare() local
112 return il.getName ().compareTo (ig.getName ()); in compare()
177 final IItem il = (IItem) l; in compare() local
180 final double nil = il.getAggregate (m_numeratorAggregateID); in compare()
181 final double dil = il.getAggregate (m_denominatorAggregateID); in compare()
/external/libcxx/test/language.support/support.initlist/support.initlist.cons/
Ddefault.pass.cpp22 std::initializer_list<A> il; in main() local
23 assert(il.size() == 0); in main()
/external/bison/runtime-po/
Dga.po41 msgstr "earr�id chomhr�ire, %s gan choinne, bh�othas ag s�il le %s"
46 msgstr "earr�id chomhr�ire, %s gan choinne, bh�othas ag s�il le %s n� %s"
51 msgstr "earr�id chomhr�ire, %s gan choinne, bh�othas ag s�il le %s n� %s n� %s"
57 "earr�id chomhr�ire, %s gan choinne, bh�othas ag s�il le %s n� %s n� %s n� %s"
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/fr-FR/
Dfr-FR_lexpos.utf99 ADJ_PL "tranquilles" "tR~ak'il(@)(z)"
708 ADJ_SG "tranquille" "tR~ak'il(@)"
937 ADJ_SG^N_ADJ_M_SG "civil" "siv'il"
1622 ADV "s'il-vous-plaît" "silvupl'E"
1833 CARD "mille" "m'il(@)"
2639 N_M_PL "fils" "f'il(z)Þ"
2686 N_M_PL "milles" "m'il(@)(z)Þ"
3274 N_M_SG "‰" "paR-m'il"
3522 PRO_PL "ils" "il(z)"
3554 PRO_SG "il" "il"
[all …]
/external/icu/icu4c/source/data/region/
Dga.txt20 053{"An Astráil agus an Nua-Shéalainn"}
41 AU{"An Astráil"}
136 IT{"An Iodáil"}
172 MN{"An Mhongóil"}
209 PT{"An Phortaingéil"}
221 SC{"Na Séiséil"}
231 SN{"An tSeineagáil"}
232 SO{"An tSomáil"}
/external/fio/
Dparse.c411 int il=0, *ilp; in __handle_option() local
733 ret = check_int(ptr, &il); in __handle_option()
737 il = 1; in __handle_option()
739 dprint(FD_PARSE, " ret=%d, out=%d\n", ret, il); in __handle_option()
744 if (o->maxval && il > (int) o->maxval) { in __handle_option()
746 il, o->maxval); in __handle_option()
749 if (o->minval && il < o->minval) { in __handle_option()
751 il, o->minval); in __handle_option()
756 il = !il; in __handle_option()
759 ret = fn(data, &il); in __handle_option()
[all …]

123456