HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 201 - 225 of 2901) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/test/mjsunit/es6/
regexp-flags.js 23 var string = "iIiIi"; variable
28 assertEquals(expected, string.replace(r3, "X"));
45 // Overridden flag getters affect string.replace
48 assertEquals(expected, string.replace(r3, "X"));
  /external/v8/tools/gyp/test/win/generator-output-different-drive/
gyptest-generator-output-different-drive.py 13 import string namespace
25 all_letters = [c for c in string.uppercase]
  /external/valgrind/coregrind/m_gdbserver/
signals.c 41 const char *string; member in struct:__anon25120
215 with the string, so no need to be verbose (very old comment). */
  /external/webrtc/webrtc/modules/audio_device/test/android/audio_device_android_test/gen/org/webrtc/voiceengine/test/
R.java 22 public static final class string { class in class:R
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_tapify.py 11 import sys,string,os,re,math,numpy namespace
  /hardware/ti/omap4-aah/domx/mm_osal/src/
timm_osal_trace.c 151 char string[1000]; local
152 vsprintf(string, fmt, ap);
153 ALOGD("%s",string);
  /libcore/benchmarks/src/benchmarks/regression/
CharsetBenchmark.java 39 private String name;
44 new String(bytes, name);
51 new String(bytes, 0, bytes.length);
58 new String(bytes, 0, bytes.length, name);
63 String string = makeString(length); local
65 string.getBytes(name);
69 private static String makeString(int length) {
77 private static byte[] makeBytes(String s) {
StringToBytesBenchmark.java 31 private final String value;
33 private StringLengths(String s) {
38 private static final String makeString(int length) {
43 return new String(chars);
46 @Param StringLengths string; field in class:StringToBytesBenchmark
50 string.value.getBytes(StandardCharsets.UTF_8);
56 string.value.getBytes(StandardCharsets.ISO_8859_1);
62 string.value.getBytes(StandardCharsets.US_ASCII);
  /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/gdb/darwin-x86/include/python2.7/
asdl.h 5 typedef PyObject * string; typedef
  /prebuilts/gdb/darwin-x86/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/gdb/darwin-x86/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))
test_queue.py 5 import os, string namespace
39 for x in string.letters:
42 self.assertEqual(len(d), len(string.letters))
49 self.assertEqual(len(d), len(string.letters)+3)
110 for x in string.letters:
113 self.assertEqual(len(d), len(string.letters))
120 self.assertEqual(len(d), len(string.letters)+3)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
extension.py 8 import os, string, sys namespace
32 name : string
35 sources : [string]
41 include_dirs : [string]
44 define_macros : [(name : string, value : string|None)]
46 where 'value' is either the string to define it to or None to
49 undef_macros : [string]
51 library_dirs : [string]
53 libraries : [string]
    [all...]
version.py 15 * the 'parse' method takes a string and parses it to some internal
16 representation; if the string is an invalid version number,
18 * the class constructor takes an optional string argument which,
20 * __str__ reconstructs the string that was passed to 'parse' (or
21 an equivalent string -- ie. one that will generate an equivalent
25 of the same class or a string (which will be parsed to an instance
29 import string, re namespace
49 # __init__ (string) - create and take same action as 'parse'
50 # (string parameter is optional)
51 # parse (string) - convert a string representation to whateve
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
HyperParser.py 11 import string namespace
61 # so that stopatindex can be used to synchronize the string with the
92 """Is the index given to the HyperParser is in a string?"""
142 # This string includes all chars that may be in a white space
144 # This string includes all chars that may be in an identifier
145 _id_chars = string.ascii_letters + string.digits + "_"
146 # This string includes all chars that may be the first char of an identifier
147 _id_first_chars = string.ascii_letters + "_"
149 # Given a string and pos, return the number of chars in the identifie
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_md5.py 11 import string namespace
12 h = string.hexdigits
test_mimetools.py 4 import string namespace
19 start = string.ascii_letters + "=" + string.digits + "\n"
test_pkgimport.py 1 import os, sys, string, random, tempfile, unittest namespace
10 self.package_name += random.choose(string.letters)
62 var += random.choose(string.letters)
  /prebuilts/gdb/linux-x86/include/python2.7/
asdl.h 5 typedef PyObject * string; typedef
  /prebuilts/gdb/linux-x86/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, ''))

Completed in 1480 milliseconds

1 2 3 4 5 6 7 891011>>