Searched defs:strings (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/opengl/tools/glgen/stubs/gles11/
H A DglShaderSource.cpp14 const char* strings[] = {nativeString}; local
15 glShaderSource(shader, 1, strings, 0);
/frameworks/base/tools/localize/
H A DValuesFile_test.cpp10 ValuesFile* vf = ValuesFile::ParseFile("testdata/values/strings.xml", config,
13 const set<StringResource>& strings = vf->GetStrings(); local
17 printf("Strings (%zd)\n", strings.size());
18 for (set<StringResource>::const_iterator it=strings.begin();
19 it!=strings.end(); it++) {
H A DXLIFFFile_test.cpp15 set<StringResource> const& strings = xf->GetStringResources(); local
18 for (set<StringResource>::iterator it=strings.begin(); it!=strings.end(); it++) {
H A Dlocalize_test.cpp36 if (all) err |= test_filename("//device/samples/NotePad/res/values/strings.xml", "zz_ZZ",
37 "//device/samples/NotePad/res/values-zz-rZZ/strings.xml");
39 if (all) err |= test_filename("//device/samples/NotePad/res/values/strings.xml", "zz",
40 "//device/samples/NotePad/res/values-zz/strings.xml");
42 if (all) err |= test_filename("//device/samples/NotePad/res/values/strings.xml", "",
43 "//device/samples/NotePad/res/values/strings.xml");
71 set<StringResource> const& strings = xliff->GetStringResources(); local
72 printf("strings.size=%zd\n", strings.size());
73 for (set<StringResource>::iterator it=strings
104 set<StringResource> const& strings = xliff->GetStringResources(); local
[all...]
H A Dres_check.cpp39 set<StringResource> strings = file->GetStrings(); local
40 for (set<StringResource>::iterator it=strings.begin(); it!=strings.end(); it++) {
H A Dlocalize.cpp118 const set<StringResource>& strings = values->GetStrings(); local
119 for (set<StringResource>::const_iterator it=strings.begin(); it!=strings.end(); it++) {
168 * translation memory or tools to notice that the strings haven't changed, and populate the
323 // pull out the strings and add them to the XLIFFFile
409 " config files translate comments strings\n"
591 " --big Pad strings so they get longer.\n"
600 "Reads the base strings and prints warnings about bad resources from the given files.\n"
/frameworks/base/core/java/android/nfc/
H A DTechListParcel.java27 public TechListParcel(String[]... strings) { argument
28 mTechLists = strings;
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java57 public UsbAccessory(String[] strings) { argument
58 mManufacturer = strings[0];
59 mModel = strings[1];
60 mDescription = strings[2];
61 mVersion = strings[3];
62 mUri = strings[4];
63 mSerial = strings[5];
/frameworks/base/tools/aapt/
H A DStringPool.cpp197 // our client placed their own strings in it.
219 // Now build the pool of unique strings.
261 uint8_t* strings = (uint8_t*)dat; local
263 ENCODE_LENGTH(strings, sizeof(uint8_t), strSize)
265 ENCODE_LENGTH(strings, sizeof(uint8_t), encSize)
267 strncpy((char*)strings, encStr, encSize+1);
269 uint16_t* strings = (uint16_t*)dat; local
271 ENCODE_LENGTH(strings, sizeof(uint16_t), strSize)
273 strcpy16_htod(strings, ent.value);
H A DResourceTable.cpp1235 // Untranslatable strings must only exist in the default [empty] locale
1245 // Don't add untranslatable strings to the localization table; that
2435 // For all strings...
2441 // Look for strings with no default localization
2627 // Iterate through all data, collecting all values (strings,
2711 fprintf(stderr, "**** type strings: %d\n", amt);
2721 fprintf(stderr, "**** key strings: %d\n", amt);
2916 fprintf(stderr, "**** value strings: %d\n", amt);
2917 fprintf(stderr, "**** total strings: %d\n", strAmt);
2937 fprintf(stderr, "**** total resource table size: %d / %d%% strings\
3207 prepareFlatten(StringPool* strings, ResourceTable* table) argument
3600 setStrings(const sp<AaptFile>& data, ResStringPool* strings, DefaultKeyedVector<String16, uint32_t>* mappings) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java109 public static final String[] strings = { "NONE", "WPA_PSK", "WPA_EAP", "IEEE8021X" }; field in class:WifiConfiguration.KeyMgmt
125 public static final String[] strings = { "WPA", "RSN" }; field in class:WifiConfiguration.Protocol
143 public static final String[] strings = { "OPEN", "SHARED", "LEAP" }; field in class:WifiConfiguration.AuthAlgorithm
161 public static final String[] strings = { "NONE", "TKIP", "CCMP" }; field in class:WifiConfiguration.PairwiseCipher
187 public static final String[] strings = { "WEP40", "WEP104", "TKIP", "CCMP" }; field in class:WifiConfiguration.GroupCipher
201 public static final String[] strings = { "current", "disabled", "enabled" }; field in class:WifiConfiguration.Status
331 if (k < KeyMgmt.strings.length) {
332 sbuf.append(KeyMgmt.strings[k]);
342 if (p < Protocol.strings.length) {
343 sbuf.append(Protocol.strings[
[all...]
/frameworks/base/services/java/com/android/server/
H A DWifiService.java1032 lookupString(val, WifiConfiguration.Protocol.strings);
1045 lookupString(val, WifiConfiguration.KeyMgmt.strings);
1058 lookupString(val, WifiConfiguration.AuthAlgorithm.strings);
1071 lookupString(val, WifiConfiguration.PairwiseCipher.strings);
1084 lookupString(val, WifiConfiguration.GroupCipher.strings);
1172 makeString(config.allowedKeyManagement, WifiConfiguration.KeyMgmt.strings);
1186 makeString(config.allowedProtocols, WifiConfiguration.Protocol.strings);
1200 makeString(config.allowedAuthAlgorithms, WifiConfiguration.AuthAlgorithm.strings);
1214 makeString(config.allowedPairwiseCiphers, WifiConfiguration.PairwiseCipher.strings);
1228 makeString(config.allowedGroupCiphers, WifiConfiguration.GroupCipher.strings);
1352 makeString(BitSet set, String[] strings) argument
1372 lookupString(String string, String[] strings) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DPhoneBase.java729 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
730 mCM.invokeOemRilRequestStrings(strings, response);
H A DPhoneProxy.java579 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
580 mActivePhone.invokeOemRilRequestStrings(strings, response);
H A DCommandsInterface.java1194 void invokeOemRilRequestStrings(String[] strings, Message response); argument
H A DPhone.java1194 * @param strings The strings to make available as the request data.
1205 void invokeOemRilRequestStrings(String[] strings, Message response); argument
H A DRIL.java1641 // count strings
1661 // count strings
1721 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
1727 rr.mp.writeStringArray(strings);
2333 String[] strings = (String[]) ret;
2334 length = strings.length;
2338 sb.append(strings[i++]);
2340 sb.append(", ").append(strings[i++]);
2978 String strings[] = (String [])responseStrings(p);
2981 if (strings
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java281 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1214 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
1217 AsyncResult.forMessage(response).result = strings;
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES20.cpp3581 const char* strings[] = {nativeString}; local
3582 glShaderSource(shader, 1, strings, 0);
/frameworks/base/libs/utils/
H A DResourceTypes.cpp320 // check invariant: styles follow the strings
322 LOGW("Bad style block: style block starts at %d, before strings at %d\n",
343 const char16_t* strings = (const char16_t*)mStrings; local
344 char16_t* s = const_cast<char16_t*>(strings);
346 s[i] = dtohs(strings[i]);
456 const char16_t* strings = (char16_t*)mStrings; local
457 const char16_t* str = strings+off;
459 if ((uint32_t)(str+*outLen-strings) < mStringPoolSize) {
463 (int)idx, (int)(str+*outLen-strings), (int)mStringPoolSize);
466 const uint8_t* strings local
507 const uint8_t* strings = (uint8_t*)mStrings; local
[all...]

Completed in 318 milliseconds