Lines Matching refs:subBundle

76     UResourceBundle *subRootBundle = NULL, *subBundle = NULL, *arr = NULL;  in TestKeyInRootRecursive()  local
87 subBundle = ures_getNextResource(currentBundle, NULL, &errorCode); in TestKeyInRootRecursive()
92 subBundleKey = ures_getKey(subBundle); in TestKeyInRootRecursive()
102 ures_close(subBundle); in TestKeyInRootRecursive()
105 if (ures_getType(subRootBundle) != ures_getType(subBundle)) { in TestKeyInRootRecursive()
112 ures_getType(subBundle)); in TestKeyInRootRecursive()
113 ures_close(subBundle); in TestKeyInRootRecursive()
116 else if (ures_getType(subBundle) == URES_INT_VECTOR) { in TestKeyInRootRecursive()
122 const int32_t *subBundleArr = ures_getIntVector(subBundle, &subBundleSize, &errorCode); in TestKeyInRootRecursive()
156 else if (ures_getType(subBundle) == URES_ARRAY) { in TestKeyInRootRecursive()
157 UResourceBundle *subSubBundle = ures_getByIndex(subBundle, 0, NULL, &errorCode); in TestKeyInRootRecursive()
164 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive()
171 if (minSize > ures_getSize(subBundle)) { in TestKeyInRootRecursive()
172 minSize = ures_getSize(subBundle); in TestKeyInRootRecursive()
177 && ures_getSize(subRootBundle) != ures_getSize(subBundle)) in TestKeyInRootRecursive()
185 ures_getSize(subBundle)); in TestKeyInRootRecursive()
199 … const UChar *localeStr = ures_getStringByIndex(subBundle,idx,&localeStrLen,&errorCode); in TestKeyInRootRecursive()
210 arr = ures_getByIndex(subBundle,idx,NULL,&errorCode); in TestKeyInRootRecursive()
329 else if (ures_getType(subBundle) == URES_STRING) { in TestKeyInRootRecursive()
331 const UChar *string = ures_getString(subBundle, &len, &errorCode); in TestKeyInRootRecursive()
416 else if (ures_getType(subBundle) == URES_TABLE) { in TestKeyInRootRecursive()
419 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive()
425 else if (ures_getType(subBundle) == URES_BINARY || ures_getType(subBundle) == URES_INT) { in TestKeyInRootRecursive()
438 ures_getType(subBundle), in TestKeyInRootRecursive()
444 ures_close(subBundle); in TestKeyInRootRecursive()
1383 UResourceBundle *subBundle; in TestCurrencyList() local
1397 subBundle = ures_getNextResource(currencies, NULL, &errorCode); in TestCurrencyList()
1398 structISOCode = ures_getKey(subBundle); in TestCurrencyList()
1399 ures_close(subBundle); in TestCurrencyList()