Home
last modified time | relevance | path

Searched defs:sink (Results 226 - 250 of 441) sorted by relevance

12345678910>>...18

/third_party/icu/icu4c/source/i18n/
H A Dlistformatter.cpp479 ListFormatter::ListPatternsSink sink; in loadListFormatInternal() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducasemap.cpp139 appendResult(int32_t cpLength, int32_t result, const char16_t *s, ByteSink &sink, uint32_t options, icu::Edits *edits, UErrorCode &errorCode) appendResult() argument
203 toLower(int32_t caseLocale, uint32_t options, const uint8_t *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, icu::ByteSink &sink, icu::Edits *edits, UErrorCode &errorCode) toLower() argument
314 toUpper(int32_t caseLocale, uint32_t options, const uint8_t *src, UCaseContext *csc, int32_t srcLength, icu::ByteSink &sink, icu::Edits *edits, UErrorCode &errorCode) toUpper() argument
437 maybeTitleDutchIJ(const uint8_t *src, UChar32 c, int32_t start, int32_t segmentLimit, ByteSink &sink, uint32_t options, icu::Edits *edits, UErrorCode &errorCode) maybeTitleDutchIJ() argument
439 U_ASSERT(start < segmentLimit); int32_t index = start; bool withAcute = false; int32_t unchanged1 = 0; bool doTitleJ = false; int32_t unchanged2 = 0; UChar32 c2; c2 = src[index++]; if (c == u�) { if (c2 == ACUTE_BYTE0 && index < segmentLimit && src[index++] == ACUTE_BYTE1) { withAcute = true; unchanged1 = 2; if (index == segmentLimit) { return start; } c2 = src[index++]; } } else { withAcute = true; } if (c2 == u�) { doTitleJ = true; } else if (c2 == u�) { ++unchanged1; } else { return start; } if (withAcute) { if ((index + 1) >= segmentLimit || src[index++] != ACUTE_BYTE0 || src[index++] != ACUTE_BYTE1) { return start; } if (doTitleJ) { unchanged2 = 2; } else { unchanged1 = unchanged1 + 2; } } if (index < segmentLimit) { int32_t cp; int32_t i = index; U8_NEXT(src, i, segmentLimit, cp); uint32_t typeMask = U_GET_GC_MASK(cp); if ((typeMask & U_GC_M_MASK) != 0) { return start; } } ByteSinkUtil::appendUnchanged(src + start, unchanged1, sink, options, edits, errorCode); start += unchanged1; if (doTitleJ) { ByteSinkUtil::appendCodePoint(1, u�, sink, edits); ++start; } ByteSinkUtil::appendUnchanged(src + start, unchanged2, sink, options, edits, errorCode); U_ASSERT(start + unchanged2 == index); return index; } } U_CFUNC void U_CALLCONV ucasemap_internalUTF8ToTitle( int32_t caseLocale, uint32_t options, BreakIterator *iter, const uint8_t *src, int32_t srcLength, ByteSink &sink, icu::Edits *edits, UErrorCode &errorCode) { if (!ustrcase_checkTitleAdjustmentOptions(options, errorCode)) { return; } UCaseContext csc=UCASECONTEXT_INITIALIZER; csc.p=(void *)src; csc.limit=srcLength; int32_t prev=0; UBool isFirstIndex=true; while(prev<srcLength) { int32_t index; if(isFirstIndex) { isFirstIndex=false; index=iter->first(); } else { index=iter->next(); } if(index==UBRK_DONE || index>srcLength) maybeTitleDutchIJ() argument
655 toUpper(uint32_t options, const uint8_t *src, int32_t srcLength, ByteSink &sink, Edits *edits, UErrorCode &errorCode) toUpper() argument
812 ucasemap_internalUTF8ToLower(int32_t caseLocale, uint32_t options, UCASEMAP_BREAK_ITERATOR_UNUSED const uint8_t *src, int32_t srcLength, icu::ByteSink &sink, icu::Edits *edits, UErrorCode &errorCode) ucasemap_internalUTF8ToLower() argument
826 ucasemap_internalUTF8ToUpper(int32_t caseLocale, uint32_t options, UCASEMAP_BREAK_ITERATOR_UNUSED const uint8_t *src, int32_t srcLength, icu::ByteSink &sink, icu::Edits *edits, UErrorCode &errorCode) ucasemap_internalUTF8ToUpper() argument
844 ucasemap_internalUTF8Fold(int32_t , uint32_t options, UCASEMAP_BREAK_ITERATOR_UNUSED const uint8_t *src, int32_t srcLength, icu::ByteSink &sink, icu::Edits *edits, UErrorCode &errorCode) ucasemap_internalUTF8Fold() argument
855 ucasemap_mapUTF8(int32_t caseLocale, uint32_t options, UCASEMAP_BREAK_ITERATOR_PARAM const char *src, int32_t srcLength, UTF8CaseMapper *stringCaseMapper, icu::ByteSink &sink, icu::Edits *edits, UErrorCode &errorCode) ucasemap_mapUTF8() argument
977 utf8ToLower( const char *locale, uint32_t options, StringPiece src, ByteSink &sink, Edits *edits, UErrorCode &errorCode) utf8ToLower() argument
984 ucasemap_internalUTF8ToLower, sink, edits, errorCode); utf8ToLower() local
987 utf8ToUpper( const char *locale, uint32_t options, StringPiece src, ByteSink &sink, Edits *edits, UErrorCode &errorCode) utf8ToUpper() argument
994 ucasemap_internalUTF8ToUpper, sink, edits, errorCode); utf8ToUpper() local
997 utf8Fold( uint32_t options, StringPiece src, ByteSink &sink, Edits *edits, UErrorCode &errorCode) utf8Fold() argument
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dlistformatter.cpp472 ListFormatter::ListPatternsSink sink; in loadListFormatInternal() local
[all...]
/third_party/node/deps/v8/src/snapshot/
H A Dserializer.h425 ObjectSerializer(Serializer* serializer, Handle<HeapObject> obj, SnapshotByteSink* sink) ObjectSerializer() argument
/third_party/pulseaudio/src/modules/macosx/
H A Dmodule-coreaudio-device.c192 coreaudio_sink *sink = PA_SINK(o)->userdata; in get_latency_us() local
282 coreaudio_sink *sink = PA_SINK(o)->userdata; in sink_process_msg() local
358 coreaudio_sink *sink = s->userdata; ca_sink_set_state_in_main_thread() local
412 pa_sink *sink; ca_device_create_sink() local
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-rygel-media-server.c332 static void append_variant_urls(DBusMessage *m, DBusMessageIter *iter, const struct userdata *u, pa_sink *sink, pa_source *source) { in append_variant_urls() argument
356 static void append_variant_mime_type(DBusMessage *m, DBusMessageIter *iter, pa_sink *sink, pa_source *source) { in append_variant_mime_type() argument
371 append_variant_item_display_name(DBusMessage *m, DBusMessageIter *iter, pa_sink *sink, pa_source *source) append_variant_item_display_name() argument
436 append_property_dict_entry_urls(DBusMessage *m, DBusMessageIter *iter, const struct userdata *u, pa_sink *sink, pa_source *source) append_property_dict_entry_urls() argument
448 append_property_dict_entry_mime_type(DBusMessage *m, DBusMessageIter *iter, pa_sink *sink, pa_source *source) append_property_dict_entry_mime_type() argument
460 append_property_dict_entry_item_display_name(DBusMessage *m, DBusMessageIter *iter, pa_sink *sink, pa_source *source) append_property_dict_entry_item_display_name() argument
559 append_sink_or_source_item_mediaobject2_properties(DBusMessage *r, DBusMessageIter *sub, const char *path, pa_sink *sink, pa_source *source) append_sink_or_source_item_mediaobject2_properties() argument
566 append_sink_or_source_item_properties( DBusMessage *r, DBusMessageIter *iter, const char *path, const struct userdata *user_data, pa_sink *sink, pa_source *source, char * const * filter, int filter_len) append_sink_or_source_item_properties() argument
838 pa_sink *sink; sinks_and_sources_handler() local
925 pa_sink *sink; sinks_and_sources_handler() local
948 pa_sink *sink = NULL; sinks_and_sources_handler() local
[all...]
H A Dmodule-solaris.c90 pa_sink *sink; member
[all...]
H A Dmodule-zeroconf-publish.c159 pa_sink *sink = PA_SINK(device); in get_service_data() local
576 pa_sink *sink; in publish_all_services() local
[all...]
H A Dstream-interaction.c134 pa_sink *sink; in find_global_trigger_stream() local
H A Dmodule-device-restore.c270 pa_sink *sink; in entry_read() local
605 pa_sink *sink; in subscribe_callback() local
806 sink_port_hook_callback(pa_core *c, pa_sink *sink, struct userdata *u) sink_port_hook_callback() argument
845 sink_put_hook_callback(pa_core *c, pa_sink *sink, struct userdata *u) sink_put_hook_callback() argument
989 read_sink_format_reply(struct userdata *u, pa_tagstruct *reply, pa_sink *sink) read_sink_format_reply() argument
1070 pa_sink *sink; extension_cb() local
1085 pa_sink *sink; extension_cb() local
1117 pa_sink *sink; extension_cb() local
1206 pa_sink *sink; pa__init() local
[all...]
H A Dmodule-filter-apply.c61 pa_sink *sink; member
101 static struct filter *filter_new(const char *name, const char *parameters, pa_sink *sink, pa_source *source) { in filter_new() argument
210 pa_sink *sink = NULL; in get_filter_for_object() local
456 pa_sink *sink; find_filters_for_module() local
509 pa_sink *sink = NULL; process() local
680 sink_unlink_cb(pa_core *core, pa_sink *sink, struct userdata *u) sink_unlink_cb() argument
[all...]
/third_party/pulseaudio/src/modules/oss/
H A Dmodule-oss.c103 pa_sink *sink; member
[all...]
/third_party/pulseaudio/src/pulse/
H A Dintrospect.h651 uint32_t sink; /**< Index of the connected sink */ global() member
[all...]
/third_party/pulseaudio/src/modules/dbus/
H A Diface-card.c196 pa_sink *sink = NULL; in get_sinks() local
/third_party/pulseaudio/src/modules/rtp/
H A Dmodule-rtp-recv.c477 pa_sink *sink; in session_new() local
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dprotocol-http.c458 pa_sink *sink; in handle_listen() local
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dlistformatter.cpp479 ListFormatter::ListPatternsSink sink; in loadListFormatInternal() local
[all...]
/third_party/skia/src/ports/
H A DSkScalerContext_mac_ct.cpp654 SkCTPathGeometrySink sink; in generatePath() local
/third_party/skia/third_party/externals/icu/source/common/
H A Dloclikely.cpp174 createTagStringWithAlternates( const char* lang, int32_t langLength, const char* script, int32_t scriptLength, const char* region, int32_t regionLength, const char* trailing, int32_t trailingLength, const char* alternateTags, icu::ByteSink& sink, UErrorCode* err) createTagStringWithAlternates() argument
388 createTagString( const char* lang, int32_t langLength, const char* script, int32_t scriptLength, const char* region, int32_t regionLength, const char* trailing, int32_t trailingLength, icu::ByteSink& sink, UErrorCode* err) createTagString() argument
550 createLikelySubtagsString( const char* lang, int32_t langLength, const char* script, int32_t scriptLength, const char* region, int32_t regionLength, const char* variants, int32_t variantsLength, icu::ByteSink& sink, UErrorCode* err) createLikelySubtagsString() argument
827 _uloc_addLikelySubtags(const char* localeID, icu::ByteSink& sink, UErrorCode* err) _uloc_addLikelySubtags() argument
914 _uloc_minimizeSubtags(const char* localeID, icu::ByteSink& sink, UErrorCode* err) _uloc_minimizeSubtags() argument
1241 _ulocimp_addLikelySubtags(const char* localeID, icu::ByteSink& sink, UErrorCode* status) _ulocimp_addLikelySubtags() argument
1253 ulocimp_addLikelySubtags(const char* localeID, icu::ByteSink& sink, UErrorCode* status) ulocimp_addLikelySubtags() argument
1289 ulocimp_minimizeSubtags(const char* localeID, icu::ByteSink& sink, UErrorCode* status) ulocimp_minimizeSubtags() argument
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.h573 upb_bytessink sink; member
/third_party/pulseaudio/src/modules/alsa/
H A Dmodule-alsa-card.c444 pa_sink *sink; report_jack_state() local
786 pa_sink *sink = sink_input->sink; sink_input_put_hook_callback() local
816 pa_sink *sink = sink_input->sink; sink_input_unlink_hook_callback() local
1133 pa_sink *sink; pa__get_n_used() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Dndis_events.c25 IWbemObjectSink sink; member
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Dndis_events.c25 IWbemObjectSink sink; member
/kernel/linux/linux-5.10/arch/m68k/mvme16x/
H A Dconfig.c211 volatile u_char sink; in mvme16x_cons_write() local
/kernel/linux/linux-6.6/arch/m68k/mvme16x/
H A Dconfig.c211 volatile u_char sink; in mvme16x_cons_write() local

Completed in 25 milliseconds

12345678910>>...18