/external/pdfium/third_party/freetype/src/sfnt/ |
ttbdf.c | 55 bdf->strings = NULL; 87 FT_ULong strings = FT_NEXT_ULONG ( p ); local 93 strings < 8 || 94 ( strings - 8 ) / 4 < num_strikes || 95 strings + 1 > length ) 101 bdf->strings = bdf->table + strings; 102 bdf->strings_size = length - strings; 122 if ( strike > bdf->strings ) 205 (const char*)bdf->strings + name_offset [all...] |
/ndk/sources/host-tools/make-3.81/config/ |
printf-posix.m4 | 10 dnl Test whether the printf() function supports POSIX/XSI format strings with 16 AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings], 43 [Define if your printf() function supports format strings with positions.])
|
/system/bt/osi/test/ |
array_test.cpp | 58 char strings[][128] = { local 71 array_append_ptr(array, strings[i % 8]); 74 EXPECT_TRUE(!memcmp(array_at(array, i), strings[i % 8], 128));
|
/external/boringssl/src/util/ |
make_errors.go | 27 "strings" 63 prefix := strings.ToUpper(lib) 96 if !strings.HasSuffix(name, ".c") { 187 if !strings.HasPrefix(line, "#define ") { 191 fields := strings.Fields(line) 201 case strings.HasPrefix(key, funcPrefix): 203 case strings.HasPrefix(key, reasonPrefix): 268 lib = strings.ToUpper(lib) 275 sort.Strings(keys) 309 sort.Strings(keys [all...] |
doc.go | 20 "strings" 88 if !strings.HasPrefix(rest[0], commentStart) { 96 i := strings.Index(commentParagraph, commentEnd) 110 if !strings.HasPrefix(line, " *") { 117 if strings.HasPrefix(line, " ") { 196 i := strings.Index(s, skip) 204 i := strings.Index(s, "\n") 212 for strings.HasPrefix(decl, "#if") || strings.HasPrefix(decl, "#elif") { 215 if strings.HasPrefix(decl, "struct ") [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
istmit_test.cpp | 101 vector<string> strings; local 109 copy_n(istream_string_ite(istr), 2, back_inserter(strings)); 110 CPPUNIT_ASSERT( strings.size() == 2 ); 111 CPPUNIT_ASSERT( strings[0] == "AA" ); 112 CPPUNIT_ASSERT( strings[1] == "BB" ); 113 strings.clear(); 123 * again it fails as int can be converted to strings. 130 copy_n(istream_string_ite(istr), 2, back_inserter(strings)); 131 CPPUNIT_ASSERT( strings.size() == 2 ); 132 CPPUNIT_ASSERT( strings[0] == "CC" ) [all...] |
/ndk/tests/device/test-stlport/unit/ |
istmit_test.cpp | 101 vector<string> strings; local 109 copy_n(istream_string_ite(istr), 2, back_inserter(strings)); 110 CPPUNIT_ASSERT( strings.size() == 2 ); 111 CPPUNIT_ASSERT( strings[0] == "AA" ); 112 CPPUNIT_ASSERT( strings[1] == "BB" ); 113 strings.clear(); 123 * again it fails as int can be converted to strings. 130 copy_n(istream_string_ite(istr), 2, back_inserter(strings)); 131 CPPUNIT_ASSERT( strings.size() == 2 ); 132 CPPUNIT_ASSERT( strings[0] == "CC" ) [all...] |
/art/runtime/ |
utils_test.cc | 273 std::vector<std::string> strings; local 275 strings.clear(); 276 EXPECT_EQ("", Join(strings, ':')); 278 strings.clear(); 279 strings.push_back("foo"); 280 EXPECT_EQ("foo", Join(strings, ':')); 282 strings.clear(); 283 strings.push_back(""); 284 strings.push_back("foo"); 285 EXPECT_EQ(":foo", Join(strings, ':')) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
ListFormatterTest.java | 97 public void checkData(ListFormatter listFormat, String[] strings) { 98 assertEquals("0", strings[0], listFormat.format()); 99 assertEquals("1", strings[1], listFormat.format("A")); 100 assertEquals("2", strings[2], listFormat.format("A", "B")); 101 assertEquals("3", strings[3], listFormat.format("A", "B", "C")); 102 assertEquals("4", strings[4], listFormat.format("A", "B", "C", "D")); 103 assertEquals("5", strings[5], listFormat.format("A", "B", "C", "D", "E"));
|
/libcore/luni/src/main/java/java/text/ |
CollationKey.java | 23 * the strings they represent. 31 * {@code Collator.compare(String, String)} compares two strings and returns 41 * are fast. This approach is recommended when the same strings are to be 45 * {@code Collator.compare(String, String)} can examine and process the strings 47 * recommended if the strings are to be compared only once. 50 * list of strings: 54 * // Create an array of CollationKeys for the Strings to be sorted.
|
/external/icu/icu4c/source/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...] |
common.vcxproj.filters | 47 <Filter Include="strings">
452 <Filter>strings</Filter>
455 <Filter>strings</Filter>
458 <Filter>strings</Filter>
461 <Filter>strings</Filter>
464 <Filter>strings</Filter>
467 <Filter>strings</Filter>
470 <Filter>strings</Filter>
473 <Filter>strings</Filter>
476 <Filter>strings</Filter> [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/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-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSortedSetTest.java | 733 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 734 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); 735 Arrays.sort(strings); 736 for (int i = 0; i < strings.length; i++) { 737 ASSERT.that(set.headSet(strings[i], true)) 743 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 744 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); 745 Arrays.sort(strings); 746 for (int i = 0; i < strings.length; i++) { 747 ASSERT.that(set.headSet(strings[i], false)).has().exactlyAs 753 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 763 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 773 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 785 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 797 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 809 String[] strings = NUMBER_NAMES.toArray(new String[0]); local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableSortedSetTest.java | 921 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 931 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 941 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 951 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 961 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 973 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 985 String[] strings = NUMBER_NAMES.toArray(new String[0]); local 997 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/icu/icu4c/source/test/intltest/ |
colldata.cpp | 170 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) 176 strings = new UnicodeString [listMax]; 178 if (strings == NULL) { 186 delete[] strings; 202 newStrings[i] = strings[i]; 204 delete[] strings; 205 strings = newStrings; 209 // The ctor initialized all the strings in 210 // the array to empty strings, so this 212 strings[listSize++].append(*string) 241 StringList *strings = (StringList *) obj; local 286 StringList *strings = getStringList(ce); local 517 const StringList *strings = ceToCharsStartingWith->getStringList(ce); local [all...] |
/external/llvm/lib/MC/ |
StringTableBuilder.cpp | 31 SmallVector<StringRef, 8> Strings; 32 Strings.reserve(StringIndexMap.size()); 35 Strings.push_back(i->getKey()); 37 std::sort(Strings.begin(), Strings.end(), compareBySuffix); 52 for (StringRef s : Strings) {
|
/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
|
/packages/apps/Browser/src/com/android/browser/ |
PermissionsPrompt.java | 85 Vector<String> strings = new Vector<String>(); local 88 strings.add(getResources().getString(R.string.resource_video_capture)); 90 strings.add(getResources().getString(R.string.resource_audio_capture)); 92 strings.add(getResources().getString(R.string.resource_protected_media_id)); 94 if (strings.isEmpty()) return; 96 Enumeration<String> e = strings.elements();
|