HomeSort by relevance Sort by last modified time
    Searched full:strings (Results 1 - 25 of 3020) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/
strings.template 3 STRINGS
  /external/elfutils/libelf-po/
POTFILES.in 1 # List of files which containing translatable strings.
  /frameworks/base/core/java/android/text/util/
package.html 3 Utilities for converting identifiable text strings into clickable links
  /frameworks/base/telephony/java/android/telephony/
package.html 5 for manipulating phone number strings.
  /external/bluetooth/glib/tests/
unicode-caseconv.c 14 char **strings; local
40 strings = g_strsplit (buffer, "\t", -1);
42 locale = strings[0];
59 test = strings[1];
63 * is nonsense for multicharacter strings, it would make more sense
70 expected = strings[4][0] ? strings[4] : test;
80 expected = strings[2][0] ? strings[2] : test;
90 g_strfreev (strings);
    [all...]
  /external/proguard/examples/dictionaries/
compact.txt 2 # This obfuscation dictionary contains strings that are already present
3 # in many class files. Since these strings can be shared, the resulting
  /frameworks/base/opengl/tools/glgen/stubs/gles11/
glShaderSource.cpp 14 const char* strings[] = {nativeString}; local
15 glShaderSource(shader, 1, strings, 0);
  /external/bluetooth/glib/docs/reference/glib/tmpl/
string_chunks.sgml 5 efficient storage of groups of strings
9 String chunks are used to store groups of strings.
10 Memory is allocated in blocks, and as strings are added to the #GStringChunk
15 When storing a large number of strings, string chunks are more efficient
20 By adding strings with g_string_chunk_insert_const() it is also possible
27 To add strings to a #GStringChunk use g_string_chunk_insert().
30 To add strings to a #GStringChunk, but without duplicating strings which are
35 It is not possible to free individual strings.
  /dalvik/dx/src/junit/runner/
TestCollector.java 13 * Returns an enumeration of Strings with qualified class names
  /dalvik/libcore/luni/src/test/java/junit/runner/
TestCollector.java 13 * Returns an enumeration of Strings with qualified class names
  /frameworks/base/tests/CoreTests/android/core/
RegexTest.java 174 String[] strings; local
176 strings = p.split("boo:and:foo");
177 assertEquals(3, strings.length);
178 assertEquals("boo", strings[0]);
179 assertEquals("and", strings[1]);
180 assertEquals("foo", strings[2]);
182 strings = p.split("boo:and:foo", 2);
183 assertEquals(2, strings.length);
184 assertEquals("boo", strings[0]);
185 assertEquals("and:foo", strings[1])
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cmp/
PKIFreeText.java 15 ASN1Sequence strings; field in class:PKIFreeText
51 strings = seq;
57 strings = new DERSequence(p);
67 return strings.size();
79 return (DERUTF8String)strings.getObjectAt(i);
89 return strings;
  /external/icu4c/i18n/unicode/
dtfmtsym.h 88 * based on hard-coded strings.
116 * based on hard-coded strings.
119 * Will be used to access the correct set of strings.
134 * Will be used to access the correct set of strings.
183 * Gets abbreviated era strings. For example: "AD" and "BC".
186 * @return the era strings.
192 * Sets abbreviated era strings. For example: "AD" and "BC".
193 * @param eras Array of era strings (DateFormatSymbols retains ownership.)
200 * Gets era name strings. For example: "Anno Domini" and "Before Christ".
203 * @return the era name strings
    [all...]
  /external/clearsilver/python/examples/trans/
