Home
last modified time | relevance | path

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

12345678910>>...22

/external/webrtc/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/icu/icu4c/source/data/region/
Dmt.txt48 AX{"il-Gżejjer Aland"}
50 BA{"il-Bożnija-Ħerzegovina"}
52 BD{"il-Bangladesh"}
53 BE{"il-Belġju"}
54 BF{"il-Burkina Faso"}
55 BG{"il-Bulgarija"}
56 BH{"il-Bahrain"}
57 BI{"il-Burundi"}
58 BJ{"il-Benin"}
61 BN{"il-Brunei"}
[all …]
/external/apache-commons-bcel/src/examples/
DHelloWorldBuilder.java70 InstructionList il = new InstructionList(); in main() local
79 il, cp); in main()
86 il.append(factory.createNew("java.io.BufferedReader")); in main()
87 il.append(InstructionConstants.DUP); // Use predefined constant, i.e. flyweight in main()
88 il.append(factory.createNew("java.io.InputStreamReader")); in main()
89 il.append(InstructionConstants.DUP); in main()
90il.append(factory.createFieldAccess("java.lang.System", "in", i_stream, Constants.GETSTATIC)); in main()
93 il.append(factory.createInvoke("java.io.InputStreamReader", "<init>", in main()
96 il.append(factory.createInvoke("java.io.BufferedReader", "<init>", Type.VOID, in main()
103 lg.setStart(il.append(new ASTORE(in))); // `i' valid from here in main()
[all …]
DProxyCreator.java87 InstructionList il = new InstructionList(); in main() local
98 }, null, "actionPerformed", "foo", il, cp); in main()
101 il.append(new GETSTATIC(out)); in main()
102 il.append(factory.createNew("java.lang.StringBuffer")); in main()
103 il.append(InstructionConstants.DUP); in main()
104 il.append(new PUSH(cp, "actionPerformed:")); in main()
105 il.append(factory.createInvoke("java.lang.StringBuffer", "<init>", Type.VOID, in main()
108 il.append(new ALOAD(1)); in main()
109 il.append(factory.createAppend(Type.OBJECT)); in main()
110 il.append(new INVOKEVIRTUAL(println)); in main()
[all …]
/external/apache-commons-bcel/src/examples/Mini/
DASTProgram.java216 InstructionList il = new InstructionList(); in byte_code() local
226 il.append(new GETSTATIC(out)); in byte_code()
227 il.append(new PUSH(cp, "Please enter a number> ")); in byte_code()
228 il.append(new INVOKEVIRTUAL(cp.addMethodref("java.io.PrintStream", in byte_code()
231 il.append(new GETSTATIC(_in)); in byte_code()
232 il.append(new INVOKEVIRTUAL(cp.addMethodref("java.io.BufferedReader", in byte_code()
235 il.append(new INVOKESTATIC(cp.addMethodref("java.lang.Integer", in byte_code()
238 il.append(InstructionConstants.IRETURN); in byte_code()
244 "_readInt", class_name, il, cp); in byte_code()
255 il = new InstructionList(); in byte_code()
[all …]
DASTExpr.java254 public void byte_code(InstructionList il, MethodGen method, ConstantPoolGen cp) { in byte_code() argument
255 exprs[0].byte_code(il, method, cp); in byte_code()
259 il.append(InstructionConstants.INEG); in byte_code()
261 il.append(new PUSH(cp, 1)); ASTFunDecl.push(); // Push TRUE in byte_code()
262 il.append(InstructionConstants.IXOR); ASTFunDecl.pop(); in byte_code()
268 exprs[1].byte_code(il, method, cp); in byte_code()
271 case PLUS: il.append(InstructionConstants.IADD); ASTFunDecl.pop(); break; in byte_code()
272 case MINUS: il.append(InstructionConstants.ISUB); ASTFunDecl.pop(); break; in byte_code()
273 case MULT: il.append(InstructionConstants.IMUL); ASTFunDecl.pop(); break; in byte_code()
274 case DIV: il.append(InstructionConstants.IDIV); ASTFunDecl.pop(); break; in byte_code()
[all …]
DASTFunDecl.java220 InstructionList il = new InstructionList(); in byte_code() local
228 "main", class_name, il, cp); in byte_code()
246 fname, class_name, il, cp); in byte_code()
258 body.byte_code(il, method, cp); in byte_code()
262 InstructionHandle start = il.getStart(), end, handler, end_handler; in byte_code()
268 il.append(InstructionConstants.POP); pop(); // Remove last element on stack in byte_code()
269 end = il.append(InstructionConstants.RETURN); // Use instruction constants, if possible in byte_code()
272 handler = il.append(new ASTORE(slot)); // save exception object in byte_code()
273 il.append(new GETSTATIC(cp.addFieldref("java.lang.System", "err", in byte_code()
275 il.append(new ALOAD(slot)); push(2); in byte_code()
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java80 final InstructionList il = new InstructionList(); in testGenerateClassLevelAnnotations() local
83 buildClassContents(cg, cp, il); in testGenerateClassLevelAnnotations()
123 final InstructionList il = new InstructionList(); in testGenerateMethodLevelAnnotations1() local
124 buildClassContentsWithAnnotatedMethods(cg, cp, il); in testGenerateMethodLevelAnnotations1()
163 final InstructionList il = new InstructionList(); in testGenerateMethodLevelAnnotations2() local
164 buildClassContentsWithAnnotatedMethods(cg, cp, il); in testGenerateMethodLevelAnnotations2()
415 final ConstantPoolGen cp, final InstructionList il) in buildClassContentsWithAnnotatedMethods() argument
418 final MethodGen mg = createMethodGen("main", il, cp); in buildClassContentsWithAnnotatedMethods()
429 il.append(factory.createNew("java.io.BufferedReader")); in buildClassContentsWithAnnotatedMethods()
430 il.append(InstructionConst.DUP); // Use predefined constant in buildClassContentsWithAnnotatedMethods()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/testdata/
Dtestdata_fr.txt19 il y a 3 ans
20 il y a 2 ans
21 il y a 1 an
35 il y a 3 mois
36 il y a 2 mois
37 il y a 1 mois
51 il y a 3 semaines
52 il y a 2 semaines
53 il y a 1 semaine
67 il y a 3 jours
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/testdata/
Dtestdata_fr.txt19 il y a 3 ans
20 il y a 2 ans
21 il y a 1 an
35 il y a 3 mois
36 il y a 2 mois
37 il y a 1 mois
51 il y a 3 semaines
52 il y a 2 semaines
53 il y a 1 semaine
67 il y a 3 jours
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/verifier/tests/
DTestArrayAccess02Creator.java57 final InstructionList il = new InstructionList(); in createMethod_0() local
59 TEST_PACKAGE+".TestArrayAccess02", il, _cp); in createMethod_0()
61 final InstructionHandle ih_0 = il.append(InstructionFactory.createLoad(Type.OBJECT, 0)); in createMethod_0()
63il.append(_factory.createInvoke("java.lang.Object", "<init>", Type.VOID, Type.NO_ARGS, Const.INVOK… in createMethod_0()
64 final InstructionHandle ih_4 = il.append(InstructionFactory.createReturn(Type.VOID)); in createMethod_0()
69 il.dispose(); in createMethod_0()
73 final InstructionList il = new InstructionList(); in createMethod_1() local
75 "test", TEST_PACKAGE+".TestArrayAccess02", il, _cp); in createMethod_1()
77 final InstructionHandle ih_0 = il.append(new PUSH(_cp, 1)); in createMethod_1()
79il.append(_factory.createNewArray(new ObjectType(TEST_PACKAGE+".TestArrayAccess02"), (short) 1)); in createMethod_1()
[all …]
DTestArrayAccess04Creator.java57 final InstructionList il = new InstructionList(); in createMethod_0() local
59 TEST_PACKAGE+".TestArrayAccess04", il, _cp); in createMethod_0()
61 final InstructionHandle ih_0 = il.append(InstructionFactory.createLoad(Type.OBJECT, 0)); in createMethod_0()
63il.append(_factory.createInvoke("java.lang.Object", "<init>", Type.VOID, Type.NO_ARGS, Const.INVOK… in createMethod_0()
64 final InstructionHandle ih_4 = il.append(InstructionFactory.createReturn(Type.VOID)); in createMethod_0()
69 il.dispose(); in createMethod_0()
73 final InstructionList il = new InstructionList(); in createMethod_1() local
75 new String[] { "arg0" }, "test", TEST_PACKAGE+".TestArrayAccess04", il, _cp); in createMethod_1()
77 final InstructionHandle ih_0 = il.append(new PUSH(_cp, 1)); in createMethod_1()
79 il.append(_factory.createNewArray(Type.OBJECT, (short) 1)); in createMethod_1()
[all …]
DTestArrayAccess03Creator.java57 final InstructionList il = new InstructionList(); in createMethod_0() local
59 TEST_PACKAGE+".TestArrayAccess03", il, _cp); in createMethod_0()
61 final InstructionHandle ih_0 = il.append(InstructionFactory.createLoad(Type.OBJECT, 0)); in createMethod_0()
63il.append(_factory.createInvoke("java.lang.Object", "<init>", Type.VOID, Type.NO_ARGS, Const.INVOK… in createMethod_0()
64 final InstructionHandle ih_4 = il.append(InstructionFactory.createReturn(Type.VOID)); in createMethod_0()
69 il.dispose(); in createMethod_0()
73 final InstructionList il = new InstructionList(); in createMethod_1() local
75 new String[] { "arg0" }, "test", TEST_PACKAGE+".TestArrayAccess03", il, _cp); in createMethod_1()
77 final InstructionHandle ih_0 = il.append(new PUSH(_cp, 1)); in createMethod_1()
79il.append(_factory.createNewArray(new ObjectType(TEST_PACKAGE+".TestArrayAccess03"), (short) 1)); in createMethod_1()
[all …]
DTestReturn01Creator.java55 final InstructionList il = new InstructionList(); in createMethod_0() local
57 "<init>", TEST_PACKAGE+".TestReturn01", il, _cp); in createMethod_0()
59 final InstructionHandle ih_0 = il.append(InstructionFactory.createLoad(Type.OBJECT, 0)); in createMethod_0()
61il.append(_factory.createInvoke("java.lang.Object", "<init>", Type.VOID, Type.NO_ARGS, Const.INVOK… in createMethod_0()
62 final InstructionHandle ih_4 = il.append(InstructionFactory.createReturn(Type.VOID)); in createMethod_0()
67 il.dispose(); in createMethod_0()
71 final InstructionList il = new InstructionList(); in createMethod_1() local
73 new String[] { }, "foo", TEST_PACKAGE+".TestReturn01", il, _cp); in createMethod_1()
75 final InstructionHandle ih_0 = il.append(_factory.createNew("java.lang.Object")); in createMethod_1()
77 il.append(InstructionConst.DUP); in createMethod_1()
[all …]
DTestReturn03Creator.java55 final InstructionList il = new InstructionList(); in createMethod_0() local
57 "<init>", TEST_PACKAGE+".TestReturn03", il, _cp); in createMethod_0()
59 final InstructionHandle ih_0 = il.append(InstructionFactory.createLoad(Type.OBJECT, 0)); in createMethod_0()
61il.append(_factory.createInvoke("java.lang.Object", "<init>", Type.VOID, Type.NO_ARGS, Const.INVOK… in createMethod_0()
62 final InstructionHandle ih_4 = il.append(InstructionFactory.createReturn(Type.VOID)); in createMethod_0()
67 il.dispose(); in createMethod_0()
71 final InstructionList il = new InstructionList(); in createMethod_1() local
73 new String[] { }, "test3", TEST_PACKAGE+".TestReturn03", il, _cp); in createMethod_1()
75 final InstructionHandle ih_0 = il.append(InstructionConst.ACONST_NULL); in createMethod_1()
77 il.append(InstructionFactory.createReturn(Type.OBJECT)); in createMethod_1()
[all …]
/external/toybox/toys/pending/
Dvi.c90 struct str_line *il; variable
361 if (c_r->line->alloc_len < c_r->line->str_len+il->str_len+5) { in i_insert()
363 c_r->line->alloc_len*2+il->alloc_len*2); in i_insert()
365 c_r->line->alloc_len = c_r->line->alloc_len*2+2*il->alloc_len; in i_insert()
371 strcpy(&s[TT.cur_col], il->str_data); in i_insert()
372 strcpy(&s[TT.cur_col+il->str_len], t); in i_insert()
373 TT.cur_col += il->str_len; in i_insert()
375 c_r->line->str_len += il->str_len; in i_insert()
492 il = xzalloc(sizeof(struct str_line)); in vi_main()
493 il->str_data = xzalloc(80); in vi_main()
[all …]
/external/libcxx/test/std/language.support/support.initlist/support.initlist.access/
Daccess.pass.cpp26 A(std::initializer_list<int> il) in A()
28 const int* b = il.begin(); in A()
29 const int* e = il.end(); in A()
30 assert(il.size() == 3); in A()
31 assert(static_cast<std::size_t>(e - b) == il.size()); in A()
41 constexpr B(std::initializer_list<int> il) in B()
43 const int* b = il.begin(); in B()
44 const int* e = il.end(); in B()
45 assert(il.size() == 3); in B()
46 assert(static_cast<std::size_t>(e - b) == il.size()); in B()
/external/libcxx/test/std/language.support/support.initlist/support.initlist.range/
Dbegin_end.pass.cpp24 A(std::initializer_list<int> il) in A()
26 const int* b = begin(il); in A()
27 const int* e = end(il); in A()
28 assert(il.size() == 3); in A()
29 assert(static_cast<std::size_t>(e - b) == il.size()); in A()
39 constexpr B(std::initializer_list<int> il) in B()
41 const int* b = begin(il); in B()
42 const int* e = end(il); in B()
43 assert(il.size() == 3); in B()
44 assert(static_cast<std::size_t>(e - b) == il.size()); in B()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DInstructionList.java229 public InstructionHandle append(final InstructionHandle ih, final InstructionList il) { in append() argument
230 if (il == null) { in append()
233 if (il.isEmpty()) { in append()
237 final InstructionHandle ret = il.start; in append()
238 ih.setNext(il.start); in append()
239 il.start.setPrev(ih); in append()
240 il.end.setNext(next); in append()
242 next.setPrev(il.end); in append()
244 end = il.end; // Update end ... in append()
246 length += il.length; // Update length in append()
[all …]
DMethodGen.java67 private InstructionList il; field in MethodGen
122 …final String method_name, final String class_name, final InstructionList il, final ConstantPoolGen… in MethodGen() argument
129 setInstructionList(il); in MethodGen()
135 start = il.getStart(); in MethodGen()
206 end = il.getEnd(); in MethodGen()
208 end = il.findHandle(end_pc); in MethodGen()
211 addExceptionHandler(il.findHandle(ce.getStartPC()), end, il.findHandle(ce in MethodGen()
221 final InstructionHandle ih = il.findHandle(l.getStartPC()); in MethodGen()
353 if ((lg[i].getStart() == null) && (il != null)) { in getLocalVariables()
354 lg[i].setStart(il.getStart()); in getLocalVariables()
[all …]
/external/eigen/Eigen/src/Eigenvalues/
DComplexSchur.h398 Index il;
421 il = iu-1;
422 while(il > 0 && !subdiagonalEntryIsNeglegible(il-1))
424 --il;
433 rot.makeGivens(m_matT.coeff(il,il) - shift, m_matT.coeff(il+1,il));
434 m_matT.rightCols(m_matT.cols()-il).applyOnTheLeft(il, il+1, rot.adjoint());
435 m_matT.topRows((std::min)(il+2,iu)+1).applyOnTheRight(il, il+1, rot);
436 if(computeU) m_matU.applyOnTheRight(il, il+1, rot);
438 for(Index i=il+1 ; i<iu ; i++)
/external/apache-commons-bcel/src/test/java/org/apache/bcel/util/
DInstructionFinderTest.java33 final InstructionList il = new InstructionList(); in testSearch() local
34 il.append(new ILOAD(1)); in testSearch()
35 il.append(new ILOAD(2)); in testSearch()
36 il.append(new IADD()); in testSearch()
37 il.append(new ISTORE(3)); in testSearch()
38 final InstructionFinder finder = new InstructionFinder(il); in testSearch()
40 final Iterator<?> it = finder.search("ILOAD IADD", il.getInstructionHandles()[0], null ); in testSearch()
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
Demplace_initializer_list.pass.cpp33 constexpr X(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) {} in X() argument
49 constexpr Y(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) {} in Y() argument
63 Z(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) in Z() argument
/external/libcxx/test/std/utilities/optional/optional.specalg/
Dmake_optional_explicit_initializer_list.pass.cpp26 …constexpr TestT(std::initializer_list<int> il) : x(*il.begin()), size(static_cast<int>(il.size()))… in TestT()
27 constexpr TestT(std::initializer_list<int> il, const int*) in TestT()
28 : x(*il.begin()), size(static_cast<int>(il.size())) {} in TestT()
/external/icu/icu4c/source/data/locales/
Dfr.txt1981 one{"il y a {0} jour"}
1982 other{"il y a {0} jours"}
2021 one{"il y a {0} j"}
2022 other{"il y a {0} j"}
2065 one{"il y a {0} vendredi"}
2066 other{"il y a {0} vendredis"}
2082 one{"il y a {0} ven."}
2083 other{"il y a {0} ven."}
2099 one{"il y a {0} ven."}
2100 other{"il y a {0} ven."}
[all …]

12345678910>>...22