HomeSort by relevance Sort by last modified time
    Searched refs:actualReturn (Results 1 - 12 of 12) sorted by null

  /external/chromium/third_party/icu/source/common/
servls.cpp 62 ICULocaleService::get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const
64 return get(locale, LocaleKey::KIND_ANY, actualReturn, status);
68 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
81 if (actualReturn == NULL) {
89 LocaleUtility::initLocaleFromName(temp, *actualReturn);
serv.h 605 * @param actualReturn a pointer to a UnicodeString to hold the matched descriptor, or NULL.
609 UObject* get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const;
621 * <p>Given a key, return a service object, and, if actualReturn
623 * first element of actualReturn. If no service object matches
624 * this key, returns NULL and leaves actualReturn unchanged.</p>
638 * @param actualReturn a pointer to a UnicodeString to hold the matched descriptor, or NULL.
642 virtual UObject* getKey(ICUServiceKey& key, UnicodeString* actualReturn, UErrorCode& status) const;
651 * @param actualReturn a pointer to a UnicodeString to hold the matched descriptor, or NULL.
656 UObject* getKey(ICUServiceKey& key, UnicodeString* actualReturn, const ICUServiceFactory* factory, UErrorCode& status) const;
    [all...]
servloc.h 454 UObject* get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const {
455 return ICUService::get(descriptor, actualReturn, status);
462 * actualReturn.
468 * get(Locale, int, Locale[]) with a null actualReturn.
476 UObject* get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const;
481 * if actualReturn is not null, returns the actualResult from
484 UObject* get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const;
serv.cpp 372 ICUService::get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const
377 result = getKey(*key, actualReturn, status);
393 ICUService::getKey(ICUServiceKey& key, UnicodeString* actualReturn, UErrorCode& status) const
395 return getKey(key, actualReturn, NULL, status);
426 ICUService::getKey(ICUServiceKey& key, UnicodeString* actualReturn, const ICUServiceFactory* factory, UErrorCode& status) const
433 return handleDefault(key, actualReturn, status);
566 if (actualReturn != NULL) {
569 actualReturn->remove();
570 actualReturn->append(result->actualDescriptor,
574 *actualReturn = result->actualDescriptor
    [all...]
  /external/icu4c/common/
servls.cpp 62 ICULocaleService::get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const
64 return get(locale, LocaleKey::KIND_ANY, actualReturn, status);
68 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
81 if (actualReturn == NULL) {
89 LocaleUtility::initLocaleFromName(temp, *actualReturn);
serv.h 605 * @param actualReturn a pointer to a UnicodeString to hold the matched descriptor, or NULL.
609 UObject* get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const;
621 * <p>Given a key, return a service object, and, if actualReturn
623 * first element of actualReturn. If no service object matches
624 * this key, returns NULL and leaves actualReturn unchanged.</p>
638 * @param actualReturn a pointer to a UnicodeString to hold the matched descriptor, or NULL.
642 virtual UObject* getKey(ICUServiceKey& key, UnicodeString* actualReturn, UErrorCode& status) const;
651 * @param actualReturn a pointer to a UnicodeString to hold the matched descriptor, or NULL.
656 UObject* getKey(ICUServiceKey& key, UnicodeString* actualReturn, const ICUServiceFactory* factory, UErrorCode& status) const;
    [all...]
servloc.h 454 UObject* get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const {
455 return ICUService::get(descriptor, actualReturn, status);
462 * actualReturn.
468 * get(Locale, int, Locale[]) with a null actualReturn.
476 UObject* get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const;
481 * if actualReturn is not null, returns the actualResult from
484 UObject* get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const;
serv.cpp 372 ICUService::get(const UnicodeString& descriptor, UnicodeString* actualReturn, UErrorCode& status) const
377 result = getKey(*key, actualReturn, status);
393 ICUService::getKey(ICUServiceKey& key, UnicodeString* actualReturn, UErrorCode& status) const
395 return getKey(key, actualReturn, NULL, status);
426 ICUService::getKey(ICUServiceKey& key, UnicodeString* actualReturn, const ICUServiceFactory* factory, UErrorCode& status) const
433 return handleDefault(key, actualReturn, status);
566 if (actualReturn != NULL) {
569 actualReturn->remove();
570 actualReturn->append(result->actualDescriptor,
574 *actualReturn = result->actualDescriptor
    [all...]
  /external/chromium/third_party/icu/source/i18n/
coll.cpp 163 virtual UObject* getKey(ICUServiceKey& key, UnicodeString* actualReturn, UErrorCode& status) const {
165 if (actualReturn == NULL) {
166 actualReturn = &ar;
168 Collator* result = (Collator*)ICULocaleService::getKey(key, actualReturn, status);
169 // Ugly Hack Alert! If the actualReturn length is zero, this
175 if (result && actualReturn->length() > 0) {
180 LocaleUtility::initLocaleFromName(*actualReturn, currentLocale);
  /external/icu4c/i18n/
coll.cpp 163 virtual UObject* getKey(ICUServiceKey& key, UnicodeString* actualReturn, UErrorCode& status) const {
165 if (actualReturn == NULL) {
166 actualReturn = &ar;
168 Collator* result = (Collator*)ICULocaleService::getKey(key, actualReturn, status);
169 // Ugly Hack Alert! If the actualReturn length is zero, this
175 if (result && actualReturn->length() > 0) {
180 LocaleUtility::initLocaleFromName(*actualReturn, currentLocale);
  /external/chromium/third_party/icu/source/test/intltest/
icusvtst.cpp     [all...]
  /external/icu4c/test/intltest/
icusvtst.cpp     [all...]

Completed in 263 milliseconds