Home
last modified time | relevance | path

Searched refs:status (Results 826 - 850 of 6163) sorted by relevance

1...<<31323334353637383940>>...247

/third_party/node/deps/icu-small/source/common/unicode/
H A Dbrkiter.h167 * @param status receives any error codes.
172 virtual UText *getUText(UText *fillIn, UErrorCode &status) const = 0;
202 * @param status receives any error codes.
205 virtual void setText(UText *text, UErrorCode &status) = 0;
305 * For RuleBasedBreakIterators, return the status tag from the break rule
308 * For break iterator types that do not support a rule status,
311 * @return the status from the break rule that determined the boundary at
320 * For RuleBasedBreakIterators, get the status (tag) values from the break rule(s)
323 * For break iterator types that do not support rule status,
326 * The returned status valu
[all...]
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dusearch.h125 * UErrorCode status = U_ZERO_ERROR;
130 * NULL, &status);
131 * if (U_SUCCESS(status)) {
132 * for (int pos = usearch_first(search, &status);
134 * pos = usearch_next(search, &status))
303 * @param status for errors if it occurs. If pattern or text is NULL, or if
315 UErrorCode *status);
340 * @param status for errors if it occurs. If collator, pattern or text is NULL,
353 UErrorCode *status);
396 * @param status erro
[all...]
H A Dsimplenumberformatter.h25 * SimpleNumberFormatter snf = SimpleNumberFormatter::forLocale("de-CH", status);
26 * FormattedNumber result = snf.formatInt64(-1000007, status);
27 * assertEquals("", u"-1’000’007", result.toString(status));
61 static SimpleNumber forInt64(int64_t value, UErrorCode& status);
70 void multiplyByPowerOfTen(int32_t power, UErrorCode& status);
79 void roundTo(int32_t power, UNumberFormatRoundingMode roundingMode, UErrorCode& status);
88 void truncateStart(uint32_t maximumIntegerDigits, UErrorCode& status);
97 void setMinimumIntegerDigits(uint32_t minimumIntegerDigits, UErrorCode& status);
106 void setMinimumFractionDigits(uint32_t minimumFractionDigits, UErrorCode& status);
117 void setSign(USimpleNumberSign sign, UErrorCode& status);
[all...]
H A Dmsgfmt.h172 * <td><code>NumberFormat.createInstance(getLocale(), status)</code>
175 * <td><code>NumberFormat.createInstance(getLocale(), kNumberStyle, status)</code>
178 * <td><code>NumberFormat.createCurrencyInstance(getLocale(), status)</code>
181 * <td><code>NumberFormat.createPercentInstance(getLocale(), status)</code>
184 * <td><code>new DecimalFormat(argStyleText, new DecimalFormatSymbols(getLocale(), status), status)</code>
187 * <td><code>NumberFormatter::forSkeleton(argSkeletonText, status).locale(getLocale()).toFormat(status)</code>
191 * <td><code>DateFormat.createDateInstance(kDefault, getLocale(), status)</code>
194 * <td><code>DateFormat.createDateInstance(kShort, getLocale(), status)</cod
[all...]
H A Dtblcoll.h122 * @param status reporting a success or an error.
125 RuleBasedCollator(const UnicodeString& rules, UErrorCode& status);
133 * @param status reporting a success or an error.
138 UErrorCode& status);
146 * @param status reporting a success or an error.
151 UErrorCode& status);
160 * @param status reporting a success or an error.
166 UErrorCode& status);
198 * @param status for catching errors
205 UErrorCode &status);
[all...]
H A Ddtitvfmt.h92 UnicodeString toString(UErrorCode& status) const override;
95 UnicodeString toTempString(UErrorCode& status) const override;
98 Appendable &appendTo(Appendable& appendable, UErrorCode& status) const override;
101 UBool nextPosition(ConstrainedFieldPosition& cfpos, UErrorCode& status) const override;
288 * UErrorCode status = U_ZERO_ERROR;
291 * Locale("en", "GB", ""), status);
295 * dtIntervalFmt->format(dtInterval, dateIntervalUnicodeString, pos, status);
312 * @param status output param set to success/failure code on exit
318 UErrorCode& status);
333 * DateIntervalFormat::createInstance(UDAT_MONTH_DAY, status)
[all...]
H A Dudat.h48 * UErrorCode status = U_ZERO_ERROR;
51 * UDateFormat* dfmt = udat_open(UDAT_DEFAULT, UDAT_DEFAULT, NULL, NULL, -1, NULL, -1, &status);
52 * myStrlen = udat_format(dfmt, myDate, NULL, myStrlen, NULL, &status);
53 * if (status==U_BUFFER_OVERFLOW_ERROR){
54 * status=U_ZERO_ERROR;
56 * udat_format(dfmt, myDate, myString, myStrlen+1, NULL, &status);
65 * UErrorCode status = U_ZERO_ERROR;
70 * UDateFormat* df = udat_open(UDAT_DEFAULT, UDAT_DEFAULT, NULL, NULL, -1, NULL, 0, &status);
72 * myStrlen = udat_format(df, myDateArr[i], NULL, myStrlen, NULL, &status);
73 * if(status
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dusearch.h124 * UErrorCode status = U_ZERO_ERROR;
129 * NULL, &status);
130 * if (U_SUCCESS(status)) {
131 * for (int pos = usearch_first(search, &status);
133 * pos = usearch_next(search, &status))
302 * @param status for errors if it occurs. If pattern or text is NULL, or if
314 UErrorCode *status);
339 * @param status for errors if it occurs. If collator, pattern or text is NULL,
352 UErrorCode *status);
395 * @param status erro
[all...]
/third_party/skia/third_party/externals/icu/source/tools/icuinfo/
H A Dtestplug.c36 #define DECLARE_PLUGIN(x) U_CAPI UPlugTokenReturn U_EXPORT2 x (UPlugData *data, UPlugReason reason, UErrorCode *status)
54 UErrorCode *status) { in myPlugin()
56 fprintf(stderr,"MyPlugin: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status)); in myPlugin()
71 UErrorCode *status) { in myPluginLow()
72 fprintf(stderr,"MyPluginLow: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status)); in myPluginLow()
89 UErrorCode *status) { in myPluginFailQuery()
90 fprintf(stderr,"MyPluginFailQuery: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status)); in myPluginFailQuery()
51 myPlugin( UPlugData *data, UPlugReason reason, UErrorCode *status) myPlugin() argument
68 myPluginLow( UPlugData *data, UPlugReason reason, UErrorCode *status) myPluginLow() argument
86 myPluginFailQuery( UPlugData *data, UPlugReason reason, UErrorCode *status) myPluginFailQuery() argument
101 myPluginFailToken( UPlugData *data, UPlugReason reason, UErrorCode *status) myPluginFailToken() argument
121 myPluginBad( UPlugData *data, UPlugReason reason, UErrorCode *status) myPluginBad() argument
146 myPluginHigh( UPlugData *data, UPlugReason reason, UErrorCode *status) myPluginHigh() argument
191 debugMemoryPlugin( UPlugData *data, UPlugReason reason, UErrorCode *status) debugMemoryPlugin() argument
201 u_setMemoryFunctions(uplug_getContext(data), &myMemAlloc, &myMemRealloc, &myMemFree, status); debugMemoryPlugin() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dbrkiter.h167 * @param status receives any error codes.
172 virtual UText *getUText(UText *fillIn, UErrorCode &status) const = 0;
202 * @param status receives any error codes.
205 virtual void setText(UText *text, UErrorCode &status) = 0;
305 * For RuleBasedBreakIterators, return the status tag from the break rule
308 * For break iterator types that do not support a rule status,
311 * @return the status from the break rule that determined the boundary at
320 * For RuleBasedBreakIterators, get the status (tag) values from the break rule(s)
323 * For break iterator types that do not support rule status,
326 * The returned status valu
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Duvectr32.h72 UVector32(UErrorCode &status);
74 UVector32(int32_t initialCapacity, UErrorCode &status);
100 inline void addElement(int32_t elem, UErrorCode &status);
104 void insertElementAt(int32_t elem, int32_t index, UErrorCode &status);
131 inline UBool ensureCapacity(int32_t minimumCapacity, UErrorCode &status);
134 UBool expandCapacity(int32_t minimumCapacity, UErrorCode &status);
187 void _init(int32_t initialCapacity, UErrorCode &status);
206 inline int32_t push(int32_t i, UErrorCode &status);
208 inline int32_t *reserveBlock(int32_t size, UErrorCode &status);
215 inline UBool UVector32::ensureCapacity(int32_t minimumCapacity, UErrorCode &status) { in ensureCapacity() argument
228 addElement(int32_t elem, UErrorCode &status) addElement() argument
235 reserveBlock(int32_t size, UErrorCode &status) reserveBlock() argument
290 push(int32_t i, UErrorCode &status) push() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Duloc_tag.cpp305 ultag_parse(const char* tag, int32_t tagLen, int32_t* parsedLen, UErrorCode* status);
1015 _appendLanguageToLanguageTag(const char* localeID, icu::ByteSink& sink, UBool strict, UErrorCode* status) { in _appendLanguageToLanguageTag() argument
1020 if (U_FAILURE(*status)) { in _appendLanguageToLanguageTag()
1027 *status = U_ILLEGAL_ARGUMENT_ERROR; in _appendLanguageToLanguageTag()
1040 *status = U_ILLEGAL_ARGUMENT_ERROR; in _appendLanguageToLanguageTag()
1063 _appendScriptToLanguageTag(const char* localeID, icu::ByteSink& sink, UBool strict, UErrorCode* status) { in _appendScriptToLanguageTag() argument
1068 if (U_FAILURE(*status)) { in _appendScriptToLanguageTag()
1075 *status = U_ILLEGAL_ARGUMENT_ERROR; in _appendScriptToLanguageTag()
1084 *status = U_ILLEGAL_ARGUMENT_ERROR; in _appendScriptToLanguageTag()
1095 _appendRegionToLanguageTag(const char* localeID, icu::ByteSink& sink, UBool strict, UErrorCode* status) { in _appendRegionToLanguageTag() argument
1148 _appendVariantsToLanguageTag(const char* localeID, icu::ByteSink& sink, UBool strict, UBool *hadPosix, UErrorCode* status) _appendVariantsToLanguageTag() argument
1265 _appendKeywordsToLanguageTag(const char* localeID, icu::ByteSink& sink, UBool strict, UBool hadPosix, UErrorCode* status) _appendKeywordsToLanguageTag() argument
1521 _appendLDMLExtensionAsKeywords(const char* ldmlext, ExtensionListEntry** appendTo, icu::MemoryPool<ExtensionListEntry>& extPool, icu::MemoryPool<icu::CharString>& kwdBuf, UBool *posixVariant, UErrorCode *status) _appendLDMLExtensionAsKeywords() argument
1792 _appendKeywords(ULanguageTag* langtag, icu::ByteSink& sink, UErrorCode* status) _appendKeywords() argument
1888 _appendPrivateuseToLanguageTag(const char* localeID, icu::ByteSink& sink, UBool strict, UBool hadPosix, UErrorCode* status) _appendPrivateuseToLanguageTag() argument
1998 ultag_parse(const char* tag, int32_t tagLen, int32_t* parsedLen, UErrorCode* status) ultag_parse() argument
2594 uloc_toLanguageTag(const char* localeID, char* langtag, int32_t langtagCapacity, UBool strict, UErrorCode* status) uloc_toLanguageTag() argument
2623 ulocimp_toLanguageTag(const char* localeID, icu::ByteSink& sink, UBool strict, UErrorCode* status) ulocimp_toLanguageTag() argument
2695 uloc_forLanguageTag(const char* langtag, char* localeID, int32_t localeIDCapacity, int32_t* parsedLength, UErrorCode* status) uloc_forLanguageTag() argument
2724 ulocimp_forLanguageTag(const char* langtag, int32_t tagLen, icu::ByteSink& sink, int32_t* parsedLength, UErrorCode* status) ulocimp_forLanguageTag() argument
[all...]
H A Dservloc.h83 UErrorCode& status);
91 UErrorCode& status);
241 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const override;
244 virtual UBool handlesKey(const ICUServiceKey& key, UErrorCode& status) const;
251 virtual void updateVisibleIDs(Hashtable& result, UErrorCode& status) const override;
263 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* service, UErrorCode& status) const;
269 // virtual UBool isSupportedID(const UnicodeString& id, UErrorCode& status) const;
276 virtual const Hashtable* getSupportedIDs(UErrorCode& status) const;
327 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const override;
333 virtual void updateVisibleIDs(Hashtable& result, UErrorCode& status) cons
[all...]
/third_party/backends/backend/genesys/
H A Dstatus.cpp23 #include "status.h"
28 std::ostream& operator<<(std::ostream& out, Status status) in operator <<() argument
31 << " replugged: " << (status.is_replugged ? "yes" : "no") << '\n' in operator <<()
32 << " is_buffer_empty: " << (status.is_buffer_empty ? "yes" : "no") << '\n' in operator <<()
33 << " is_feeding_finished: " << (status.is_feeding_finished ? "yes" : "no") << '\n' in operator <<()
34 << " is_scanning_finished: " << (status.is_scanning_finished ? "yes" : "no") << '\n' in operator <<()
35 << " is_at_home: " << (status.is_at_home ? "yes" : "no") << '\n' in operator <<()
36 << " is_lamp_on: " << (status.is_lamp_on ? "yes" : "no") << '\n' in operator <<()
37 << " is_front_end_busy: " << (status.is_front_end_busy ? "yes" : "no") << '\n' in operator <<()
38 << " is_motor_enabled: " << (status in operator <<()
[all...]
/third_party/backends/backend/
H A Dmustek_usb2_asic.c56 SANE_Status status = SANE_STATUS_GOOD; in WriteIOControl() local
58 status = in WriteIOControl()
61 if (status != SANE_STATUS_GOOD) in WriteIOControl()
64 return status; in WriteIOControl()
74 SANE_Status status = SANE_STATUS_GOOD; in ReadIOControl() local
76 status = in ReadIOControl()
79 if (status != SANE_STATUS_GOOD) in ReadIOControl()
82 return status; in ReadIOControl()
85 return status; in ReadIOControl()
91 SANE_Status status in Mustek_ClearFIFO() local
117 SANE_Status status = SANE_STATUS_GOOD; Mustek_SendData() local
179 SANE_Status status = SANE_STATUS_GOOD; Mustek_ReceiveData() local
193 SANE_Status status = SANE_STATUS_GOOD; Mustek_WriteAddressLineForRegister() local
212 SANE_Status status = SANE_STATUS_GOOD; SetRWSize() local
253 SANE_Status status = SANE_STATUS_GOOD; Mustek_DMARead() local
309 SANE_Status status = SANE_STATUS_GOOD; Mustek_DMAWrite() local
438 SANE_Status status = SANE_STATUS_GOOD; LLFRamAccess() local
507 SANE_Status status = SANE_STATUS_GOOD; LLFSetMotorCurrentAndPhase() local
1564 SANE_Status status = SANE_STATUS_GOOD; LLFStopMotorMove() local
1579 SANE_Status status = SANE_STATUS_GOOD; LLFSetMotorTable() local
1615 SANE_Status status = SANE_STATUS_GOOD; LLFMotorMove() local
1758 SANE_Status status = SANE_STATUS_GOOD; SetMotorStepTable() local
1898 SANE_Status status = SANE_STATUS_GOOD; CalculateMotorTable() local
1986 SANE_Status status = SANE_STATUS_GOOD; LLFCalculateMotorTable() local
2092 SANE_Status status = SANE_STATUS_GOOD; SetMotorCurrent() local
2141 SANE_Status status = SANE_STATUS_GOOD; MotorBackHome() local
2191 SANE_Status status = SANE_STATUS_GOOD; LLFSetRamAddress() local
2225 SANE_Status status = SANE_STATUS_GOOD; InitTiming() local
2273 SANE_Status status = SANE_STATUS_GOOD; OpenScanChip() local
2316 SANE_Status status = SANE_STATUS_GOOD; CloseScanChip() local
2359 SANE_Status status = SANE_STATUS_GOOD; SafeInitialChip() local
2391 SANE_Status status = SANE_STATUS_GOOD; DRAM_Test() local
2538 SANE_Status status = SANE_STATUS_GOOD; SetPowerSave() local
2558 SANE_Status status = SANE_STATUS_GOOD; SetLineTimeAndExposure() local
2590 SANE_Status status = SANE_STATUS_GOOD; CCDTiming() local
2707 SANE_Status status = SANE_STATUS_GOOD; IsCarriageHome() local
2738 SANE_Status status = SANE_STATUS_GOOD; GetChipStatus() local
2761 SANE_Status status = SANE_STATUS_GOOD; SetAFEGainOffset() local
2924 SANE_Status status = SANE_STATUS_GOOD; SetLEDTime() local
2961 SANE_Status status = SANE_STATUS_GOOD; SetScanMode() local
3027 SANE_Status status = SANE_STATUS_GOOD; SetPackAddress() local
3409 SANE_Status status = SANE_STATUS_GOOD; SetExtraSetting() local
3538 SANE_Status status; Asic_Open() local
3625 SANE_Status status; Asic_Close() local
3661 SANE_Status status = SANE_STATUS_GOOD; Asic_TurnLamp() local
3733 SANE_Status status = SANE_STATUS_GOOD; Asic_WaitUnitReady() local
3772 SANE_Status status = SANE_STATUS_GOOD; Asic_Release() local
3788 SANE_Status status = SANE_STATUS_GOOD; Asic_Initialize() local
3822 SANE_Status status = SANE_STATUS_GOOD; Asic_SetWindow() local
4275 SANE_Status status = SANE_STATUS_GOOD; Asic_Reset() local
4303 SANE_Status status = SANE_STATUS_GOOD; Asic_SetSource() local
4329 SANE_Status status = SANE_STATUS_GOOD; Asic_ScanStart() local
4353 SANE_Status status = SANE_STATUS_GOOD; Asic_ScanStop() local
4409 SANE_Status status = SANE_STATUS_GOOD; Asic_ReadImage() local
4449 SANE_Status status = SANE_STATUS_GOOD; Asic_CheckFunctionKey() local
4519 SANE_Status status = SANE_STATUS_GOOD; Asic_DownloadGammaTable() local
4533 SANE_Status status = SANE_STATUS_GOOD; Asic_ReadCalibrationData() local
4598 SANE_Status status = SANE_STATUS_GOOD; Asic_SetMotorType() local
4617 SANE_Status status = SANE_STATUS_GOOD; Asic_MotorMove() local
4681 SANE_Status status = SANE_STATUS_GOOD; Asic_CarriageHome() local
4702 SANE_Status status = SANE_STATUS_GOOD; Asic_SetShadingTable() local
4806 SANE_Status status = SANE_STATUS_GOOD; Asic_WaitCarriageHome() local
4838 SANE_Status status = SANE_STATUS_GOOD; Asic_SetCalibrate() local
5247 SANE_Status status = SANE_STATUS_GOOD; Asic_SetAFEGainOffset() local
[all...]
H A Ds9036.c95 SANE_Status status; in test_ready() local
101 status = sanei_scsi_cmd (fd, scsi_test_ready, sizeof (scsi_test_ready), in test_ready()
104 switch (status) in test_ready()
111 return status; in test_ready()
115 sane_strstatus (status)); in test_ready()
116 return status; in test_ready()
202 SANE_Status status; in wait_ready() local
206 status = sanei_scsi_cmd (fd, scsi_read, sizeof (scsi_read), in wait_ready()
209 if (status != SANE_STATUS_GOOD || size != WAIT_READY_READ_SIZE) in wait_ready()
254 SANE_Status status; in get_read_sizes() local
408 SANE_Status status; request_more_data() local
451 SANE_Status status; read_more_data() local
540 SANE_Status status; attach() local
906 SANE_Status status; sane_open() local
971 SANE_Status status; sane_control_option() local
1131 SANE_Status status; sane_start() local
1273 SANE_Status status; sane_read() local
[all...]
/third_party/icu/icu4c/source/i18n/unicode/
H A Dtblcoll.h122 * @param status reporting a success or an error.
125 RuleBasedCollator(const UnicodeString& rules, UErrorCode& status);
133 * @param status reporting a success or an error.
138 UErrorCode& status);
146 * @param status reporting a success or an error.
151 UErrorCode& status);
160 * @param status reporting a success or an error.
166 UErrorCode& status);
198 * @param status for catching errors
205 UErrorCode &status);
[all...]
H A Dmsgfmt.h172 * <td><code>NumberFormat.createInstance(getLocale(), status)</code>
175 * <td><code>NumberFormat.createInstance(getLocale(), kNumberStyle, status)</code>
178 * <td><code>NumberFormat.createCurrencyInstance(getLocale(), status)</code>
181 * <td><code>NumberFormat.createPercentInstance(getLocale(), status)</code>
184 * <td><code>new DecimalFormat(argStyleText, new DecimalFormatSymbols(getLocale(), status), status)</code>
187 * <td><code>NumberFormatter::forSkeleton(argSkeletonText, status).locale(getLocale()).toFormat(status)</code>
191 * <td><code>DateFormat.createDateInstance(kDefault, getLocale(), status)</code>
194 * <td><code>DateFormat.createDateInstance(kShort, getLocale(), status)</cod
[all...]
H A Dudat.h48 * UErrorCode status = U_ZERO_ERROR;
51 * UDateFormat* dfmt = udat_open(UDAT_DEFAULT, UDAT_DEFAULT, NULL, NULL, -1, NULL, -1, &status);
52 * myStrlen = udat_format(dfmt, myDate, NULL, myStrlen, NULL, &status);
53 * if (status==U_BUFFER_OVERFLOW_ERROR){
54 * status=U_ZERO_ERROR;
56 * udat_format(dfmt, myDate, myString, myStrlen+1, NULL, &status);
65 * UErrorCode status = U_ZERO_ERROR;
70 * UDateFormat* df = udat_open(UDAT_DEFAULT, UDAT_DEFAULT, NULL, NULL, -1, NULL, 0, &status);
72 * myStrlen = udat_format(df, myDateArr[i], NULL, myStrlen, NULL, &status);
73 * if(status
[all...]
H A Ddtitvfmt.h92 UnicodeString toString(UErrorCode& status) const U_OVERRIDE;
95 UnicodeString toTempString(UErrorCode& status) const U_OVERRIDE;
98 Appendable &appendTo(Appendable& appendable, UErrorCode& status) const U_OVERRIDE;
101 UBool nextPosition(ConstrainedFieldPosition& cfpos, UErrorCode& status) const U_OVERRIDE;
288 * UErrorCode status = U_ZERO_ERROR;
291 * Locale("en", "GB", ""), status);
295 * dtIntervalFmt->format(dtInterval, dateIntervalUnicodeString, pos, status);
312 * @param status output param set to success/failure code on exit
318 UErrorCode& status);
333 * DateIntervalFormat::createInstance(UDAT_MONTH_DAY, status)
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtfsmalls.cpp24 /*static UBool chkstatus( UErrorCode &status, char* msg = NULL )
26 UBool ok = (status == U_ZERO_ERROR);
89 UErrorCode status = U_ZERO_ERROR; in test_FieldPosition_example() local
90 DecimalFormat* fmt = (DecimalFormat*) NumberFormat::createInstance(status); in test_FieldPosition_example()
91 if (U_FAILURE(status)) { in test_FieldPosition_example()
166 UErrorCode status = U_ZERO_ERROR; in test_Formattable() local
177 status = U_ZERO_ERROR; in test_Formattable()
178 fta.getLong(&status); in test_Formattable()
179 if ( status == U_INVALID_FORMAT_ERROR){ in test_Formattable()
180 it_errln("*** FT getLong(UErrorCode* status) faile in test_Formattable()
[all...]
/third_party/icu/icu4c/source/common/
H A Dservloc.h83 UErrorCode& status);
91 UErrorCode& status);
241 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const override;
244 virtual UBool handlesKey(const ICUServiceKey& key, UErrorCode& status) const;
251 virtual void updateVisibleIDs(Hashtable& result, UErrorCode& status) const override;
263 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* service, UErrorCode& status) const;
269 // virtual UBool isSupportedID(const UnicodeString& id, UErrorCode& status) const;
276 virtual const Hashtable* getSupportedIDs(UErrorCode& status) const;
327 virtual UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const override;
333 virtual void updateVisibleIDs(Hashtable& result, UErrorCode& status) cons
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dscriptset.cpp56 UBool ScriptSet::test(UScriptCode script, UErrorCode &status) const { in test()
57 if (U_FAILURE(status)) { in test()
61 status = U_ILLEGAL_ARGUMENT_ERROR; in test()
70 ScriptSet &ScriptSet::set(UScriptCode script, UErrorCode &status) { in set() argument
71 if (U_FAILURE(status)) { in set()
75 status = U_ILLEGAL_ARGUMENT_ERROR; in set()
84 ScriptSet &ScriptSet::reset(UScriptCode script, UErrorCode &status) { in reset() argument
85 if (U_FAILURE(status)) { in reset()
89 status = U_ILLEGAL_ARGUMENT_ERROR; in reset()
114 ScriptSet &ScriptSet::intersect(UScriptCode script, UErrorCode &status) { in intersect() argument
179 UErrorCode status = U_ZERO_ERROR; nextSetBit() local
210 parseScripts(const UnicodeString &scriptString, UErrorCode &status) parseScripts() argument
244 setScriptExtensions(UChar32 codePoint, UErrorCode& status) setScriptExtensions() argument
[all...]
/third_party/node/deps/cares/src/lib/
H A Dares_gethostbyname.c66 static void ares_gethostbyname_callback(void *arg, int status, int timeouts, in ares_gethostbyname_callback() argument
72 if (status == ARES_SUCCESS) { in ares_gethostbyname_callback()
73 status = (int)ares__addrinfo2hostent(result, AF_UNSPEC, &hostent); in ares_gethostbyname_callback()
79 if (status == ARES_SUCCESS && hostent && in ares_gethostbyname_callback()
81 status = ARES_ENODATA; in ares_gethostbyname_callback()
84 if (status == ARES_SUCCESS && ghbn_arg->channel->nsort && hostent) { in ares_gethostbyname_callback()
95 ghbn_arg->callback(ghbn_arg->arg, status, timeouts, hostent); in ares_gethostbyname_callback()
242 ares_status_t status; in ares__hostent_localhost() local
251 status = ARES_ENOMEM; in ares__hostent_localhost()
255 status in ares__hostent_localhost()
277 ares_status_t status; ares_gethostbyname_file_int() local
321 ares_status_t status; ares_gethostbyname_file() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dscriptset.cpp56 UBool ScriptSet::test(UScriptCode script, UErrorCode &status) const { in test()
57 if (U_FAILURE(status)) { in test()
61 status = U_ILLEGAL_ARGUMENT_ERROR; in test()
70 ScriptSet &ScriptSet::set(UScriptCode script, UErrorCode &status) { in set() argument
71 if (U_FAILURE(status)) { in set()
75 status = U_ILLEGAL_ARGUMENT_ERROR; in set()
84 ScriptSet &ScriptSet::reset(UScriptCode script, UErrorCode &status) { in reset() argument
85 if (U_FAILURE(status)) { in reset()
89 status = U_ILLEGAL_ARGUMENT_ERROR; in reset()
114 ScriptSet &ScriptSet::intersect(UScriptCode script, UErrorCode &status) { in intersect() argument
179 UErrorCode status = U_ZERO_ERROR; nextSetBit() local
210 parseScripts(const UnicodeString &scriptString, UErrorCode &status) parseScripts() argument
244 setScriptExtensions(UChar32 codePoint, UErrorCode& status) setScriptExtensions() argument
[all...]

Completed in 40 milliseconds

1...<<31323334353637383940>>...247