/external/vogar/src/vogar/commands/ |
Javac.java | 25 import vogar.util.Strings; 78 return builder.args((Object[]) Strings.objectsToStrings(files)).execute();
|
/frameworks/av/include/media/ |
StringArray.h | 18 // Sortable array of strings. STL-ish, but STL-free. 29 // An expanding array of strings. Add, get, sort, delete.
|
/frameworks/base/docs/html/guide/topics/resources/ |
string-resource.jd | 6 <p>A string resource provides text strings for your application 8 your application with strings:</p> 14 <dd>XML resource that provides an array of strings.</dd> 15 <dt><a href="#Plurals">Quantity Strings (Plurals)</a></dt> 16 <dd>XML resource that carries different strings for pluralization.</dd> 19 <p>All strings are capable of applying some styling markup and formatting arguments. For 20 information about styling and formatting strings, see the section about <a 71 quotation marks. For more information about how to properly style and format your strings see <a 85 <dd>XML file saved at <code>res/values/strings.xml</code>: 123 <p>An array of strings that can be referenced from the application.</p [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
NameConverter.java | 192 String[] strings = phoneticName.split(" ", 3); local 193 switch (strings.length) { 195 family = strings[0]; 198 family = strings[0]; 199 given = strings[1]; 202 family = strings[0]; 203 middle = strings[1]; 204 given = strings[2];
|
/packages/apps/Settings/res/values/ |
config.xml | 26 strings may be inserted into the actual content provider. 29 very long strings too. -->
|
/packages/experimental/CameraPreviewTest/res/values/ |
strings.xml | 17 <!-- This file contains resource definitions for displayed strings, allowing 21 <!-- Simple strings. -->
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_objects.py | 20 The memory block stores pointers to strings, and the strings itself
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_objects.py | 20 The memory block stores pointers to strings, and the strings itself
|
/development/tools/findunused/ |
find_unused_resources.rb | 108 strings = Hash.new 116 strings[id] = FilePosition.new(filename, file.lineno) 147 strings.delete(id) 152 strings.delete(id) 157 strings.delete(id) 163 result.unusedStringIds = strings
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
StringToIntTable.java | 24 * A very simple lookup table that stores a list of strings, the even 25 * number strings being keys, and the odd number strings being values. 43 /** Array of strings this table points to. Associated with ints 47 /** Array of ints this table points. Associated with strings from 190 * @return Array of strings
|
/external/e2fsprogs/intl/ |
gettextP.h | 94 /* Number of static strings pairs. */ 96 /* Pointer to descriptors of original strings in the file. */ 98 /* Pointer to descriptors of translated strings in the file. */ 101 /* Number of system dependent strings pairs. */ 103 /* Pointer to descriptors of original sysdep strings. */ 105 /* Pointer to descriptors of translated sysdep strings. */
|
gmo.h | 82 /* The number of strings pairs. */ 84 /* Offset of table with start offsets of original strings. */ 86 /* Offset of table with start offsets of translated strings. */ 99 /* The number of system dependent strings pairs. */ 101 /* Offset of table with start offsets of original sysdep strings. */ 103 /* Offset of table with start offsets of translated sysdep strings. */
|
/external/icu/icu4c/source/test/cintltst/ |
ulistfmttest.c | 33 static const UChar* strings[] = { str0, str1, str2, str3, str4 }; variable 70 int32_t ulenActual = ulistfmt_format(listfmt, strings, stringLengths, lftep->stringCount, ubufActual, kUBufMax, &status); 83 ulenActual = ulistfmt_format(listfmt, strings, stringLengthsNeg, lftep->stringCount, ubufActual, kUBufMax, &status); 96 ulenActual = ulistfmt_format(listfmt, strings, NULL, lftep->stringCount, ubufActual, kUBufMax, &status); 112 log_err("ERROR: ulistfmt_format for locale %s count %d with NULL strings, expected U_ILLEGAL_ARGUMENT_ERROR, got %s, result %d\n", lftep->locale, 116 ulenActual = ulistfmt_format(listfmt, strings, NULL, lftep->stringCount, NULL, kUBufMax, &status);
|
/external/llvm/include/llvm/Support/ |
StringPool.h | 11 // strings by using the same storage for identical strings. 23 // Pooled strings are immutable, but you can change a PooledStringPtr to point 24 // to another instance. So that interned strings can eventually be freed, 25 // strings in the string pool are reference-counted (automatically). 40 /// string. Strings are removed automatically as PooledStringPtrs are
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
Strings.java | 47 * Because of this simpler case folding, it is the case that for all Strings s 49 * Strings.toUpperCase(s).equals(Strings.toUpperCase(Strings.toLowerCase(s))) 54 final class Strings { 147 private Strings() { /* uninstantiable */ }
|
Trie.java | 158 * Append all strings s such that {@code this.lookup(s).isTerminal()} to the 161 public void toStringList(List<String> strings) { 162 toStringList("", strings); 165 private void toStringList(String prefix, List<String> strings) { 166 if (terminal) { strings.add(prefix); } 168 children[i].toStringList(prefix + childMap[i], strings);
|
/packages/apps/Camera2/src/com/android/camera/settings/ |
SettingsUpgrader.java | 87 * SharedPreferences values to Strings. It can be used by third party 88 * modules to upgrade their boolean settings to Strings. 106 * SharedPreferences values to Strings. It can be used by third party 107 * modules to upgrade their Integer settings to Strings. 125 * SharedPreferences values to Strings. It can be used by third party 126 * modules to upgrade their boolean settings to Strings.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/usb/ |
functionfs.h | 70 * Strings format: 76 * | 8 | str_count | LE32 | number of strings | 78 * | 16 | stringtab | StringTab[lang_count] | table of strings per lang | 86 * | 2 | strings | String[str_count] | array of strings in given language | 88 * For each string there is one strings entry (ie. there are str_count
|
/system/core/libutils/tests/ |
LruCache_test.cpp | 188 char* strings[kNumKeys]; local 191 strings[i] = (char *)malloc(16); 192 sprintf(strings[i], "%zu", i); 202 EXPECT_EQ(strings[index], val); 205 cache.put(key, strings[index]); 214 free((void *)strings[i]);
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3string.c | 111 /* Now we make a new list to track the strings. 113 factory->strings = antlr3VectorNew(0); 116 if (factory->strings == NULL) 204 factory->strings->set(factory->strings, factory->index, (void *) string, (void (ANTLR3_CDECL *)(void *))(stringFree), ANTLR3_TRUE); 233 factory->strings->set(factory->strings, factory->index, (void *) string, (void (ANTLR3_CDECL *)(void *))(stringFree), ANTLR3_TRUE); 267 /* API for 8 bit strings*/ 304 /* API for UTF16 strings */ 416 * \param[in] factory - Pointer to the string factory that owns strings [all...] |
/external/icu/icu4c/source/i18n/ |
uspoof_impl.h | 34 // of input strings being checked. (Used in multiple places.) 143 // For longer strings, the value array contains an index into the strings table. 146 // The strings table contains all of the value strings (those of length two or greater) 149 // The array is arranged by length of the strings - all strings of the same length 150 // are stored together. The sections are ordered by length of the strings - 151 // all two char strings first, followed by all of the three Char strings, etc [all...] |
/external/pcre/dist/doc/ |
pcre16.3 | 131 supports 16-bit character strings, including UTF-16 strings, as well as or 168 In the 8-bit library, strings are passed to PCRE library functions as vectors 169 of bytes with the C type "char *". In the 16-bit library, strings are passed as 187 only difference is that pointers to character strings are 16-bit instead of 199 other 16-bit functions expect the strings they are passed to be in host byte 229 The lengths and starting offsets of subject strings must be specified in 16-bit 230 data units, and the offsets within subject strings that are returned by the 252 validity of UTF-16 strings 282 byte-order mark (BOM). The PCRE functions do not handle this, expecting strings [all...] |
pcre32.3 | 130 supports 32-bit character strings, including UTF-32 strings, as well as or 167 In the 8-bit library, strings are passed to PCRE library functions as vectors 168 of bytes with the C type "char *". In the 32-bit library, strings are passed as 186 only difference is that pointers to character strings are 32-bit instead of 198 other 32-bit functions expect the strings they are passed to be in host byte 228 The lengths and starting offsets of subject strings must be specified in 32-bit 229 data units, and the offsets within subject strings that are returned by the 251 validity of UTF-32 strings 281 byte-order mark (BOM). The PCRE functions do not handle this, expecting strings [all...] |
/libcore/luni/src/main/java/java/text/ |
ChoiceFormat.java | 81 * and associated strings. When calling 93 * the strings associated with the ranges defined through {@code 102 * Constructs a new {@code ChoiceFormat} with the strings and limits parsed 106 * the pattern of strings and ranges. 115 * Parses the pattern to determine new strings and ranges for this 119 * the pattern of strings and ranges. 187 * strings as this {@code ChoiceFormat}. 268 * Returns the strings associated with the ranges of this {@code 271 * @return an array of format strings. 323 * by {@code position}. The string is compared to the strings of thi [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
InstallShortcutReceiver.java | 78 Set<String> strings = sharedPrefs.getStringSet(APPS_PENDING_INSTALL, null); local 79 if (strings == null) { 80 strings = new HashSet<String>(1); 82 strings = new HashSet<String>(strings); 84 strings.add(encoded); 85 sharedPrefs.edit().putStringSet(APPS_PENDING_INSTALL, strings).commit(); 98 Set<String> strings = sp.getStringSet(APPS_PENDING_INSTALL, null); local 100 Log.d(TAG, "APPS_PENDING_INSTALL: " + strings 103 if (strings != null) 122 Set<String> strings = sharedPrefs.getStringSet(APPS_PENDING_INSTALL, null); local [all...] |