Home
last modified time | relevance | path

Searched refs:cx (Results 1 - 25 of 295) sorted by relevance

12345678910>>...12

/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dcheck.rs33 pub(crate) fn typecheck(cx: &mut Errors, apis: &[Api], types: &Types, generator: Generator) {
37 errors: cx,
42 fn do_typecheck(cx: &mut Check) { in do_typecheck()
43 ident::check_all(cx, cx.apis); in do_typecheck()
45 for ty in cx.types { in do_typecheck()
47 Type::Ident(ident) => check_type_ident(cx, ident), in do_typecheck()
48 Type::RustBox(ptr) => check_type_box(cx, ptr), in do_typecheck()
49 Type::RustVec(ty) => check_type_rust_vec(cx, ty), in do_typecheck()
50 Type::UniquePtr(ptr) => check_type_unique_ptr(cx, pt in do_typecheck()
[all...]
H A Dident.rs4 fn check(cx: &mut Check, name: &Pair) { in check()
6 check_cxx_ident(cx, &segment.to_string()); in check()
8 check_cxx_ident(cx, &name.cxx.to_string()); in check()
9 check_rust_ident(cx, &name.rust.to_string()); in check()
11 fn check_cxx_ident(cx: &mut Check, ident: &str) { in check()
13 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
16 cx.error(ident, error::DOUBLE_UNDERSCORE.msg); in check()
20 fn check_rust_ident(cx: &mut Check, ident: &str) { in check()
22 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
27 pub(crate) fn check_all(cx
[all...]
/third_party/rust/crates/cxx/syntax/
H A Dcheck.rs33 pub(crate) fn typecheck(cx: &mut Errors, apis: &[Api], types: &Types, generator: Generator) {
37 errors: cx,
42 fn do_typecheck(cx: &mut Check) { in do_typecheck()
43 ident::check_all(cx, cx.apis); in do_typecheck()
45 for ty in cx.types { in do_typecheck()
47 Type::Ident(ident) => check_type_ident(cx, ident), in do_typecheck()
48 Type::RustBox(ptr) => check_type_box(cx, ptr), in do_typecheck()
49 Type::RustVec(ty) => check_type_rust_vec(cx, ty), in do_typecheck()
50 Type::UniquePtr(ptr) => check_type_unique_ptr(cx, pt in do_typecheck()
[all...]
H A Dident.rs4 fn check(cx: &mut Check, name: &Pair) { in check()
6 check_cxx_ident(cx, &segment.to_string()); in check()
8 check_cxx_ident(cx, &name.cxx.to_string()); in check()
9 check_rust_ident(cx, &name.rust.to_string()); in check()
11 fn check_cxx_ident(cx: &mut Check, ident: &str) { in check()
13 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
16 cx.error(ident, error::DOUBLE_UNDERSCORE.msg); in check()
20 fn check_rust_ident(cx: &mut Check, ident: &str) { in check()
22 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
27 pub(crate) fn check_all(cx
[all...]
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dcheck.rs33 pub(crate) fn typecheck(cx: &mut Errors, apis: &[Api], types: &Types, generator: Generator) {
37 errors: cx,
42 fn do_typecheck(cx: &mut Check) { in do_typecheck()
43 ident::check_all(cx, cx.apis); in do_typecheck()
45 for ty in cx.types { in do_typecheck()
47 Type::Ident(ident) => check_type_ident(cx, ident), in do_typecheck()
48 Type::RustBox(ptr) => check_type_box(cx, ptr), in do_typecheck()
49 Type::RustVec(ty) => check_type_rust_vec(cx, ty), in do_typecheck()
50 Type::UniquePtr(ptr) => check_type_unique_ptr(cx, pt in do_typecheck()
[all...]
H A Dident.rs4 fn check(cx: &mut Check, name: &Pair) { in check()
6 check_cxx_ident(cx, &segment.to_string()); in check()
8 check_cxx_ident(cx, &name.cxx.to_string()); in check()
9 check_rust_ident(cx, &name.rust.to_string()); in check()
11 fn check_cxx_ident(cx: &mut Check, ident: &str) { in check()
13 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
16 cx.error(ident, error::DOUBLE_UNDERSCORE.msg); in check()
20 fn check_rust_ident(cx: &mut Check, ident: &str) { in check()
22 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
27 pub(crate) fn check_all(cx
[all...]
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dcheck.rs33 pub(crate) fn typecheck(cx: &mut Errors, apis: &[Api], types: &Types, generator: Generator) {
37 errors: cx,
42 fn do_typecheck(cx: &mut Check) { in do_typecheck()
43 ident::check_all(cx, cx.apis); in do_typecheck()
45 for ty in cx.types { in do_typecheck()
47 Type::Ident(ident) => check_type_ident(cx, ident), in do_typecheck()
48 Type::RustBox(ptr) => check_type_box(cx, ptr), in do_typecheck()
49 Type::RustVec(ty) => check_type_rust_vec(cx, ty), in do_typecheck()
50 Type::UniquePtr(ptr) => check_type_unique_ptr(cx, pt in do_typecheck()
[all...]
H A Dident.rs4 fn check(cx: &mut Check, name: &Pair) { in check()
6 check_cxx_ident(cx, &segment.to_string()); in check()
8 check_cxx_ident(cx, &name.cxx.to_string()); in check()
9 check_rust_ident(cx, &name.rust.to_string()); in check()
11 fn check_cxx_ident(cx: &mut Check, ident: &str) { in check()
13 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
16 cx.error(ident, error::DOUBLE_UNDERSCORE.msg); in check()
20 fn check_rust_ident(cx: &mut Check, ident: &str) { in check()
22 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
27 pub(crate) fn check_all(cx
[all...]
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dcheck.rs33 pub(crate) fn typecheck(cx: &mut Errors, apis: &[Api], types: &Types, generator: Generator) {
37 errors: cx,
42 fn do_typecheck(cx: &mut Check) { in do_typecheck()
43 ident::check_all(cx, cx.apis); in do_typecheck()
45 for ty in cx.types { in do_typecheck()
47 Type::Ident(ident) => check_type_ident(cx, ident), in do_typecheck()
48 Type::RustBox(ptr) => check_type_box(cx, ptr), in do_typecheck()
49 Type::RustVec(ty) => check_type_rust_vec(cx, ty), in do_typecheck()
50 Type::UniquePtr(ptr) => check_type_unique_ptr(cx, pt in do_typecheck()
[all...]
H A Dident.rs4 fn check(cx: &mut Check, name: &Pair) { in check()
6 check_cxx_ident(cx, &segment.to_string()); in check()
8 check_cxx_ident(cx, &name.cxx.to_string()); in check()
9 check_rust_ident(cx, &name.rust.to_string()); in check()
11 fn check_cxx_ident(cx: &mut Check, ident: &str) { in check()
13 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
16 cx.error(ident, error::DOUBLE_UNDERSCORE.msg); in check()
20 fn check_rust_ident(cx: &mut Check, ident: &str) { in check()
22 cx.error(ident, error::CXXBRIDGE_RESERVED.msg); in check()
27 pub(crate) fn check_all(cx
[all...]
/third_party/libwebsockets/lib/tls/
H A Dtls.c51 struct lws_context *cx = wsi->a.context; in lws_tls_restrict_borrow() local
53 if (cx->simultaneous_ssl_restriction && in lws_tls_restrict_borrow()
54 cx->simultaneous_ssl >= cx->simultaneous_ssl_restriction) { in lws_tls_restrict_borrow()
56 cx->simultaneous_ssl); in lws_tls_restrict_borrow()
60 if (cx->simultaneous_ssl_handshake_restriction && in lws_tls_restrict_borrow()
61 cx->simultaneous_ssl_handshake >= in lws_tls_restrict_borrow()
62 cx->simultaneous_ssl_handshake_restriction) { in lws_tls_restrict_borrow()
64 cx->simultaneous_ssl); in lws_tls_restrict_borrow()
68 cx in lws_tls_restrict_borrow()
99 struct lws_context *cx = wsi->a.context; _lws_tls_restrict_return() local
115 struct lws_context *cx = wsi->a.context; lws_tls_restrict_return_handshake() local
135 struct lws_context *cx = wsi->a.context; lws_tls_restrict_return() local
[all...]
/third_party/python/Lib/test/test_sqlite3/
H A Dtest_backup.py7 cx = self.cx = sqlite.connect(":memory:")
8 cx.execute('CREATE TABLE foo (key INTEGER)')
9 cx.executemany('INSERT INTO foo (key) VALUES (?)', [(3,), (4,)])
10 cx.commit()
13 self.cx.close()
22 self.cx.backup(None)
24 self.cx.backup()
28 self.cx.backup('some_file_name.db')
32 self.cx
[all...]
H A Dtest_dbapi.py44 cx = sqlite.connect(":memory:", *args, **kwargs)
45 return contextlib.closing(cx)
50 def cx_limit(cx, category=sqlite.SQLITE_LIMIT_SQL_LENGTH, limit=128):
52 _prev = cx.setlimit(category, limit)
55 cx.setlimit(category, _prev)
346 cx = sqlite.connect(":memory:")
347 check_disallow_instantiation(self, type(cx("select 1")))
358 self.cx = sqlite.connect(":memory:")
359 cu = self.cx.cursor()
364 self.cx
[all...]
H A Dtest_transactions.py147 def sql(cx, sql, *args):
148 cu = cx.cursor()
280 def _run_test(self, cx):
281 cx.execute(self.CREATE)
282 cx.set_trace_callback(lambda stmt: self.traced.append(stmt))
283 with cx:
284 cx.execute(self.INSERT)
287 with memory_database() as cx:
288 self._run_test(cx)
292 with memory_database(isolation_level="") as cx
[all...]
/third_party/rust/crates/serde/serde_derive_internals/src/
H A Dcheck.rs8 pub fn check(cx: &Ctxt, cont: &mut Container, derive: Derive) { in check()
9 check_default_on_tuple(cx, cont); in check()
10 check_remote_generic(cx, cont); in check()
11 check_getter(cx, cont); in check()
12 check_flatten(cx, cont); in check()
13 check_identifier(cx, cont); in check()
14 check_variant_skip_attrs(cx, cont); in check()
15 check_internal_tag_field_name_conflict(cx, cont); in check()
16 check_adjacent_tag_conflict(cx, cont); in check()
17 check_transparent(cx, con in check()
[all...]
H A Dattr.rs24 cx: &'c Ctxt,
31 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none()
33 cx, in none()
45 self.cx.error_spanned_by(tokens, msg); in set()
79 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none()
80 BoolAttr(Attr::none(cx, name)) in none()
93 cx: &'c Ctxt,
100 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none()
102 cx, in none()
120 self.cx in at_most_one()
[all...]
/third_party/rust/crates/serde/serde_derive/src/internals/
H A Dcheck.rs8 pub fn check(cx: &Ctxt, cont: &mut Container, derive: Derive) { in check()
9 check_default_on_tuple(cx, cont); in check()
10 check_remote_generic(cx, cont); in check()
11 check_getter(cx, cont); in check()
12 check_flatten(cx, cont); in check()
13 check_identifier(cx, cont); in check()
14 check_variant_skip_attrs(cx, cont); in check()
15 check_internal_tag_field_name_conflict(cx, cont); in check()
16 check_adjacent_tag_conflict(cx, cont); in check()
17 check_transparent(cx, con in check()
[all...]
H A Dattr.rs24 cx: &'c Ctxt,
31 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none()
33 cx, in none()
45 self.cx.error_spanned_by(tokens, msg); in set()
79 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none()
80 BoolAttr(Attr::none(cx, name)) in none()
93 cx: &'c Ctxt,
100 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none()
102 cx, in none()
120 self.cx in at_most_one()
[all...]
/third_party/libwebsockets/lib/core/
H A Dlogs.c322 lws_log_emit_cx_file(struct lws_log_cx *cx, int level, const char *line, in lws_log_emit_cx_file() argument
325 int fd = (int)(intptr_t)cx->stg; in lws_log_emit_cx_file()
337 lws_log_use_cx_file(struct lws_log_cx *cx, int _new) in lws_log_use_cx_file() argument
341 if (_new > 0 && cx->refcount == 1) { in lws_log_use_cx_file()
342 fd = open((const char *)cx->opaque, in lws_log_use_cx_file()
346 (const char *)cx->opaque, errno); in lws_log_use_cx_file()
347 cx->stg = (void *)(intptr_t)fd; in lws_log_use_cx_file()
352 fd = (int)(intptr_t)cx->stg; in lws_log_use_cx_file()
354 if (_new <= 0 && cx->refcount == 0 && fd >= 0) { in lws_log_use_cx_file()
356 cx in lws_log_use_cx_file()
366 __lws_logv(lws_log_cx_t *cx, lws_log_prepend_cx_t prep, void *obj, int filter, const char *_fun, const char *format, va_list vl) __lws_logv() argument
483 _lws_log_cx(lws_log_cx_t *cx, lws_log_prepend_cx_t prep, void *obj, int filter, const char *_fun, const char *format, ...) _lws_log_cx() argument
511 lwsl_visible_cx(lws_log_cx_t *cx, int level) lwsl_visible_cx() argument
517 lwsl_refcount_cx(lws_log_cx_t *cx, int _new) lwsl_refcount_cx() argument
553 lwsl_hexdump_level_cx(lws_log_cx_t *cx, lws_log_prepend_cx_t prep, void *obj, int hexdump_level, const void *vbuf, size_t len) lwsl_hexdump_level_cx() argument
[all...]
/third_party/libwebsockets/lib/roles/netlink/
H A Dops-netlink.c62 struct lws_context *cx = pt->context; in rops_handle_POLLIN_netlink() local
95 lwsl_cx_notice(cx, "recvmsg failed"); in rops_handle_POLLIN_netlink()
119 lwsl_cx_netlink(cx, "RTM %d", h->nlmsg_type); in rops_handle_POLLIN_netlink()
142 lwsl_cx_netlink(cx, "if attr %d", in rops_handle_POLLIN_netlink()
146 lwsl_cx_netlink(cx, "NETLINK ifidx %d : %s", in rops_handle_POLLIN_netlink()
155 lwsl_cx_netlink(cx, "NEWLINK ifi_index %d, flags 0x%x", in rops_handle_POLLIN_netlink()
168 lwsl_cx_netlink(cx, "NEWLINK: ifdown %d", in rops_handle_POLLIN_netlink()
192 lwsl_cx_netlink(cx, "%s", in rops_handle_POLLIN_netlink()
205 lwsl_cx_netlink(cx, "%s", in rops_handle_POLLIN_netlink()
216 lwsl_cx_netlink(cx, " in rops_handle_POLLIN_netlink()
[all...]
/third_party/libwebsockets/lib/secure-streams/system/captive-portal-detect/
H A Dcaptive-portal-detect.c42 struct lws_context *cx = (struct lws_context *)m->opaque_data; in ss_cpd_state() local
53 lws_system_cpd_set(cx, LWS_CPD_INTERNET_OK); in ss_cpd_state()
54 cx->ss_cpd = NULL; in ss_cpd_state()
64 lws_system_cpd_set(cx, LWS_CPD_NO_INTERNET); in ss_cpd_state()
65 cx->ss_cpd = NULL; in ss_cpd_state()
84 lws_ss_sys_cpd(struct lws_context *cx) in lws_ss_sys_cpd() argument
86 if (cx->ss_cpd) { in lws_ss_sys_cpd()
87 lwsl_cx_notice(cx, "CPD already ongoing"); in lws_ss_sys_cpd()
91 if (lws_ss_create(cx, 0, &ssi_cpd, cx, in lws_ss_sys_cpd()
[all...]
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_msg.c81 * @cx: [OUT] e.g. status from a non-HB message status command
88 ax, bx, cx, dx, si, di) \
93 "=c"(cx), \
122 * @cx: [OUT] e.g. status from a non-HB message status command
133 ax, bx, cx, dx, si, di) \
141 "=c"(cx), \
157 ax, bx, cx, dx, si, di) \
165 "=c"(cx), \
192 ax, bx, cx, dx, si, di) \
202 "=c"(cx), \
308 VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si = 0, di = 0; vmw_open_channel() local
338 VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si, di; vmw_close_channel() local
369 VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si, di, bp; vmw_send_msg() local
[all...]
/third_party/icu/icu4c/source/common/
H A Ducnv_ext.cpp124 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState, in ucnv_extMatchToU() argument
135 if(cx==NULL || cx[UCNV_EXT_TO_U_LENGTH]<=0) { in ucnv_extMatchToU()
140 toUTable=UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_INDEX, uint32_t); in ucnv_extMatchToU()
237 ucnv_extWriteToU(UConverter *cnv, const int32_t *cx, in ucnv_extWriteToU() argument
254 UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_UCHARS_INDEX, UChar)+ in ucnv_extWriteToU()
279 ucnv_extInitialMatchToU(UConverter *cnv, const int32_t *cx, in ucnv_extInitialMatchToU() argument
290 match=ucnv_extMatchToU(cx, (int8_t)UCNV_SISO_STATE(cnv), in ucnv_extInitialMatchToU()
300 ucnv_extWriteToU(cnv, cx, in ucnv_extInitialMatchToU()
333 ucnv_extSimpleMatchToU(const int32_t *cx, in ucnv_extSimpleMatchToU() argument
531 ucnv_extMatchFromU(const int32_t *cx, UChar32 firstCP, const UChar *pre, int32_t preLength, const UChar *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) ucnv_extMatchFromU() argument
672 ucnv_extWriteFromU(UConverter *cnv, const int32_t *cx, uint32_t value, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UErrorCode *pErrorCode) ucnv_extWriteFromU() argument
750 ucnv_extInitialMatchFromU(UConverter *cnv, const int32_t *cx, UChar32 cp, const UChar **src, const UChar *srcLimit, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UBool flush, UErrorCode *pErrorCode) ucnv_extInitialMatchFromU() argument
813 ucnv_extSimpleMatchFromU(const int32_t *cx, UChar32 cp, uint32_t *pValue, UBool useFallback) ucnv_extSimpleMatchFromU() argument
978 ucnv_extGetUnicodeSetString(const UConverterSharedData *sharedData, const int32_t *cx, const USetAdder *sa, UConverterUnicodeSet which, int32_t minLength, UChar32 firstCP, UChar s[UCNV_EXT_MAX_UCHARS], int32_t length, int32_t sectionIndex, UErrorCode *pErrorCode) ucnv_extGetUnicodeSetString() argument
1035 const int32_t *cx; ucnv_extGetUnicodeSet() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducnv_ext.cpp124 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState, in ucnv_extMatchToU() argument
135 if(cx==nullptr || cx[UCNV_EXT_TO_U_LENGTH]<=0) { in ucnv_extMatchToU()
140 toUTable=UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_INDEX, uint32_t); in ucnv_extMatchToU()
237 ucnv_extWriteToU(UConverter *cnv, const int32_t *cx, in ucnv_extWriteToU() argument
254 UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_UCHARS_INDEX, char16_t)+ in ucnv_extWriteToU()
279 ucnv_extInitialMatchToU(UConverter *cnv, const int32_t *cx, in ucnv_extInitialMatchToU() argument
290 match=ucnv_extMatchToU(cx, (int8_t)UCNV_SISO_STATE(cnv), in ucnv_extInitialMatchToU()
300 ucnv_extWriteToU(cnv, cx, in ucnv_extInitialMatchToU()
333 ucnv_extSimpleMatchToU(const int32_t *cx, in ucnv_extSimpleMatchToU() argument
531 ucnv_extMatchFromU(const int32_t *cx, UChar32 firstCP, const char16_t *pre, int32_t preLength, const char16_t *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) ucnv_extMatchFromU() argument
672 ucnv_extWriteFromU(UConverter *cnv, const int32_t *cx, uint32_t value, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UErrorCode *pErrorCode) ucnv_extWriteFromU() argument
750 ucnv_extInitialMatchFromU(UConverter *cnv, const int32_t *cx, UChar32 cp, const char16_t **src, const char16_t *srcLimit, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UBool flush, UErrorCode *pErrorCode) ucnv_extInitialMatchFromU() argument
813 ucnv_extSimpleMatchFromU(const int32_t *cx, UChar32 cp, uint32_t *pValue, UBool useFallback) ucnv_extSimpleMatchFromU() argument
978 ucnv_extGetUnicodeSetString(const UConverterSharedData *sharedData, const int32_t *cx, const USetAdder *sa, UConverterUnicodeSet which, int32_t minLength, UChar32 firstCP, char16_t s[UCNV_EXT_MAX_UCHARS], int32_t length, int32_t sectionIndex, UErrorCode *pErrorCode) ucnv_extGetUnicodeSetString() argument
1035 const int32_t *cx; ucnv_extGetUnicodeSet() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Ducnv_ext.cpp124 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState, in ucnv_extMatchToU() argument
135 if(cx==NULL || cx[UCNV_EXT_TO_U_LENGTH]<=0) { in ucnv_extMatchToU()
140 toUTable=UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_INDEX, uint32_t); in ucnv_extMatchToU()
237 ucnv_extWriteToU(UConverter *cnv, const int32_t *cx, in ucnv_extWriteToU() argument
254 UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_UCHARS_INDEX, UChar)+ in ucnv_extWriteToU()
279 ucnv_extInitialMatchToU(UConverter *cnv, const int32_t *cx, in ucnv_extInitialMatchToU() argument
290 match=ucnv_extMatchToU(cx, (int8_t)UCNV_SISO_STATE(cnv), in ucnv_extInitialMatchToU()
300 ucnv_extWriteToU(cnv, cx, in ucnv_extInitialMatchToU()
333 ucnv_extSimpleMatchToU(const int32_t *cx, in ucnv_extSimpleMatchToU() argument
531 ucnv_extMatchFromU(const int32_t *cx, UChar32 firstCP, const UChar *pre, int32_t preLength, const UChar *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) ucnv_extMatchFromU() argument
672 ucnv_extWriteFromU(UConverter *cnv, const int32_t *cx, uint32_t value, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UErrorCode *pErrorCode) ucnv_extWriteFromU() argument
750 ucnv_extInitialMatchFromU(UConverter *cnv, const int32_t *cx, UChar32 cp, const UChar **src, const UChar *srcLimit, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UBool flush, UErrorCode *pErrorCode) ucnv_extInitialMatchFromU() argument
813 ucnv_extSimpleMatchFromU(const int32_t *cx, UChar32 cp, uint32_t *pValue, UBool useFallback) ucnv_extSimpleMatchFromU() argument
978 ucnv_extGetUnicodeSetString(const UConverterSharedData *sharedData, const int32_t *cx, const USetAdder *sa, UConverterUnicodeSet which, int32_t minLength, UChar32 firstCP, UChar s[UCNV_EXT_MAX_UCHARS], int32_t length, int32_t sectionIndex, UErrorCode *pErrorCode) ucnv_extGetUnicodeSetString() argument
1035 const int32_t *cx; ucnv_extGetUnicodeSet() local
[all...]

Completed in 12 milliseconds

12345678910>>...12