/external/pdfium/xfa/fgas/font/ |
D | fgas_fontutils.cpp | 193 {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/ |
D | cfgas_formatstring_unittest.cpp | 66 {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/ |
D | xfa_basic_data_enum.cpp | 12 {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 …]
|
/external/pdfium/core/fpdftext/ |
D | cpdf_linkextract_unittest.cpp | 25 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/cldr/tools/java/org/unicode/cldr/util/data/ |
D | iso-639-3.tab | 2 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/lua/src/ |
D | lapi.c | 60 static TValue *index2addr (lua_State *L, int idx) { in index2addr() argument 61 CallInfo *ci = L->ci; in index2addr() 64 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr() 65 if (o >= L->top) return NONVALIDVALUE; in index2addr() 69 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr() 70 return L->top + idx; in index2addr() 73 return &G(L)->l_registry; in index2addr() 76 api_check(L, idx <= MAXUPVAL + 1, "upvalue index too large"); in index2addr() 91 static void growstack (lua_State *L, void *ud) { in growstack() argument 93 luaD_growstack(L, size); in growstack() [all …]
|
D | lbaselib.c | 24 static int luaB_print (lua_State *L) { in luaB_print() argument 25 int n = lua_gettop(L); /* number of arguments */ in luaB_print() 27 lua_getglobal(L, "tostring"); in luaB_print() 31 lua_pushvalue(L, -1); /* function to be called */ in luaB_print() 32 lua_pushvalue(L, i); /* value to print */ in luaB_print() 33 lua_call(L, 1, 1); in luaB_print() 34 s = lua_tolstring(L, -1, &l); /* get result */ in luaB_print() 36 return luaL_error(L, "'tostring' must return a string to 'print'"); in luaB_print() 39 lua_pop(L, 1); /* pop result */ in luaB_print() 69 static int luaB_tonumber (lua_State *L) { in luaB_tonumber() argument [all …]
|
D | loadlib.c | 67 #define setprogdir(L) ((void)0) argument 85 static void *lsys_load (lua_State *L, const char *path, int seeglb); 92 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym); 126 static void *lsys_load (lua_State *L, const char *path, int seeglb) { in lsys_load() argument 128 if (lib == NULL) lua_pushstring(L, dlerror()); in lsys_load() 133 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() argument 135 if (f == NULL) lua_pushstring(L, dlerror()); in lsys_sym() 168 static void setprogdir (lua_State *L) { in setprogdir() argument 174 luaL_error(L, "unable to get ModuleFileName"); in setprogdir() 177 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff); in setprogdir() [all …]
|
D | ldo.c | 58 #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 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj() argument 94 setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */ in seterrorobj() 98 setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling")); in seterrorobj() 102 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ in seterrorobj() [all …]
|
D | ldblib.c | 35 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 …]
|
D | lauxlib.c | 46 static int findfield (lua_State *L, int objidx, int level) { in findfield() argument 47 if (level == 0 || !lua_istable(L, -1)) in findfield() 49 lua_pushnil(L); /* start 'next' loop */ in findfield() 50 while (lua_next(L, -2)) { /* for each pair in table */ in findfield() 51 if (lua_type(L, -2) == LUA_TSTRING) { /* ignore non-string keys */ in findfield() 52 if (lua_rawequal(L, objidx, -1)) { /* found object? */ in findfield() 53 lua_pop(L, 1); /* remove value (but keep name) */ in findfield() 56 else if (findfield(L, objidx, level - 1)) { /* try recursively */ in findfield() 57 lua_remove(L, -2); /* remove table (but keep name) */ in findfield() 58 lua_pushliteral(L, "."); in findfield() [all …]
|
D | lmathlib.c | 39 static int math_abs (lua_State *L) { in math_abs() argument 40 if (lua_isinteger(L, 1)) { in math_abs() 41 lua_Integer n = lua_tointeger(L, 1); in math_abs() 43 lua_pushinteger(L, n); in math_abs() 46 lua_pushnumber(L, l_mathop(fabs)(luaL_checknumber(L, 1))); in math_abs() 50 static int math_sin (lua_State *L) { in math_sin() argument 51 lua_pushnumber(L, l_mathop(sin)(luaL_checknumber(L, 1))); in math_sin() 55 static int math_cos (lua_State *L) { in math_cos() argument 56 lua_pushnumber(L, l_mathop(cos)(luaL_checknumber(L, 1))); in math_cos() 60 static int math_tan (lua_State *L) { in math_tan() argument [all …]
|
D | ltablib.c | 33 #define aux_getn(L,n,w) (checktab(L, n, (w) | TAB_L), luaL_len(L, n)) argument 36 static int checkfield (lua_State *L, const char *key, int n) { in checkfield() argument 37 lua_pushstring(L, key); in checkfield() 38 return (lua_rawget(L, -n) != LUA_TNIL); in checkfield() 46 static void checktab (lua_State *L, int arg, int what) { in checktab() argument 47 if (lua_type(L, arg) != LUA_TTABLE) { /* is it not a table? */ in checktab() 49 if (lua_getmetatable(L, arg) && /* must have metatable */ in checktab() 50 (!(what & TAB_R) || checkfield(L, "__index", ++n)) && in checktab() 51 (!(what & TAB_W) || checkfield(L, "__newindex", ++n)) && in checktab() 52 (!(what & TAB_L) || checkfield(L, "__len", ++n))) { in checktab() [all …]
|
D | lua.c | 84 #define lua_readline(L,b,p) ((void)L, ((b)=readline(p)) != NULL) argument 85 #define lua_saveline(L,line) ((void)L, add_history(line)) argument 86 #define lua_freeline(L,b) ((void)L, free(b)) argument 90 #define lua_readline(L,b,p) \ argument 91 ((void)L, fputs(p, stdout), fflush(stdout), /* show prompt */ \ 93 #define lua_saveline(L,line) { (void)L; (void)line; } argument 94 #define lua_freeline(L,b) { (void)L; (void)b; } argument 111 static void lstop (lua_State *L, lua_Debug *ar) { in lstop() argument 113 lua_sethook(L, NULL, 0, 0); /* reset hook */ in lstop() 114 luaL_error(L, "interrupted!"); in lstop() [all …]
|
D | liolib.c | 59 #define l_popen(L,c,m) (fflush(NULL), popen(c,m)) argument 60 #define l_pclose(L,file) (pclose(file)) argument 64 #define l_popen(L,c,m) (_popen(c,m)) argument 65 #define l_pclose(L,file) (_pclose(file)) argument 70 #define l_popen(L,c,m) \ argument 72 luaL_error(L, "'popen' not supported"), \ 74 #define l_pclose(L,file) ((void)L, (void)file, -1) argument 145 #define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) argument 150 static int io_type (lua_State *L) { in io_type() argument 152 luaL_checkany(L, 1); in io_type() [all …]
|
D | lua.h | 105 typedef int (*lua_CFunction) (lua_State *L); 110 typedef int (*lua_KFunction) (lua_State *L, int status, lua_KContext ctx); 116 typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz); 118 typedef int (*lua_Writer) (lua_State *L, const void *p, size_t sz, void *ud); 146 LUA_API void (lua_close) (lua_State *L); 147 LUA_API lua_State *(lua_newthread) (lua_State *L); 149 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); 152 LUA_API const lua_Number *(lua_version) (lua_State *L); 158 LUA_API int (lua_absindex) (lua_State *L, int idx); 159 LUA_API int (lua_gettop) (lua_State *L); [all …]
|
/external/skqp/src/utils/ |
D | SkLua.cpp | 75 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/skia/src/utils/ |
D | SkLua.cpp | 75 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/libcxx/test/std/re/re.traits/ |
D | lookup_collatename.pass.cpp | 121 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/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/ |
D | TestData.java | 26 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/ |
D | TestData.java | 23 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/pdfium/xfa/fxfa/fm2js/ |
D | cxfa_fmlexer.cpp | 41 {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 …]
|
D | cxfa_fmsimpleexpression.cpp | 23 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/ |
D | mangle-ms-string-literals.cpp | 518 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 …]
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl14.c | 88 {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 …]
|