Searched defs:string (Results 176 - 200 of 1253) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/snappy/mac/
H A Dsnappy-stubs-public.h57 #include <string>
81 typedef std::string string; typedef in namespace:snappy
/external/chromium_org/third_party/webrtc/modules/audio_device/test/android/audio_device_android_test/gen/org/webrtc/voiceengine/test/
H A DR.java22 public static final class string { class in class:R
/external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/
H A Dvc98_swap.py10 import os, shutil, string, fileinput, sys namespace
/external/chromium_org/tools/check_ecs_deps/
H A Dcheck_ecs_deps.py11 import string namespace
147 forbidden_regexp = re.compile(string.join(map(re.escape,
150 blessed_regexp = re.compile(r"(%s)[-0-9.]*\.so" % string.join(map(re.escape,
175 deps = string.split(out, '\n')
/external/chromium_org/tools/cygprofile/
H A Dmergetraces.py16 import string namespace
210 trace_lines = map(string.rstrip, open(trace_file).readlines())
H A Dsymbolize.py15 import string namespace
192 default='symbolize', type='string',
205 log_file_lines = map(string.rstrip, open(log_file).readlines())
/external/chromium_org/tools/gyp/test/win/generator-output-different-drive/
H A Dgyptest-generator-output-different-drive.py13 import string namespace
25 all_letters = [c for c in string.uppercase]
/external/chromium_org/ui/ozone/
H A Dgenerate_ozone_platform_list.py57 import string namespace
66 return 'kPlatform' + string.capitalize(name)
/external/chromium_org/v8/test/cctest/
H A Dtest-mementos.cc41 // Allocate a string, the GC may suspect a memento behind the string.
42 Handle<SeqOneByteString> string = local
44 CHECK(*string);
46 // Create an allocation memento behind the string with a garbage allocation
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp7.cpp5 struct string {}; struct in namespace:std
14 std::string operator "" _w(const char16_t*, size_t);
23 same_type<decltype(v2), std::string> test2;
/external/clang/test/CodeGenCXX/
H A Dweak-external.cpp35 typedef basic_string<char, char_traits<char>, allocator<char> > string; typedef in namespace:std
51 explicit runtime_error(const string&);
65 throw(std::runtime_error("string"));
/external/clang/test/Index/
H A Dcomplete-exprs.cpp3 class string { class
5 string();
6 string(const char *);
7 string(const char *, int n);
55 // CHECK-CC1: ClassDecl:{TypedText string} (50)
56 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{RightParen )} (50)
57 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{RightParen )} (50)
58 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{Comma , }{Placeholder int n}{RightParen )} (50)
65 // CHECK-CC2: ClassDecl:{TypedText string} (50)
/external/compiler-rt/lib/asan/scripts/
H A Dsymbolize.py13 import string namespace
/external/deqp/framework/delibs/decpp/
H A DdePoolString.cpp21 * \brief Memory pool -backed string.
32 void PoolString::toString (std::string& str) const
47 void PoolString::append (const std::string& str)
63 std::ostream& operator<< (std::ostream& stream, const PoolString& string) argument
65 for (PoolString::ConstIterator i = string.begin(); i != string.end(); i++)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Drunant.py34 import os, os.path, string, sys namespace
95 CLASSPATH, string.join(sys.argv[1:], ' '))
/external/fonttools/Lib/fontTools/misc/
H A DtextTools.py7 import string namespace
17 """Convert a hex string to binary data."""
28 """Convert binary data to a hex string."""
29 h = string.hexdigits
/external/fonttools/Tools/fontTools/misc/
H A DtextTools.py7 import string namespace
17 """Convert a hex string to binary data."""
28 """Convert binary data to a hex string."""
29 h = string.hexdigits
/external/freetype/include/
H A Dftsnames.h72 /* platform_id :: The platform ID for `string'. */
74 /* encoding_id :: The encoding ID for `string'. */
76 /* language_id :: The language ID for `string'. */
78 /* name_id :: An identifier for `string'. */
80 /* string :: The `name' string. Note that its format differs */
84 /* Generally speaking, the string is not */
88 /* string_len :: The length of `string' in bytes. */
105 FT_Byte* string; /* this string i member in struct:FT_SfntName_
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DCDL.java52 * @return The value string, or null if empty.
53 * @throws JSONException if the quoted string is badly formed.
122 * Produce a JSONArray of JSONObjects from a comma delimited text string,
124 * @param string The comma delimited text.
128 public static JSONArray toJSONArray(String string) throws JSONException { argument
129 return toJSONArray(new JSONTokener(string));
133 * Produce a JSONArray of JSONObjects from a comma delimited text string,
144 * Produce a JSONArray of JSONObjects from a comma delimited text string
147 * @param string The comma delimited text.
151 public static JSONArray toJSONArray(JSONArray names, String string) argument
[all...]
H A DCookie.java36 * Produce a copy of a string in which the characters '+', '%', '=', ';'
39 * string as possible. The characters '=' and ';' are meta characters in
44 * @param string The source string.
47 public static String escape(String string) { argument
49 String s = string.trim();
67 * Convert a cookie specification string into a JSONObject. The string
74 * validation of the parameters. It only converts the cookie string into
76 * @param string Th
81 toJSONObject(String string) argument
[all...]
H A DJSONML.java41 * @param x The XMLTokener containing the source string.
230 * Convert a well-formed (but not necessarily valid) XML string into a
237 * @param string The source string.
238 * @return A JSONArray containing the structured data from the XML string.
241 public static JSONArray toJSONArray(String string) throws JSONException { argument
242 return toJSONArray(new XMLTokener(string));
247 * Convert a well-formed (but not necessarily valid) XML string into a
255 * @return A JSONArray containing the structured data from the XML string.
265 * Convert a well-formed (but not necessarily valid) XML string int
293 toJSONObject(String string) argument
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-filepath.h43 #include "gtest/internal/gtest-string.h"
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
77 const std::string& string() const { return pathname_; } function in class:testing::internal::FilePath
114 // the name, otherwise return the name string unmodified.
200 std::string pathname_;
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableMultimapTest.java60 String string; field in class:ImmutableMultimapTest.StringHolder
67 holder.string = "one";
70 return holder.string;
78 holder.string = "two";
/external/hamcrest/library/src/org/hamcrest/text/
H A DIsEqualIgnoringWhiteSpace.java11 * Tests if a string is equal to another string, ignoring any changes in whitespace.
18 private final String string; field in class:IsEqualIgnoringWhiteSpace
20 public IsEqualIgnoringWhiteSpace(String string) { argument
21 if (string == null) {
24 this.string = string;
28 return stripSpace(string).equalsIgnoreCase(stripSpace(item));
33 .appendValue(string)
37 public String stripSpace(String string) { argument
56 equalToIgnoringWhiteSpace(String string) argument
[all...]
H A DSubstringMatcher.java22 description.appendText("a string ")
28 protected abstract boolean evalSubstringOf(String string); argument

Completed in 705 milliseconds

1234567891011>>