/external/icu4c/common/ |
unisetspan.cpp | 53 * UnicodeSet does not have a limit on the lengths of strings. 205 : spanSet(0, 0x10ffff), pSpanNotSet(NULL), strings(setStrings), 217 // Determine if the strings even need to be taken into account at all for span() etc. 218 // If any string is relevant, then all strings need to be used for 221 // and do not store UTF-8 strings if !thisRelevant and CONTAINED. 222 // (Only store irrelevant UTF-8 strings for LONGEST_MATCH where they are relevant after all.) 223 // Also count the lengths of the UTF-8 versions of the strings for memory allocation. 224 int32_t stringsLength=strings.size(); 229 const UnicodeString &string=*(const UnicodeString *)strings.elementAt(i); 255 // Freeze after checking for the need to use strings at all because freezin [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
StringIdsSection.java | 30 * Strings list section of a {@code .dex} file. 38 private final TreeMap<CstUtf8, StringIdItem> strings; field in class:StringIdsSection 48 strings = new TreeMap<CstUtf8, StringIdItem>(); 54 return strings.values(); 70 IndexedItem result = strings.get((CstUtf8) cst); 87 int sz = strings.size(); 146 StringIdItem already = strings.get(value); 152 strings.put(value, string); 180 StringIdItem s = strings.get(string); 205 for (StringIdItem s : strings.values()) [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
StringIdsSection.java | 28 * Strings list section of a {@code .dex} file. 36 private final TreeMap<CstString, StringIdItem> strings; field in class:StringIdsSection 46 strings = new TreeMap<CstString, StringIdItem>(); 52 return strings.values(); 64 IndexedItem result = strings.get((CstString) cst); 81 int sz = strings.size(); 128 StringIdItem already = strings.get(value); 134 strings.put(value, string); 162 StringIdItem s = strings.get(string); 176 for (StringIdItem s : strings.values()) [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_blocking_page.cc | 164 DictionaryValue strings; local 174 PopulateMultipleThreatStringDictionary(&strings); 179 PopulateMalwareStringDictionary(&strings); 184 PopulatePhishingStringDictionary(&strings); 188 return jstemplate_builder::GetTemplatesHtml(html, &strings, "template_root"); 192 DictionaryValue* strings, 198 strings->SetString("title", title); 199 strings->SetString("headLine", headline); 200 strings->SetString("description1", description1); 201 strings->SetString("description2", description2) 562 DictionaryValue strings; local [all...] |
/external/chromium_org/chrome/browser/chromeos/login/ |
merge_session_load_page.cc | 12 #include "base/strings/string_piece.h" 13 #include "base/strings/stringprintf.h" 14 #include "base/strings/utf_string_conversions.h" 79 DictionaryValue strings; local 80 strings.SetString("title", web_contents_->GetTitle()); 82 strings.SetInteger("show_delay_time", kShowDelayTimeMS); 83 strings.SetInteger("total_wait_time", kTotalWaitTimeMS); 86 strings.SetString("heading", 90 strings.SetString("textdirection", rtl ? "rtl" : "ltr"); 95 return webui::GetI18nTemplateHtml(html, &strings); [all...] |
/external/chromium_org/chrome/browser/managed_mode/ |
managed_mode_interstitial.cc | 10 #include "base/strings/utf_string_conversions.h" 103 DictionaryValue strings; local 104 strings.SetString("blockPageTitle", 113 strings.SetBoolean("allowAccessRequests", allow_access_requests); 117 strings.SetString( 125 strings.SetString("backButton", l10n_util::GetStringUTF16(IDS_BACK_BUTTON)); 126 strings.SetString( 130 strings.SetString( 135 webui::SetFontAndTextDirection(&strings); 141 return webui::GetI18nTemplateHtml(html, &strings); [all...] |
/external/chromium_org/third_party/ots/src/ |
post.cc | 41 // We have a version 2 table with a list of Pascal strings at the end 84 // Now we have an array of Pascal strings. We have to check that they are all 87 const uint8_t *strings = data + strings_offset; local 91 if (strings == strings_end) break; 92 const unsigned string_length = *strings; 93 if (strings + 1 + string_length > strings_end) { 96 if (std::memchr(strings + 1, '\0', string_length)) { 100 std::string(reinterpret_cast<const char*>(strings + 1), string_length)); 101 strings += 1 + string_length; 159 // Now we just have to write out the strings in the correct orde [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
StringIdsSection.java | 29 * Strings list section of a {@code .dex} file. 37 private final TreeMap<CstString, StringIdItem> strings; field in class:StringIdsSection 47 strings = new TreeMap<CstString, StringIdItem>(); 53 return strings.values(); 65 IndexedItem result = strings.get((CstString) cst); 82 int sz = strings.size(); 129 StringIdItem already = strings.get(value); 135 strings.put(value, string); 163 StringIdItem s = strings.get(string); 177 for (StringIdItem s : strings.values()) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableSortedSetTest.java | 819 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 820 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); 821 Arrays.sort(strings); 822 for (int i = 0; i < strings.length; i++) { 823 ASSERT.that(set.headSet(strings[i], true)) 829 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 830 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); 831 Arrays.sort(strings); 832 for (int i = 0; i < strings.length; i++) { 833 ASSERT.that(set.headSet(strings[i], false)).hasContentsInOrder(sortedNumberNames(0, i)) 838 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 848 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 858 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 870 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 882 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 894 String[] strings = NUMBER_NAMES.toArray(new String[0]); local [all...] |
/external/apache-xml/src/main/java/org/apache/xml/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. 36 /** Array of strings this table points to. Associated with ints 40 /** Array of ints this table points. Associated with strings from 183 * @return Array of strings
|
/external/bison/po/ |
Makevars | 27 # package. (Note that the msgstr strings, extracted from the package's 36 # bugs in the untranslated strings: 37 # - Strings which are not entire sentences, see the maintainer guidelines 38 # in the GNU gettext documentation, section 'Preparing Strings'. 39 # - Strings which use unclear terms or require additional context to be 41 # - Strings which make invalid assumptions about notation of date, time or
|
/external/bison/runtime-po/ |
Makevars | 29 # package. (Note that the msgstr strings, extracted from the package's 38 # bugs in the untranslated strings: 39 # - Strings which are not entire sentences, see the maintainer guidelines 40 # in the GNU gettext documentation, section 'Preparing Strings'. 41 # - Strings which use unclear terms or require additional context to be 43 # - Strings which make invalid assumptions about notation of date, time or
|
/external/icu4c/test/intltest/ |
colldata.cpp | 168 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) 174 strings = new UnicodeString [listMax]; 176 if (strings == NULL) { 184 delete[] strings; 200 newStrings[i] = strings[i]; 202 delete[] strings; 203 strings = newStrings; 207 // The ctor initialized all the strings in 208 // the array to empty strings, so this 210 strings[listSize++].append(*string) 239 StringList *strings = (StringList *) obj; local 284 StringList *strings = getStringList(ce); local 503 const StringList *strings = ceToCharsStartingWith->getStringList(ce); local [all...] |
/frameworks/base/docs/html/training/notepad/codelab/ |
NotepadCodeLab.zip | |
/ndk/sources/host-tools/make-3.81/po/ |
Makevars | 32 # package. (Note that the msgstr strings, extracted from the package's 41 # bugs in the untranslated strings: 42 # - Strings which are not entire sentences, see the maintainer guidelines 43 # in the GNU gettext documentation, section 'Preparing Strings'. 44 # - Strings which use unclear terms or require additional context to be 46 # - Strings which make invalid assumptions about notation of date, time or
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
Makevars | 28 # package. (Note that the msgstr strings, extracted from the package's 37 # bugs in the untranslated strings: 38 # - Strings which are not entire sentences, see the maintainer guidelines 39 # in the GNU gettext documentation, section 'Preparing Strings'. 40 # - Strings which use unclear terms or require additional context to be 42 # - Strings which make invalid assumptions about notation of date, time or
|
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/ |
DOMInputCapsule.java | 153 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 156 if (strings.length != requiredSize) 160 + strings.length); 162 byte[] tmp = new byte[strings.length]; 163 for (int i = 0; i < strings.length; i++) { 164 tmp[i] = Byte.parseByte(strings[i]); 254 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 257 if (strings.length != requiredSize) 260 + ", data contains " + strings.length); 262 int[] tmp = new int[strings.length] 357 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 396 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 443 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 542 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 641 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 737 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 829 List<String> strings = new ArrayList<String>(); local 910 String[] strings = parseTokens(tmpString); local 1327 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 1360 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 1393 String[] strings = parseTokens(tmpEl.getAttribute("data")); local 1426 String[] strings = parseTokens(tmpEl.getAttribute("data")); local [all...] |
/external/chromium_org/base/ |
base.gypi | 493 'strings/latin1_string_conversions.cc', 494 'strings/latin1_string_conversions.h', 495 'strings/nullable_string16.cc', 496 'strings/nullable_string16.h', 497 'strings/safe_sprintf.cc', 498 'strings/safe_sprintf.h', 499 'strings/string16.cc', 500 'strings/string16.h', 501 'strings/string_number_conversions.cc', 502 'strings/string_split.cc' [all...] |
/developers/build/templates/SingleView/_MODULE_/ |
README-singleview.txt | 23 This element should be a child of <strings>: 24 <strings> 28 </strings>
|
/developers/samples/android/background/alarms/RepeatingAlarm/RepeatingAlarmSample/ |
README-singleview.txt | 23 This element should be a child of <strings>: 24 <strings> 28 </strings>
|
/developers/samples/android/content/documentsUi/StorageClient/StorageClientSample/ |
README-singleview.txt | 23 This element should be a child of <strings>: 24 <strings> 28 </strings>
|
/developers/samples/android/content/documentsUi/StorageProvider/StorageProviderSample/ |
README-singleview.txt | 23 This element should be a child of <strings>: 24 <strings> 28 </strings>
|
/developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetectSample/ |
README-singleview.txt | 23 This element should be a child of <strings>: 24 <strings> 28 </strings>
|
/developers/samples/android/ui/window/AdvancedImmersiveMode/AdvancedImmersiveModeSample/ |
README-singleview.txt | 23 This element should be a child of <strings>: 24 <strings> 28 </strings>
|
/developers/samples/android/ui/window/BasicImmersiveMode/BasicImmersiveModeSample/ |
README-singleview.txt | 23 This element should be a child of <strings>: 24 <strings> 28 </strings>
|