README 33 override HDF lang strings with the proper values from the translated
41 the strings in it, and then run:
46 Each time trans is run, it will dump the list of missing strings for
47 every language which has any strings at all. Simply follow the same
48 procedure above with the missing strings file to update the
55 strings from HTML Clearsilver templates, and from Clearsilver HDF
56 files. trans inserts all unique strings into a database, and
57 provides you facilities for exporting and importing the strings in the
59 reference language strings, and dumps lang_XX.hdf files which
60 define those strings.
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
DetailMode.java 75 ArrayList<CharSequence> strings = new ArrayList<CharSequence>(); local
79 strings.add("1 " + resources.getString(Res.string.album_selected));
81 strings.add(Integer.toString(numOriginalSets) + " " + resources.getString(Res.string.albums_selected));
87 strings.add("1 " + resources.getString(Res.string.item_selected));
89 strings.add(Integer.toString(numItems) + " " + resources.getString(Res.string.items_selected));
102 strings.add(resources.getString(Res.string.start) + ": " + dateTimeFormat.format(new Date(minTimestamp)));
103 strings.add(resources.getString(Res.string.end) + ": " + dateTimeFormat.format(new Date(maxTimestamp)));
111 strings.add(resources.getString(Res.string.start) + ": " + dateTimeFormat.format(new Date(minTimestamp)));
112 strings.add(resources.getString(Res.string.end) + ": " + dateTimeFormat.format(new Date(maxTimestamp)));
114 strings.add(resources.getString(Res.string.start) + ": " + resources.getString(Res.string.date_unknown))
144 CharSequence[] strings = new CharSequence[5]; local
    [all...]
  /external/icu4c/common/
unisetspan.h 26 * Implement span() etc. for a set with strings.
65 * Do the strings need to be checked in span() etc.?
66 * @return TRUE if strings need to be checked (call span() here),
101 // Set for span(). Same as parent but without strings.
105 // Same as spanSet, plus characters that start or end strings.
108 // The strings of the parent set.
109 const UVector &strings; member in class:UnicodeSetStringSpan
121 // the UTF-8 versions of the parent set's strings.
124 // Number of bytes for all UTF-8 versions of strings together.
127 // Maximum lengths of relevant strings
    [all...]
  /external/e2fsprogs/po/
Makevars 15 # package. (Note that the msgstr strings, extracted from the package's
24 # bugs in the untranslated strings:
25 # - Strings which are not entire sentences, see the maintainer guidelines
26 # in the GNU gettext documentation, section 'Preparing Strings'.
27 # - Strings which use unclear terms or require additional context to be
29 # - Strings which make invalid assumptions about notation of date, time or
  /frameworks/base/tools/localize/
ValuesFile_test.cpp 10 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++) {
localize_test.cpp 36 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.begin(); it!=strings.end(); it++)
104 set<StringResource> const& strings = xliff->GetStringResources(); local
    [all...]
  /external/libpng/projects/visualc71/
PRJ0041.mak 9 $(IntDir)\strings.h \
18 $(IntDir)\strings.h \
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLocaleTest.java 35 private static final String[] STRINGS = {
54 for (String s : STRINGS) {
75 assertEquals(STRINGS.length, result.length);
84 MoreAsserts.assertEquals(STRINGS, results);
99 STRINGS[4], // "boy"
100 STRINGS[0], // sundry forms of "cote"
101 STRINGS[1],
102 STRINGS[2],
103 STRINGS[3],
104 STRINGS[6], // "COTE
    [all...]
  /external/emma/core/java12/com/vladium/util/
Strings.java 7 * $Id: Strings.java,v 1.1.1.1 2004/05/09 16:57:55 vlad_r Exp $
24 abstract class Strings
33 public static String toListForm (final String [] strings, final char delimiter)
35 if (strings == null) return null;
36 if (strings.length == 0) return "";
39 for (int i = 0, iLimit = strings.length; i < iLimit; ++ i)
42 s.append (strings [i]);
48 public static String [] removeDuplicates (final String [] strings, final boolean removeNull)
50 if (strings == null) return strings;
    [all...]
  /external/bzip2/
entities.xml 1 <!-- misc. strings -->
  /external/junit/src/junit/runner/
TestCollector.java 14 * Returns an enumeration of Strings with qualified class names
  /frameworks/base/test-runner/src/junit/runner/
TestCollector.java 14 * Returns an enumeration of Strings with qualified class names

Completed in 490 milliseconds

1 2 3 4 5 6 7 8 91011>>