Home | History | Annotate | Download | only in aapt

Lines Matching defs:STRINGS

47     printf("String pool of " ZD " unique %s %s strings, " ZD " entries and "
75 // Strings with styles go first, to reduce the size of the styles array.
76 // We don't care about the relative order of these strings.
84 // Sort unstyled strings by type, then by logical configuration.
242 NOISY(printf("SORTING STRINGS BY CONFIGURATION...\n"));
247 NOISY(printf("DONE SORTING STRINGS BY CONFIGURATION.\n"));
378 // our client placed their own strings in it.
400 // Now build the pool of unique strings.
402 const size_t STRINGS = mEntries.size();
414 for (i=0; i<STRINGS; i++) {
442 uint8_t* strings = (uint8_t*)dat;
444 ENCODE_LENGTH(strings, sizeof(uint8_t), strSize)
446 ENCODE_LENGTH(strings, sizeof(uint8_t), encSize)
448 strncpy((char*)strings, encStr, encSize+1);
450 uint16_t* strings = (uint16_t*)dat;
452 ENCODE_LENGTH(strings, sizeof(uint16_t), strSize)
454 strcpy16_htod(strings, ent.value);