HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 176 - 200 of 1323) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/open-vcdiff/src/
output_string_test.cc 17 #include <string>
31 typedef std::string string; typedef in class:open_vcdiff::__anon23960::OutputStringTest
38 string string_;
39 OutputString<string> output_string_;
  /external/proguard/src/proguard/gui/splash/
TypeWriterString.java 24 * This VariableString produces a String that grows linearly with respect to its
32 private final String string; field in class:TypeWriterString
36 private String cachedString;
41 * @param string the basic String.
44 public TypeWriterString(String string, Timing timing)
46 this.string = string;
    [all...]
  /external/proguard/src/proguard/util/
ClassNameParser.java 60 public StringMatcher parse(String regularExpression)
74 // string, optionally preceded by any type.
88 // remainder of the string.
98 // remainder of the string.
112 // remainder of the string.
126 // remainder of the string.
140 // remainder of the string.
197 public static void main(String[] args)
206 String string = args[index] local
    [all...]
FileNameParser.java 40 public StringMatcher parse(String regularExpression)
52 // remainder of the string.
66 // remainder of the string.
80 // remainder of the string.
102 public static void main(String[] args)
111 String string = args[index]; local
112 System.out.print("String ["+string+"]");
ListUtil.java 35 * Creates a comma-separated String from the given List of String objects.
37 public static String commaSeparatedString(List list)
53 buffer.append(quotedString((String)list.get(index)));
61 * Creates a List of String objects from the given comma-separated String.
63 public static List commaSeparatedList(String string)
65 if (string == null)
72 while ((index = skipWhitespace(string, index)) < string.length()
168 String string = commaSeparatedString(list); local
    [all...]
NameParser.java 39 public StringMatcher parse(String regularExpression)
51 // remainder of the string.
65 // remainder of the string.
87 public static void main(String[] args)
96 String string = args[index]; local
97 System.out.print("String ["+string+"]");
  /external/skia/src/animator/
SkPaintParts.cpp 75 SK_MEMBER(fontName, String),
97 SkString string; local
98 SkDump::GetEnumString(SkType_FontStyle, style, &string);
99 SkDebugf("style=\"%s\" />\n", string.c_str());
  /external/smack/src/org/xbill/DNS/
ExtendedFlags.java 30 /** Converts a numeric extended flag into a String */
31 public static String
32 string(int i) { method in class:ExtendedFlags
41 value(String s) {
Opcode.java 48 /** Converts a numeric Opcode into a String */
49 public static String
50 string(int i) { method in class:Opcode
54 /** Converts a String representation of an Opcode into its numeric value */
56 value(String s) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
ReferenceType.java 35 string(-1), enum constant in enum:ReferenceType
49 case string:
  /external/stlport/test/unit/
copy_test.cpp 42 char string[23] = "A string to be copied."; local
44 copy(string, string + 23, result);
45 CPPUNIT_ASSERT(!strncmp(string, result, 23));
  /external/valgrind/main/coregrind/m_gdbserver/
signals.c 41 char *string; member in struct:__anon27831
215 with the string, so no need to be verbose (very old comment). */
  /libcore/benchmarks/src/benchmarks/regression/
CharsetBenchmark.java 41 private String name;
46 new String(bytes, name);
53 new String(bytes, 0, bytes.length);
60 new String(bytes, 0, bytes.length, name);
65 String string = makeString(length); local
67 string.getBytes(name);
71 private static String makeString(int length) {
79 private static byte[] makeBytes(String s) {
  /libcore/luni/src/main/java/java/util/
StringTokenizer.java 21 * Breaks a string into tokens; new code should probably use {@link String#split}.
32 * for (String token : "a:b:c".split(":")) {
42 private String string; field in class:StringTokenizer
44 private String delimiters;
51 * Constructs a new {@code StringTokenizer} for the parameter string using
55 * @param string
56 * the string to be tokenized.
58 public StringTokenizer(String string)
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex11.c 37 const char *string; member in struct:__anon33268
119 if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
bug-regex12.c 37 const char *string; member in struct:__anon33269
70 if (! regexec (&re, tests[i].string, tests[i].nmatch,
bug-regex28.c 24 #include <string.h>
29 const char *string; member in struct:tests
65 size_t len = strlen (tests[i].string);
66 int rv = re_search (&r, tests[i].string, len, 0, len, NULL);
  /ndk/tests/device/test-gnustl-full/unit/
copy_test.cpp 42 char string[23] = "A string to be copied."; local
44 copy(string, string + 23, result);
45 CPPUNIT_ASSERT(!strncmp(string, result, 23));
  /ndk/tests/device/test-stlport/unit/
copy_test.cpp 42 char string[23] = "A string to be copied."; local
44 copy(string, string + 23, result);
45 CPPUNIT_ASSERT(!strncmp(string, result, 23));
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
ClearUserDictionaryDialogPreferenceEN.java 62 Toast.makeText(mContext.getApplicationContext(), R.string.dialog_clear_user_dictionary_done,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
ClearLearnDictionaryDialogPreferenceJAJP.java 62 Toast.makeText(mContext.getApplicationContext(), R.string.dialog_clear_learning_dictionary_done,
ClearUserDictionaryDialogPreferenceJAJP.java 62 Toast.makeText(mContext.getApplicationContext(), R.string.dialog_clear_user_dictionary_done,
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
asdl.h 5 typedef PyObject * string; typedef
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 32 import string namespace
87 self.buf = self.buf + string.joinfields(self.buflist, '')
89 i = string.find(self.buf, '\n', self.pos)
138 self.write(string.joinfields(list, ''))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_get_none.py 5 import os, string namespace
29 for x in string.letters:
35 data = d.get(string.letters[0])
36 self.assertEqual(data, string.letters[0]*40)
46 self.assertEqual(count, len(string.letters))
57 for x in string.letters:
63 data = d.get(string.letters[0])
64 self.assertEqual(data, string.letters[0]*40)
80 self.assertEqual(count, len(string.letters))

Completed in 2174 milliseconds

1 2 3 4 5 6 78 91011>>