Home
last modified time | relevance | path

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

12345678910>>...196

/external/pdfium/xfa/fgas/font/
Dfgas_fontutils.cpp193 {0x01d5d33e, L"SimSun", L"Arial", 0, 936},
194 {0x01e4f102, L"YouYuan", L"Arial", 1, 936},
195 {0x030549dc, L"LiSu", L"Arial", 1, 936},
196 {0x032edd44, L"Simhei", L"Arial", 1, 936},
197 {0x03eac6fc, L"PoorRichard-Regular", L"Arial", 2, 1252},
198 {0x03ed90e6, L"Nina", L"Arial", 0, 1252},
199 {0x077b56b3, L"KingsoftPhoneticPlain", L"Arial", 0, 1252},
200 {0x078ed524, L"MicrosoftSansSerif", L"Arial", 0, 1252},
201 {0x089b18a9, L"Arial", L"Arial", 0, 1252},
202 {0x0b2cad72, L"MonotypeCorsiva", L"Arial", 8, 1252},
[all …]
/external/pdfium/xfa/fgas/crt/
Dcfgas_formatstring_unittest.cpp66 {L"en", L"2002-10-25", L"MMMM DD, YYYY", L"October 25, 2002"}, in TEST_F()
69 {L"en", L"20040722", L"'Week of the month is' w", in TEST_F()
70 L"Week of the month is 3"}, in TEST_F()
71 {L"en", L"20040722", L"e 'days after Sunday'", L"4 days after Sunday"}, in TEST_F()
72 {L"en", L"20040722", L"YYYY-'W'WW-e", L"2004-W30-4"}, in TEST_F()
73 {L"en", L"20040722", L"E 'days after Saturday'", in TEST_F()
74 L"5 days after Saturday"}, in TEST_F()
75 {L"en", L"2000-01-01", L"EEE, 'the' D 'of' MMMM, YYYY", in TEST_F()
76 L"Sat, the 1 of January, 2000"}, in TEST_F()
77 {L"en", L"2000-01-01", L"EEEE, 'the' D 'of' MMMM, YYYY", in TEST_F()
[all …]
/external/pdfium/xfa/fxfa/parser/
Dxfa_basic_data_enum.cpp12 {0x2a, L"*", XFA_AttributeEnum::Asterisk},
13 {0x2f, L"/", XFA_AttributeEnum::Slash},
14 {0x5c, L"\\", XFA_AttributeEnum::Backslash},
15 {0x239bd, L"on", XFA_AttributeEnum::On},
16 {0x25356, L"tb", XFA_AttributeEnum::Tb},
17 {0x25885, L"up", XFA_AttributeEnum::Up},
18 {0x91b281, L"metaData", XFA_AttributeEnum::MetaData},
19 {0x1f8dedb, L"delegate", XFA_AttributeEnum::Delegate},
20 {0x2a6c55a, L"postSubmit", XFA_AttributeEnum::PostSubmit},
21 {0x31b19c1, L"name", XFA_AttributeEnum::Name},
[all …]
Dxfa_basic_data_element_script.cpp479 {0xbe52dfbf, L"desc",
482 {0xf6b47749, L"lock",
487 {0xbe52dfbf, L"desc",
490 {0xf6b47749, L"lock",
495 {0xc0811ed, L"use", (XFA_ATTRIBUTE_CALLBACK)&CJX_Ui::use,
497 {0xbc254332, L"usehref", (XFA_ATTRIBUTE_CALLBACK)&CJX_Ui::usehref,
501 {0xb3543a6, L"max", (XFA_ATTRIBUTE_CALLBACK)&CJX_RecordSet::max,
503 {0xc0811ed, L"use", (XFA_ATTRIBUTE_CALLBACK)&CJX_RecordSet::use,
505 {0x45a6daf8, L"eofAction",
508 {0x5ec958c0, L"cursorType",
[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/syslinux/com32/lua/src/
Dlapi.c49 #define api_checkvalidindex(L, o) api_check(L, isvalid(o), "invalid index") argument
51 #define api_checkstackindex(L, i, o) \ argument
52 api_check(L, isstackindex(i, o), "index not in the stack")
55 static TValue *index2addr (lua_State *L, int idx) { in index2addr() argument
56 CallInfo *ci = L->ci; in index2addr()
59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr()
60 if (o >= L->top) return NONVALIDVALUE; in index2addr()
64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr()
65 return L->top + idx; in index2addr()
68 return &G(L)->l_registry; in index2addr()
[all …]
Dlbaselib.c23 static int luaB_print (lua_State *L) { in luaB_print() argument
24 int n = lua_gettop(L); /* number of arguments */ in luaB_print()
26 lua_getglobal(L, "tostring"); in luaB_print()
30 lua_pushvalue(L, -1); /* function to be called */ in luaB_print()
31 lua_pushvalue(L, i); /* value to print */ in luaB_print()
32 lua_call(L, 1, 1); in luaB_print()
33 s = lua_tolstring(L, -1, &l); /* get result */ in luaB_print()
35 return luaL_error(L, in luaB_print()
39 lua_pop(L, 1); /* pop result */ in luaB_print()
48 static int luaB_tonumber (lua_State *L) { in luaB_tonumber() argument
[all …]
Ddmi.c12 static void add_string_item(lua_State *L, const char *item, const char *value_str) { in add_string_item() argument
13 lua_pushstring(L,item); in add_string_item()
14 lua_pushstring(L,value_str); in add_string_item()
15 lua_settable(L,-3); in add_string_item()
18 static void add_int_item(lua_State *L, const char *item, int value_int) { in add_int_item() argument
19 lua_pushstring(L,item); in add_int_item()
20 lua_pushnumber(L,value_int); in add_int_item()
21 lua_settable(L,-3); in add_int_item()
55 static void add_dmi_sub_table(lua_State *L, s_dmi *dmi_ptr, char *table_name, in add_dmi_sub_table() argument
58 if (get_table_fn(L, dmi_ptr)) { /* only adding it when it is there */ in add_dmi_sub_table()
[all …]
Dloadlib.c109 #define setprogdir(L) ((void)0) argument
116 static void *ll_load (lua_State *L, const char *path, int seeglb);
117 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym);
138 static void *ll_load (lua_State *L, const char *path, int seeglb) { in ll_load() argument
140 if (lib == NULL) lua_pushstring(L, dlerror()); in ll_load()
145 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() argument
147 if (f == NULL) lua_pushstring(L, dlerror()); in ll_sym()
172 static void setprogdir (lua_State *L) { in setprogdir() argument
178 luaL_error(L, "unable to get ModuleFileName"); in setprogdir()
181 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff); in setprogdir()
[all …]
Dldblib.c25 static int db_getregistry (lua_State *L) { in db_getregistry() argument
26 lua_pushvalue(L, LUA_REGISTRYINDEX); in db_getregistry()
31 static int db_getmetatable (lua_State *L) { in db_getmetatable() argument
32 luaL_checkany(L, 1); in db_getmetatable()
33 if (!lua_getmetatable(L, 1)) { in db_getmetatable()
34 lua_pushnil(L); /* no metatable */ in db_getmetatable()
40 static int db_setmetatable (lua_State *L) { in db_setmetatable() argument
41 int t = lua_type(L, 2); in db_setmetatable()
42 luaL_argcheck(L, t == LUA_TNIL || t == LUA_TTABLE, 2, in db_setmetatable()
44 lua_settop(L, 2); in db_setmetatable()
[all …]
Dldo.c53 #define LUAI_THROW(L,c) throw(c) argument
54 #define LUAI_TRY(L,c,a) \ argument
60 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument
61 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { 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
84 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj() argument
87 setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */ in seterrorobj()
91 setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling")); in seterrorobj()
95 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ in seterrorobj()
[all …]
Dlauxlib.c43 static int findfield (lua_State *L, int objidx, int level) { in findfield() argument
44 if (level == 0 || !lua_istable(L, -1)) in findfield()
46 lua_pushnil(L); /* start 'next' loop */ in findfield()
47 while (lua_next(L, -2)) { /* for each pair in table */ in findfield()
48 if (lua_type(L, -2) == LUA_TSTRING) { /* ignore non-string keys */ in findfield()
49 if (lua_rawequal(L, objidx, -1)) { /* found object? */ in findfield()
50 lua_pop(L, 1); /* remove value (but keep name) */ in findfield()
53 else if (findfield(L, objidx, level - 1)) { /* try recursively */ in findfield()
54 lua_remove(L, -2); /* remove table (but keep name) */ in findfield()
55 lua_pushliteral(L, "."); in findfield()
[all …]
Dliolib.c58 #define lua_popen(L,c,m) ((void)L, fflush(NULL), popen(c,m)) argument
59 #define lua_pclose(L,file) ((void)L, pclose(file)) argument
63 #define lua_popen(L,c,m) ((void)L, _popen(c,m)) argument
64 #define lua_pclose(L,file) ((void)L, _pclose(file)) argument
69 #define lua_popen(L,c,m) ((void)((void)c, m), \ argument
70 luaL_error(L, LUA_QL("popen") " not supported"), (FILE*)0)
71 #define lua_pclose(L,file) ((void)((void)L, file), -1) argument
125 #define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) argument
130 static int io_type (lua_State *L) { in io_type() argument
132 luaL_checkany(L, 1); in io_type()
[all …]
Dltablib.c19 #define aux_getn(L,n) (luaL_checktype(L, n, LUA_TTABLE), luaL_len(L, n)) argument
24 static int maxn (lua_State *L) { in maxn() argument
26 luaL_checktype(L, 1, LUA_TTABLE); in maxn()
27 lua_pushnil(L); /* first key */ in maxn()
28 while (lua_next(L, 1)) { in maxn()
29 lua_pop(L, 1); /* remove value */ in maxn()
30 if (lua_type(L, -1) == LUA_TNUMBER) { in maxn()
31 lua_Number v = lua_tonumber(L, -1); in maxn()
35 lua_pushnumber(L, max); in maxn()
41 static int tinsert (lua_State *L) { in tinsert() argument
[all …]
Dlmathlib.c26 static int math_abs (lua_State *L) { in math_abs() argument
27 lua_pushnumber(L, l_mathop(fabs)(luaL_checknumber(L, 1))); in math_abs()
31 static int math_sin (lua_State *L) { in math_sin() argument
32 lua_pushnumber(L, l_mathop(sin)(luaL_checknumber(L, 1))); in math_sin()
36 static int math_sinh (lua_State *L) { in math_sinh() argument
37 lua_pushnumber(L, l_mathop(sinh)(luaL_checknumber(L, 1))); in math_sinh()
41 static int math_cos (lua_State *L) { in math_cos() argument
42 lua_pushnumber(L, l_mathop(cos)(luaL_checknumber(L, 1))); in math_cos()
46 static int math_cosh (lua_State *L) { in math_cosh() argument
47 lua_pushnumber(L, l_mathop(cosh)(luaL_checknumber(L, 1))); in math_cosh()
[all …]
Dcpu.c12 static void add_string_item(lua_State *L, const char *item, const char *value_str) { in add_string_item() argument
13 lua_pushstring(L,item); in add_string_item()
14 lua_pushstring(L,value_str); in add_string_item()
15 lua_settable(L,-3); in add_string_item()
18 static void add_int_item(lua_State *L, const char *item, int value_int) { in add_int_item() argument
19 lua_pushstring(L,item); in add_int_item()
20 lua_pushnumber(L,value_int); in add_int_item()
21 lua_settable(L,-3); in add_int_item()
24 static void add_flag(lua_State *L, bool value, const char *value_str) { in add_flag() argument
27 lua_pushstring(L,buffer); in add_flag()
[all …]
/external/skia/src/utils/
DSkLua.cpp70 template <typename T, typename... Args> T* push_new(lua_State* L, Args&&... args) { in DEF_MTNAME()
71 T* addr = (T*)lua_newuserdata(L, sizeof(T)); in DEF_MTNAME()
73 luaL_getmetatable(L, get_mtname<T>()); in DEF_MTNAME()
74 lua_setmetatable(L, -2); in DEF_MTNAME()
78 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj() argument
79 new (lua_newuserdata(L, sizeof(T))) T(obj); in push_obj()
80 luaL_getmetatable(L, get_mtname<T>()); in push_obj()
81 lua_setmetatable(L, -2); in push_obj()
84 template <typename T> T* push_ptr(lua_State* L, T* ptr) { in push_ptr() argument
85 *(T**)lua_newuserdata(L, sizeof(T*)) = ptr; in push_ptr()
[all …]
/external/skqp/src/utils/
DSkLua.cpp70 template <typename T, typename... Args> T* push_new(lua_State* L, Args&&... args) { in DEF_MTNAME()
71 T* addr = (T*)lua_newuserdata(L, sizeof(T)); in DEF_MTNAME()
73 luaL_getmetatable(L, get_mtname<T>()); in DEF_MTNAME()
74 lua_setmetatable(L, -2); in DEF_MTNAME()
78 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj() argument
79 new (lua_newuserdata(L, sizeof(T))) T(obj); in push_obj()
80 luaL_getmetatable(L, get_mtname<T>()); in push_obj()
81 lua_setmetatable(L, -2); in push_obj()
84 template <typename T> T* push_ptr(lua_State* L, T* ptr) { in push_ptr() argument
85 *(T**)lua_newuserdata(L, sizeof(T*)) = ptr; in push_ptr()
[all …]
/external/libcxx/test/std/re/re.traits/
Dlookup_collatename.pass.cpp118 test(L"NUL", std::wstring(L"\x00", 1)); in main()
119 test(L"alert", std::wstring(L"\x07")); in main()
120 test(L"backspace", std::wstring(L"\x08")); in main()
121 test(L"tab", std::wstring(L"\x09")); in main()
122 test(L"carriage-return", std::wstring(L"\x0D")); in main()
123 test(L"newline", std::wstring(L"\x0A")); in main()
124 test(L"vertical-tab", std::wstring(L"\x0B")); in main()
125 test(L"form-feed", std::wstring(L"\x0C")); in main()
126 test(L"space", std::wstring(L" ")); in main()
127 test(L"exclamation-mark", std::wstring(L"!")); in main()
[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/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl14.c88 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
90 F_RDLCK, 0, 0L, 0L, WILLBLOCK},
93 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
95 F_WRLCK, 0, 0L, 0L, WILLBLOCK},
98 {F_RDLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
100 F_RDLCK, 0, 0L, 0L, NOBLOCK},
103 {F_RDLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
105 F_WRLCK, 0, 0L, 0L, WILLBLOCK},
109 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
114 F_RDLCK, 0, 0L, 5L, WILLBLOCK},
[all …]
/external/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmlexer.cpp41 {TOKand, 0x00000026, L"&"},
42 {TOKlparen, 0x00000028, L"("},
43 {TOKrparen, 0x00000029, L")"},
44 {TOKmul, 0x0000002a, L"*"},
45 {TOKplus, 0x0000002b, L"+"},
46 {TOKcomma, 0x0000002c, L","},
47 {TOKminus, 0x0000002d, L"-"},
48 {TOKdot, 0x0000002e, L"."},
49 {TOKdiv, 0x0000002f, L"/"},
50 {TOKlt, 0x0000003c, L"<"},
[all …]
Dcxfa_fmsimpleexpression.cpp23 L"pfm_rt.asgn_val_op", L"pfm_rt.log_or_op", L"pfm_rt.log_and_op",
24 L"pfm_rt.eq_op", L"pfm_rt.neq_op", L"pfm_rt.lt_op",
25 L"pfm_rt.le_op", L"pfm_rt.gt_op", L"pfm_rt.ge_op",
26 L"pfm_rt.plus_op", L"pfm_rt.minus_op", L"pfm_rt.mul_op",
27 L"pfm_rt.div_op", L"pfm_rt.pos_op", L"pfm_rt.neg_op",
28 L"pfm_rt.log_not_op", L"pfm_rt.", L"pfm_rt.dot_acc",
29 L"pfm_rt.dotdot_acc", L"pfm_rt.concat_obj", L"pfm_rt.is_obj",
30 L"pfm_rt.is_ary", L"pfm_rt.get_val", L"pfm_rt.get_jsobj",
31 L"pfm_rt.var_filter",
35 L"Abs", L"Apr", L"At", L"Avg",
[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>>...196