HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 1 - 25 of 372) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/axl/
udpEater.py 24 import time, socket, string namespace
udpServer.py 2 import time, socket, string namespace
  /external/sonivox/jet_tools/JetCreator/
JetSystemInfo.py 25 import string namespace
38 for dir in string.split(os.environ['PYTHONPATH'], os.pathsep):
  /external/stlport/stlport/stl/
_string_fwd.h 40 typedef basic_string<char, char_traits<char>, allocator<char> > string; typedef
48 //This function limits header dependency between exception and string
50 const char* _STLP_CALL __get_c_string(const string& __str);
msl_string.h 22 # define string __msl_string macro
33 # include_next <string>
35 # include _STLP_NATIVE_HEADER(string)
43 # undef string macro
  /external/v8/test/mjsunit/
regexp-standalones.js 34 var string = 'aaa\n789\r\nccc\r\n345'; variable
36 var result = string.match(pattern);
42 result = string.match(pattern);
47 string = 'aaa\n789\r\nccc\r\nddd';
49 result = string.match(pattern);
54 result = string.match(pattern);
60 string = '\u00BF\u00CD\u00BB\u00A7';
61 result = string.match(pattern);
63 assertEquals(string, result[0], "12");
65 string = '\u00BF\u00CD \u00BB\u00A7'
    [all...]
  /external/v8/test/mjsunit/regress/
regress-515.js 38 var string = s + 'x' + s + 'x' + s; variable
40 string.replace(/x/g, "")
  /external/webkit/WebCore/platform/cf/
FileSystemCF.cpp 37 CString fileSystemRepresentation(const String& path)
47 CString string = CString::newUninitialized(size, buffer); local
54 return string;
  /external/webkit/WebCore/platform/sql/
SQLValue.cpp 41 String SQLValue::string() const function in class:WebCore::SQLValue
  /external/clearsilver/scripts/
commitlog.py 13 import string namespace
22 body_lines = string.split(body,"\n")
42 mod_files.append(string.strip(a_line))
44 add_files.append(string.strip(a_line))
48 rem_files.append(string.strip(a_line))
56 log_summary = "%10s %16s %s\n" % (CVS_USER,DATE,string.join(log_lines," ")[:60])
  /build/tools/
compare_fileslist.py 18 import cgi, os, string, sys namespace
39 lines = map(string.split, lines)
  /dalvik/libcore/support/src/test/java/tests/support/
Support_Proxy_I1.java 27 String string(String s) throws Support_Proxy_ParentException, LinkageError; method in interface:Support_Proxy_I1
Support_Proxy_I2.java 26 String string(String s) throws Support_Proxy_SubException, Error; method in interface:Support_Proxy_I2
  /external/qemu/
gen-skin.py 9 import sys, os, string, re namespace
37 data_name = "_data_" + string.replace(file,".","_")
  /external/skia/src/animator/
SkDisplayInput.h 35 SkString string; member in class:SkInput
  /external/webkit/WebCore/editing/
RemoveFormatCommand.cpp 53 // Make a plain text string from the selection to remove formatting like tables and lists.
54 String string = plainText(frame->selection()->selection().toNormalizedRange().get()); local
72 // to avoid the ASSERT that fires if input(...) is called with an empty String.
73 if (string.isEmpty())
80 inputText(string, true);
  /external/webkit/WebCore/platform/text/haiku/
StringHaiku.cpp 30 #include <String.h>
34 // String conversions
35 String::String(const BString& bstring)
37 const UChar* str = reinterpret_cast<const UChar*>(bstring.String());
49 String::operator BString() const
51 BString string; local
52 string.SetTo(utf8().data());
54 return string;
  /frameworks/base/media/libstagefright/include/
stagefright_string.h 25 class string { class in namespace:android
30 string();
31 string(const char *s);
32 string(const char *s, size_t length);
33 string(const string &from, size_type start, size_type length = npos);
43 bool operator<(const string &other) const;
44 bool operator==(const string &other) const;
46 string &operator+=(char c);
  /development/testrunner/
am_instrument_parser.py 22 import string namespace
30 result (string): Raw output of "am instrument"
73 result (string): Raw output of "am instrument"
91 line = line.strip(string.whitespace)
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
107 val = re_code.search(line).group(1).strip(string.whitespace)
130 result_block_string (string): Is a single "block" of output. A single
  /external/bluetooth/bluez/rfcomm/
kword.h 27 char *string; member in struct:keyword_t
33 int rfcomm_find_keyword(struct keyword_t *keyword, char *string);
  /external/clearsilver/python/examples/base/
wordwrap.py 6 import os, sys, string, time, getopt namespace
10 text = string.replace(text,"\r\n", "\n") # remove CRLF
29 r = string.find(text, "\n", i, i+cols)
32 j = string.rfind(text, " ", i, i+cols)
34 r = string.find(text, "\n", i+cols)
36 j = string.find(text, " ", i+cols)
42 body.append(string.strip(text[i:j]))
46 body = string.join(body, "\n ")
48 body = string.join(body, "\n")
  /external/clearsilver/python/
static.py 3 import sys, os, traceback, string namespace
30 x = string.rfind (hdf_file, '/')
upload.py 3 import sys, os, traceback, string namespace
  /external/e2fsprogs/lib/e2p/
hashstr.c 13 #include <string.h>
21 const char *string; member in struct:hash
36 for (p = hash_list; p->string; p++) {
38 return p->string;
47 int e2p_string2hash(char *string)
53 for (p = hash_list; p->string; p++) {
54 if (!strcasecmp(string, p->string)) {
58 if (strncasecmp(string, "HASHALG_", 8))
61 if (string[8] == 0
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.2-1.js 52 var string = ''; variable
62 string = 'abc';
63 actualmatch = string.match(pattern);
69 string = 'abc';
70 actualmatch = string.match(pattern);
76 string = 'abcdefghi';
77 actualmatch = string.match(pattern);
83 string = 'abcdefghi';
84 actualmatch = string.match(pattern);
90 string = 'aabaac'
    [all...]

Completed in 1406 milliseconds

1 2 3 4 5 6 7 8 91011>>