Home
last modified time | relevance | path

Searched refs:L (Results 1 – 25 of 5756) sorted by relevance

12345678910>>...231

/external/pdfium/xfa/fgas/crt/
Dcfgas_stringformatter_unittest.cpp68 {L"en", L"2002-10-25", L"MMMM DD, YYYY", L"October 25, 2002"}, in TEST_F()
71 {L"en", L"20040722", L"'Week of the month is' w", in TEST_F()
72 L"Week of the month is 3"}, in TEST_F()
73 {L"en", L"20040722", L"e 'days after Sunday'", L"4 days after Sunday"}, in TEST_F()
74 {L"en", L"20040722", L"YYYY-'W'WW-e", L"2004-W30-4"}, in TEST_F()
75 {L"en", L"20040722", L"E 'days after Saturday'", in TEST_F()
76 L"5 days after Saturday"}, in TEST_F()
77 {L"en", L"2000-01-01", L"EEE, 'the' D 'of' MMMM, YYYY", in TEST_F()
78 L"Sat, the 1 of January, 2000"}, in TEST_F()
79 {L"en", L"2000-01-01", L"EEEE, 'the' D 'of' MMMM, YYYY", in TEST_F()
[all …]
/external/rust/crates/unicode-bidi/src/char_data/
Dtables.rs28 L, enumerator
51 '\u{3a}', CS), ('\u{3b}', '\u{40}', ON), ('\u{41}', '\u{5a}', L), ('\u{5b}', '\u{60}', ON),
52 ('\u{61}', '\u{7a}', L), ('\u{7b}', '\u{7e}', ON), ('\u{7f}', '\u{84}', BN), ('\u{85}',
54 ('\u{a2}', '\u{a5}', ET), ('\u{a6}', '\u{a9}', ON), ('\u{aa}', '\u{aa}', L), ('\u{ab}',
56 ('\u{b2}', '\u{b3}', EN), ('\u{b4}', '\u{b4}', ON), ('\u{b5}', '\u{b5}', L), ('\u{b6}',
57 '\u{b8}', ON), ('\u{b9}', '\u{b9}', EN), ('\u{ba}', '\u{ba}', L), ('\u{bb}', '\u{bf}', ON),
58 ('\u{c0}', '\u{d6}', L), ('\u{d7}', '\u{d7}', ON), ('\u{d8}', '\u{f6}', L), ('\u{f7}', '\u{f7}',
59 ON), ('\u{f8}', '\u{2b8}', L), ('\u{2b9}', '\u{2ba}', ON), ('\u{2bb}', '\u{2c1}', L),
60 ('\u{2c2}', '\u{2cf}', ON), ('\u{2d0}', '\u{2d1}', L), ('\u{2d2}', '\u{2df}', ON), ('\u{2e0}',
61 '\u{2e4}', L), ('\u{2e5}', '\u{2ed}', ON), ('\u{2ee}', '\u{2ee}', L), ('\u{2ef}', '\u{2ff}',
[all …]
/external/pdfium/core/fpdftext/
Dcpdf_linkextract_unittest.cpp25 L"", in TEST()
26 L"peter.pan", // '@' is required. in TEST()
27 L"abc@server", // Domain name needs at least one '.'. in TEST()
28 L"abc.@gmail.com", // '.' can not immediately precede '@'. in TEST()
29 L"abc@xyz&q.org", // Domain name should not contain '&'. in TEST()
30 L"abc@.xyz.org", // Domain name should not start with '.'. in TEST()
31 L"fan@g..com" // Domain name should not have consecutive '.' in TEST()
42 {L"peter@abc.d", L"peter@abc.d"}, in TEST()
43 {L"red.teddy.b@abc.com", L"red.teddy.b@abc.com"}, in TEST()
44 {L"abc_@gmail.com", L"abc_@gmail.com"}, // '_' is ok before '@'. in TEST()
[all …]
/external/lua/src/
Dlbaselib.c24 static int luaB_print (lua_State *L) { in luaB_print() argument
25 int n = lua_gettop(L); /* number of arguments */ in luaB_print()
29 const char *s = luaL_tolstring(L, i, &l); /* convert it to string */ in luaB_print()
33 lua_pop(L, 1); /* pop result */ in luaB_print()
45 static int luaB_warn (lua_State *L) { in luaB_warn() argument
46 int n = lua_gettop(L); /* number of arguments */ in luaB_warn()
48 luaL_checkstring(L, 1); /* at least one argument */ in luaB_warn()
50 luaL_checkstring(L, i); /* make sure all arguments are strings */ in luaB_warn()
52 lua_warning(L, lua_tostring(L, i), 1); in luaB_warn()
53 lua_warning(L, lua_tostring(L, n), 0); /* close warning */ in luaB_warn()
[all …]
Dlapi.c46 #define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue) argument
56 static TValue *index2value (lua_State *L, int idx) { in index2value() argument
57 CallInfo *ci = L->ci; in index2value()
60 api_check(L, idx <= L->ci->top - (ci->func + 1), "unacceptable index"); in index2value()
61 if (o >= L->top) return &G(L)->nilvalue; in index2value()
65 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2value()
66 return s2v(L->top + idx); in index2value()
69 return &G(L)->l_registry; in index2value()
72 api_check(L, idx <= MAXUPVAL + 1, "upvalue index too large"); in index2value()
74 return &G(L)->nilvalue; /* it has no upvalues */ in index2value()
[all …]
Dldblib.c35 static void checkstack (lua_State *L, lua_State *L1, int n) { in checkstack() argument
36 if (L != L1 && !lua_checkstack(L1, n)) in checkstack()
37 luaL_error(L, "stack overflow"); in checkstack()
41 static int db_getregistry (lua_State *L) { in db_getregistry() argument
42 lua_pushvalue(L, LUA_REGISTRYINDEX); in db_getregistry()
47 static int db_getmetatable (lua_State *L) { in db_getmetatable() argument
48 luaL_checkany(L, 1); in db_getmetatable()
49 if (!lua_getmetatable(L, 1)) { in db_getmetatable()
50 lua_pushnil(L); /* no metatable */ in db_getmetatable()
56 static int db_setmetatable (lua_State *L) { in db_setmetatable() argument
[all …]
Dldo.c58 #define LUAI_THROW(L,c) throw(c) argument
59 #define LUAI_TRY(L,c,a) \ argument
66 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
67 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument
73 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument
74 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument
91 void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) { in luaD_seterrorobj() argument
94 setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */ in luaD_seterrorobj()
98 setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling")); in luaD_seterrorobj()
106 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ in luaD_seterrorobj()
[all …]
Dloadlib.c67 #define setprogdir(L) ((void)0) argument
92 static void *lsys_load (lua_State *L, const char *path, int seeglb);
99 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym);
133 static void *lsys_load (lua_State *L, const char *path, int seeglb) { in lsys_load() argument
135 if (lib == NULL) lua_pushstring(L, dlerror()); in lsys_load()
140 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() argument
142 if (f == NULL) lua_pushstring(L, dlerror()); in lsys_sym()
175 static void setprogdir (lua_State *L) { in setprogdir() argument
181 luaL_error(L, "unable to get ModuleFileName"); in setprogdir()
184 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff); in setprogdir()
[all …]
Dliolib.c65 #define l_popen(L,c,m) (fflush(NULL), popen(c,m)) argument
66 #define l_pclose(L,file) (pclose(file)) argument
70 #define l_popen(L,c,m) (_popen(c,m)) argument
71 #define l_pclose(L,file) (_pclose(file)) argument
76 #define l_popen(L,c,m) \ argument
78 luaL_error(L, "'popen' not supported"), \
80 #define l_pclose(L,file) ((void)L, (void)file, -1) argument
152 #define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) argument
157 static int io_type (lua_State *L) { in io_type() argument
159 luaL_checkany(L, 1); in io_type()
[all …]
Dlauxlib.c52 static int findfield (lua_State *L, int objidx, int level) { in findfield() argument
53 if (level == 0 || !lua_istable(L, -1)) in findfield()
55 lua_pushnil(L); /* start 'next' loop */ in findfield()
56 while (lua_next(L, -2)) { /* for each pair in table */ in findfield()
57 if (lua_type(L, -2) == LUA_TSTRING) { /* ignore non-string keys */ in findfield()
58 if (lua_rawequal(L, objidx, -1)) { /* found object? */ in findfield()
59 lua_pop(L, 1); /* remove value (but keep name) */ in findfield()
62 else if (findfield(L, objidx, level - 1)) { /* try recursively */ in findfield()
64 lua_pushliteral(L, "."); /* place '.' between the two names */ in findfield()
65 lua_replace(L, -3); /* (in the slot occupied by table) */ in findfield()
[all …]
Dlua.c43 static void lstop (lua_State *L, lua_Debug *ar) { in lstop() argument
45 lua_sethook(L, NULL, 0, 0); /* reset hook */ in lstop()
46 luaL_error(L, "interrupted!"); in lstop()
100 static int report (lua_State *L, int status) { in report() argument
102 const char *msg = lua_tostring(L, -1); in report()
104 lua_pop(L, 1); /* remove message */ in report()
113 static int msghandler (lua_State *L) { in msghandler() argument
114 const char *msg = lua_tostring(L, 1); in msghandler()
116 if (luaL_callmeta(L, 1, "__tostring") && /* does it have a metamethod */ in msghandler()
117 lua_type(L, -1) == LUA_TSTRING) /* that produces a string? */ in msghandler()
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/data/
Diso-639-3.tab2 aaa I L Ghotuo
3 aab I L Alumu-Tesu
4 aac I L Ari
5 aad I L Amal
6 aae I L Arbëreshë Albanian
7 aaf I L Aranadan
8 aag I L Ambrak
9 aah I L Abu' Arapesh
10 aai I L Arifama-Miniafia
11 aak I L Ankave
[all …]
/external/llvm-project/libcxx/include/
Dversion17 __cpp_lib_addressof_constexpr 201603L <memory>
18 __cpp_lib_allocator_traits_is_always_equal 201411L <memory> <scoped_allocator> <string>
22 __cpp_lib_any 201606L <any>
23 __cpp_lib_apply 201603L <tuple>
24 __cpp_lib_array_constexpr 201811L <iterator> <array>
25 201603L // C++17
26 __cpp_lib_as_const 201510L <utility>
27 __cpp_lib_atomic_flag_test 201907L <atomic>
28 __cpp_lib_atomic_float 201711L <atomic>
29 __cpp_lib_atomic_is_always_lock_free 201603L <atomic>
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/bindings/lua/
Ddef.c18 static void lupb_symtab_pushwrapper(lua_State *L, int narg, const void *def,
32 static const void *lupb_wrapper_check(lua_State *L, int narg, in lupb_wrapper_check() argument
34 lupb_wrapper *w = luaL_checkudata(L, narg, type); in lupb_wrapper_check()
38 static void lupb_wrapper_pushsymtab(lua_State *L, int narg) { in lupb_wrapper_pushsymtab() argument
39 lua_getiuservalue(L, narg, LUPB_SYMTAB_INDEX); in lupb_wrapper_pushsymtab()
46 static void lupb_wrapper_pushwrapper(lua_State *L, int narg, const void *def, in lupb_wrapper_pushwrapper() argument
48 lupb_wrapper_pushsymtab(L, narg); in lupb_wrapper_pushwrapper()
49 lupb_symtab_pushwrapper(L, -1, def, type); in lupb_wrapper_pushwrapper()
50 lua_replace(L, -2); /* Remove symtab from stack. */ in lupb_wrapper_pushwrapper()
59 void lupb_msgdef_pushsubmsgdef(lua_State *L, const upb_fielddef *f) { in lupb_msgdef_pushsubmsgdef() argument
[all …]
Dmsg.c94 static void lupb_msg_newmsgwrapper(lua_State *L, int narg, upb_msgval val);
95 static upb_msg *lupb_msg_check(lua_State *L, int narg);
97 static upb_fieldtype_t lupb_checkfieldtype(lua_State *L, int narg) { in lupb_checkfieldtype() argument
98 uint32_t n = lupb_checkuint32(L, narg); in lupb_checkfieldtype()
100 luaL_argcheck(L, ok, narg, "invalid field type"); in lupb_checkfieldtype()
110 static void lupb_cacheinit(lua_State *L) { in lupb_cacheinit() argument
112 lua_newtable(L); in lupb_cacheinit()
115 lua_createtable(L, 0, 1); in lupb_cacheinit()
116 lua_pushstring(L, "v"); in lupb_cacheinit()
117 lua_setfield(L, -2, "__mode"); in lupb_cacheinit()
[all …]
/external/skqp/src/utils/
DSkLua.cpp75 template <typename T, typename... Args> T* push_new(lua_State* L, Args&&... args) { in DEF_MTNAME()
76 T* addr = (T*)lua_newuserdata(L, sizeof(T)); in DEF_MTNAME()
78 luaL_getmetatable(L, get_mtname<T>()); in DEF_MTNAME()
79 lua_setmetatable(L, -2); in DEF_MTNAME()
83 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj() argument
84 new (lua_newuserdata(L, sizeof(T))) T(obj); in push_obj()
85 luaL_getmetatable(L, get_mtname<T>()); in push_obj()
86 lua_setmetatable(L, -2); in push_obj()
89 template <typename T> T* push_ptr(lua_State* L, T* ptr) { in push_ptr() argument
90 *(T**)lua_newuserdata(L, sizeof(T*)) = ptr; in push_ptr()
[all …]
/external/llvm-project/libcxx/docs/
DFeatureTestMacroTable.rst29 ``__cpp_lib_chrono_udls`` ``201304L``
31 ``__cpp_lib_complex_udls`` ``201309L``
33 ``__cpp_lib_exchange_function`` ``201304L``
35 ``__cpp_lib_generic_associative_lookup`` ``201304L``
37 ``__cpp_lib_integer_sequence`` ``201304L``
39 ``__cpp_lib_integral_constant_callable`` ``201304L``
41 ``__cpp_lib_is_final`` ``201402L``
43 ``__cpp_lib_is_null_pointer`` ``201309L``
45 ``__cpp_lib_make_reverse_iterator`` ``201402L``
47 ``__cpp_lib_make_unique`` ``201304L``
[all …]
/external/libcxx/test/std/re/re.traits/
Dlookup_collatename.pass.cpp121 test(L"NUL", std::wstring(L"\x00", 1)); in main()
122 test(L"alert", std::wstring(L"\x07")); in main()
123 test(L"backspace", std::wstring(L"\x08")); in main()
124 test(L"tab", std::wstring(L"\x09")); in main()
125 test(L"carriage-return", std::wstring(L"\x0D")); in main()
126 test(L"newline", std::wstring(L"\x0A")); in main()
127 test(L"vertical-tab", std::wstring(L"\x0B")); in main()
128 test(L"form-feed", std::wstring(L"\x0C")); in main()
129 test(L"space", std::wstring(L" ")); in main()
130 test(L"exclamation-mark", std::wstring(L"!")); in main()
[all …]
/external/llvm-project/libcxx/test/std/re/re.traits/
Dlookup_collatename.pass.cpp120 test(L"NUL", std::wstring(L"\x00", 1)); in main()
121 test(L"alert", std::wstring(L"\x07")); in main()
122 test(L"backspace", std::wstring(L"\x08")); in main()
123 test(L"tab", std::wstring(L"\x09")); in main()
124 test(L"carriage-return", std::wstring(L"\x0D")); in main()
125 test(L"newline", std::wstring(L"\x0A")); in main()
126 test(L"vertical-tab", std::wstring(L"\x0B")); in main()
127 test(L"form-feed", std::wstring(L"\x0C")); in main()
128 test(L"space", std::wstring(L" ")); in main()
129 test(L"exclamation-mark", std::wstring(L"!")); in main()
[all …]
/external/libchrome/base/i18n/
Drtl_unittest.cc35 { L"foo bar", LEFT_TO_RIGHT }, in TEST_F()
37 { L"\x05d0\x05d1\x05d2 \x05d3\x0d4\x05d5", RIGHT_TO_LEFT}, in TEST_F()
40 { L"foo \x05d0 bar", LEFT_TO_RIGHT }, in TEST_F()
43 { L"\x05d0 foo bar", RIGHT_TO_LEFT }, in TEST_F()
47 { L"!foo \x05d0 bar", LEFT_TO_RIGHT }, in TEST_F()
51 { L",\x05d0 foo bar", RIGHT_TO_LEFT }, in TEST_F()
54 { L"\x202a \x05d0 foo bar", LEFT_TO_RIGHT }, in TEST_F()
57 { L"\x202d \x05d0 foo bar", LEFT_TO_RIGHT }, in TEST_F()
60 { L"\x202b foo \x05d0 bar", RIGHT_TO_LEFT }, in TEST_F()
63 { L"\x202e foo \x05d0 bar", RIGHT_TO_LEFT }, in TEST_F()
[all …]
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/
Dlist_test.cpp30 static void setList(ListT *L, ListItem *I1 = nullptr, ListItem *I2 = nullptr, in setList() argument
32 L->clear(); in setList()
34 L->push_back(I1); in setList()
36 L->push_back(I2); in setList()
38 L->push_back(I3); in setList()
42 static void checkList(ListT *L, ListItem *I1, ListItem *I2 = nullptr, in checkList() argument
46 EXPECT_EQ(L->front(), I1); in checkList()
47 L->pop_front(); in checkList()
50 EXPECT_EQ(L->front(), I2); in checkList()
51 L->pop_front(); in checkList()
[all …]
/external/scudo/standalone/tests/
Dlist_test.cpp30 static void setList(ListT *L, ListItem *I1 = nullptr, ListItem *I2 = nullptr, in setList() argument
32 L->clear(); in setList()
34 L->push_back(I1); in setList()
36 L->push_back(I2); in setList()
38 L->push_back(I3); in setList()
42 static void checkList(ListT *L, ListItem *I1, ListItem *I2 = nullptr, in checkList() argument
46 EXPECT_EQ(L->front(), I1); in checkList()
47 L->pop_front(); in checkList()
50 EXPECT_EQ(L->front(), I2); in checkList()
51 L->pop_front(); in checkList()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
DTestData.java26 protected static final int L = UCharacterDirection.LEFT_TO_RIGHT; field in TestData
57 { L, L, WS, L, WS, EN, L, B }, // 0
59 { L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 2
60 { L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 3
61 { AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L }, // 4
74 { S, WS, NSM, RLE, WS, L, L, L, WS, LRO, WS, R, R, R, WS, RLO, WS, L, L,
75 L, WS, LRE, WS, R, R, R, WS, PDF, WS, L, L, L, WS, PDF, WS, AL, AL,
76 AL, WS, PDF, WS, L, L, L, WS, PDF, WS, L, L, L, WS, PDF, ON, PDF,
78 { NSM, WS, L, L, L, L, L, L, L, WS, L, L, L, L, WS, R, R, R, R, R, WS,
79 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN,
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestData.java23 protected static final int L = UCharacterDirection.LEFT_TO_RIGHT; field in TestData
54 { L, L, WS, L, WS, EN, L, B }, // 0
56 { L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 2
57 { L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 3
58 { AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L }, // 4
71 { S, WS, NSM, RLE, WS, L, L, L, WS, LRO, WS, R, R, R, WS, RLO, WS, L, L,
72 L, WS, LRE, WS, R, R, R, WS, PDF, WS, L, L, L, WS, PDF, WS, AL, AL,
73 AL, WS, PDF, WS, L, L, L, WS, PDF, WS, L, L, L, WS, PDF, ON, PDF,
75 { NSM, WS, L, L, L, L, L, L, L, WS, L, L, L, L, WS, R, R, R, R, R, WS,
76 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN,
[all …]
/external/clang/test/CodeGenCXX/
Dmangle-ms-string-literals.cpp518 const wchar_t *wl9 = L"\t";
519 const wchar_t *wl10 = L"\n";
520 const wchar_t *wl11 = L"\v";
521 const wchar_t *wl32 = L" ";
522 const wchar_t *wl33 = L"!";
523 const wchar_t *wl34 = L"\"";
524 const wchar_t *wl35 = L"#";
525 const wchar_t *wl36 = L"$";
526 const wchar_t *wl37 = L"%";
527 const wchar_t *wl38 = L"&";
[all …]

12345678910>>...231