Searched defs:string (Results 251 - 275 of 798) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/xml/
H A DXSLStyleSheetQt.cpp70 bool XSLStyleSheet::parseString(const String& string, bool) argument
76 m_sheetString = string;
/external/webkit/Source/WebKit/chromium/public/
H A DWebCString.h39 #include <string>
51 // A single-byte string container with unspecified encoding. It is
76 // first character that does not match has a greater value in this string
100 WebCString(const std::string& s) : m_private(0)
105 WebCString& operator=(const std::string& s)
111 operator std::string() const
114 return len ? std::string(data(), len) : std::string();
/external/webkit/Source/WebKit/win/
H A DWebElementPropertyBag.cpp101 static HRESULT convertStringToVariant(VARIANT* pVar, const String& string) argument
104 V_BSTR(pVar) = SysAllocStringLen(string.characters(), string.length());
105 if (string.length() && !V_BSTR(pVar))
152 return convertStringToVariant(pVar, m_result->absoluteImageURL().string());
162 return convertStringToVariant(pVar, m_result->absoluteMediaURL().string());
171 return convertStringToVariant(pVar, m_result->absoluteLinkURL().string());
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArgumentCoders.h199 static void encode(ArgumentEncoder* encoder, const CString& string) argument
201 // Special case the null string.
202 if (string.isNull()) {
207 uint32_t length = string.length();
209 encoder->encodeBytes(reinterpret_cast<const uint8_t*>(string.data()), length);
219 // This is the null string.
224 // Before allocating the string, make sure that the decoder buffer is big enough.
231 CString string = CString::newUninitialized(length, buffer); local
235 result = string;
241 static void encode(ArgumentEncoder* encoder, const String& string) argument
273 String string = String::createUninitialized(length, buffer); local
290 String string; local
[all...]
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKString.cpp39 WKStringRef WKStringCreateWithUTF8CString(const char* string) argument
41 RefPtr<WebString> webString = WebString::createFromUTF8String(string);
/external/webkit/Source/WebKit2/Shared/
H A DWebString.h37 // WebString - A string type suitable for vending to an API.
43 static PassRefPtr<WebString> create(const String& string) argument
45 return adoptRef(new WebString(string));
53 static PassRefPtr<WebString> createFromUTF8String(const char* string) argument
55 return adoptRef(new WebString(String::fromUTF8(string)));
89 const String& string() const { return m_string; } function in class:WebKit::WebString
94 WebString(const String& string) argument
95 : m_string(!string.impl() ? String(StringImpl::empty()) : string)
/external/webkit/Source/WebKit2/UIProcess/cf/
H A DWebPreferencesCF.cpp36 static RetainPtr<CFStringRef> cfStringFromWebCoreString(const String& string) argument
38 return RetainPtr<CFStringRef>(AdoptCF, CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(string.characters()), string.length()));
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
H A DWebPopupMenuWin.cpp118 const UChar* string = itemText.characters(); local
119 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, itemText.defaultWritingDirection() == WTF::Unicode::RightToLeft);
/external/webkit/Tools/QtTestBrowser/
H A Dmainwindow.cpp186 QString string = urlEdit->text(); local
189 if (mainFrameURL.isValid() && string == mainFrameURL.toString()) {
194 load(string);
/external/webkit/Tools/android/flex-2.5.4a/
H A Dparse.y661 | '"' string '"'
761 string : string CHAR label
857 /* format_pinpoint_message - write out a message formatted with one string,
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java23 * Encodes a string into a metaphone value.
125 } // now local has working string with initials fixed
309 private boolean isVowel(StringBuffer string, int index) { argument
310 return (this.vowels.indexOf(string.charAt(index)) >= 0);
313 private boolean isPreviousChar(StringBuffer string, int index, char c) { argument
316 index < string.length() ) {
317 matches = string.charAt(index - 1) == c;
322 private boolean isNextChar(StringBuffer string, int index, char c) { argument
325 index < string.length() - 1 ) {
326 matches = string
331 regionMatch(StringBuffer string, int index, String test) argument
[all...]
/external/chromium/base/
H A Dvlog.cc19 explicit VmodulePattern(const std::string& pattern);
23 std::string pattern;
28 VlogInfo::VmodulePattern::VmodulePattern(const std::string& pattern)
33 // it's meant to be tested against the entire __FILE__ string.
34 std::string::size_type first_slash = pattern.find_first_of("\\/");
35 if (first_slash != std::string::npos)
43 VlogInfo::VlogInfo(const std::string& v_switch,
44 const std::string& vmodule_switch,
49 typedef std::pair<std::string, std::string> KVPai
124 MatchVlogPattern(const base::StringPiece& string, const base::StringPiece& vlog_pattern) argument
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_index_unittest.cc5 #include <string>
29 std::vector<std::string> title_vector;
35 void AddBookmarksWithTitles(const std::vector<std::string>& titles) {
42 void ExpectMatches(const std::string& query,
45 std::vector<std::string> title_vector;
51 void ExpectMatches(const std::string& query,
52 const std::vector<std::string> expected_titles) {
69 void ExtractMatchPositions(const std::string& string, argument
71 std::vector<std::string> match_string
[all...]
/external/chromium/chrome/browser/prefs/
H A Dpref_member_unittest.cc21 const char kStringPref[] = "string";
82 std::string* pref_name_in = Details<std::string>(details).ptr();
164 // Test string
165 StringPrefMember string; local
166 string.Init(kStringPref, &prefs, NULL);
170 EXPECT_EQ("default", string.GetValue());
171 EXPECT_EQ("default", *string);
174 string.SetValue("foo");
175 EXPECT_EQ("foo", string
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dencodetable_test.cc20 #include <string.h> // strlen
22 #include <string>
36 typedef std::string string; typedef in class:open_vcdiff::__anon3105::CodeTableWriterTest
110 EXPECT_EQ(string(s, size),
111 string(out.data() + out_index, size));
158 string out;
159 OutputString<string> output_string;
H A Dvcdecoder_test.h20 #include <string>
28 // Those elements are provided as string members and can be modified or
32 typedef std::string string; typedef in class:open_vcdiff::VCDiffDecoderTest
81 // Assuming the length of the given string can be expressed as a VarintBE
86 // Assuming the length of the given string can be expressed as a one-byte
92 // Assuming the length of the given string can be expressed as a two-byte
98 // Assuming the length of the given string can be expressed as a two-byte
108 string delta_file_;
110 // This string i
[all...]
/external/clang/test/FixIt/
H A Dtypo.cpp14 typedef basic_string<char> string; // expected-note 2{{'string' declared here}} typedef in namespace:std
25 // expected-error{{no type named 'strng' in namespace 'otherstd'; did you mean 'string'?}}
26 tring str2; // expected-error{{unknown type name 'tring'; did you mean 'string'?}}
28 ::other_std::string str3; // expected-error{{no member named 'other_std' in the global namespace; did you mean 'otherstd'?}}
42 bool test_string(std::string s) {
48 == std::string::pos; // expected-error{{no member named 'pos' in 'std::basic_string<char>'; did you mean 'npos'?}}
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp31 struct string { struct in namespace:test3
36 string s;
37 string::iterator i = s.foo(); // expected-error {{no member named 'foo'}}
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstString.java29 * empty string
33 /** {@code non-null;} the UTF-8 value as a string */
34 private final String string; field in class:CstString
40 * Converts a string into its MUTF-8 form. MUTF-8 differs from normal UTF-8
43 * @param string {@code non-null;} the string to convert
46 public static byte[] stringToUtf8Bytes(String string) { argument
47 int len = string.length();
52 char c = string.charAt(i);
74 * Converts an array of UTF-8 bytes into a string
180 CstString(String string) argument
[all...]
/external/e2fsprogs/lib/e2p/
H A Dfeature.c14 #include <string.h>
25 const char *string; member in struct:feature
98 for (f = feature_list; f->string; f++) {
101 return f->string;
122 int e2p_string2feature(char *string, int *compat_type, unsigned int *mask) argument
128 for (f = feature_list; f->string; f++) {
129 if (!strcasecmp(string, f->string)) {
135 if (strncasecmp(string, "FEATURE_", 8))
138 switch (string[
196 e2p_jrnl_string2feature(char *string, int *compat_type, unsigned int *mask) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategory.java80 private PropertyCategory(int priority, String string) { argument
82 m_string = string;
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java88 * @throws NumberFormatException if the string does not contain a parsable unsigned {@code int}
91 public static UnsignedInteger valueOf(String string) { argument
92 return valueOf(string, 10);
99 * @throws NumberFormatException if the string does not contain a parsable unsigned {@code int}
102 public static UnsignedInteger valueOf(String string, int radix) { argument
103 return asUnsigned(UnsignedInts.parseUnsignedInt(string, radix));
221 * Returns a string representation of the {@code UnsignedInteger} value, in base 10.
229 * Returns a string representation of the {@code UnsignedInteger} value, in base {@code radix}.
H A DUnsignedInts.java115 * Returns a string containing the supplied unsigned {@code int} values separated by
116 * {@code separator}. For example, {@code join("-", 1, 2, 3)} returns the string {@code "1-2-3"}.
119 * string (but not at the start or end)
193 * Returns the unsigned {@code int} value represented by the given decimal string.
195 * @throws NumberFormatException if the string does not contain a valid unsigned integer, or if
204 * Returns the unsigned {@code int} value represented by a string with the given radix.
206 * @param string the string containing the unsigned integer representation to be parsed.
209 * @throws NumberFormatException if the string does not contain a valid unsigned {@code int}, or
212 public static int parseUnsignedInt(String string, in argument
[all...]
H A DUnsignedLong.java85 * @throws NumberFormatException if the string does not contain a parsable unsigned {@code long}
88 public static UnsignedLong valueOf(String string) { argument
89 return valueOf(string, 10);
96 * @throws NumberFormatException if the string does not contain a parsable unsigned {@code long}
100 public static UnsignedLong valueOf(String string, int radix) { argument
101 return asUnsigned(UnsignedLongs.parseUnsignedLong(string, radix));
227 * Returns a string representation of the {@code UnsignedLong} value, in base 10.
235 * Returns a string representation of the {@code UnsignedLong} value, in base {@code radix}. If
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableTableTest.java88 String string; field in class:ImmutableTableTest.StringHolder
96 holder.string = "foo";
106 return holder.string;
114 holder.string = "bar";

Completed in 612 milliseconds

<<11121314151617181920>>