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

1 2

  /external/webkit/Source/JavaScriptCore/wtf/url/api/
URLString.h 38 const String& string() const { return m_string;}
45 : m_string(string)
49 String m_string; member in class:WTF::URLString
  /external/webkit/Source/WebCore/platform/
URLString.h 37 const String& string() const { return m_string; }
43 : m_string(string)
47 String m_string; member in class:WebCore::URLString
KURLGooglePrivate.h 109 mutable String m_string; member in class:WebCore::KURLGooglePrivate
  /external/webkit/Source/WebCore/svg/
SVGPathStringSource.h 56 String m_string; member in class:WebCore::SVGPathStringSource
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPIdentifierData.h 55 CString m_string; member in class:WebKit::NPIdentifierData
  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
StringArrayWrapper.java 29 private String[] m_string; field in class:StringArrayWrapper
32 m_string = arg;
36 return m_string[index];
40 return m_string.length;
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptstring_p.h 52 JSStringRef m_string; member in class:QScriptStringPrivate
57 : m_string(0)
61 : m_string(QScriptConverter::toString(qtstring))
67 JSStringRelease(m_string);
83 return m_string;
88 return isValid() && other.isValid() && JSStringIsEqual(m_string, other.m_string);
93 return isValid() && other.isValid() && !JSStringIsEqual(m_string, other.m_string);
98 quint32 idx = QScriptConverter::toArrayIndex(m_string);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuilder.h 50 m_string = string;
65 if (m_buffer && m_length < m_buffer->length() && m_string.isNull())
73 if (m_buffer && m_length < m_buffer->length() && m_string.isNull())
81 if (m_string.isNull()) {
85 return m_string;
90 if (m_string.isNull())
92 return m_string;
111 if (!m_string.isNull())
112 return m_string[i];
120 m_string = String()
130 String m_string; member in class:WTF::StringBuilder
    [all...]
AtomicString.h 44 AtomicString(const char* s) : m_string(add(s)) { }
45 AtomicString(const UChar* s, unsigned length) : m_string(add(s, length)) { }
46 AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { }
47 AtomicString(const UChar* s) : m_string(add(s)) { }
48 ATOMICSTRING_CONVERSION AtomicString(StringImpl* imp) : m_string(add(imp)) { }
49 AtomicString(AtomicStringImpl* imp) : m_string(imp) { }
50 ATOMICSTRING_CONVERSION AtomicString(const String& s) : m_string(add(s.impl())) { }
53 AtomicString(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { }
54 bool isHashTableDeletedValue() const { return m_string.isHashTableDeletedValue(); }
58 operator const String&() const { return m_string; }
117 String m_string; member in class:WTF::AtomicString
    [all...]
  /external/webkit/Source/WebCore/bridge/
IdentifierRep.h 47 const char* string() const { return m_isString ? m_value.m_string : 0; }
59 m_value.m_string = fastStrDup(name);
69 const char* m_string; member in union:WebCore::IdentifierRep::__anon16052
  /external/webkit/Source/WebCore/css/
CSSFontFaceSource.h 55 const AtomicString& string() const { return m_string; }
73 AtomicString m_string; // URI for remote, built-in font name for local. member in class:WebCore::CSSFontFaceSource
  /external/webkit/Source/WebCore/platform/sql/
SQLValue.h 43 SQLValue(const String& s) : m_type(StringValue), m_number(0.0), m_string(s) { }
54 String m_string; member in class:WebCore::SQLValue
  /external/webkit/Source/WebCore/platform/text/
StringWithDirection.h 55 : m_string(string)
60 const String& string() const { return m_string; }
63 bool isEmpty() const { return m_string.isEmpty(); }
64 bool isNull() const { return m_string.isNull(); }
68 return other.m_string == m_string && other.m_direction == m_direction;
73 String m_string; member in class:WebCore::StringWithDirection
TextBreakIterator.h 64 : m_string(string)
76 const UChar* string() const { return m_string; }
82 m_iterator = acquireLineBreakIterator(m_string, m_length);
91 m_string = string;
97 const UChar* m_string; member in class:WebCore::LazyLineBreakIterator
  /external/webkit/Source/WebKit2/Shared/
WebURL.h 49 bool isNull() const { return m_string.isNull(); }
50 bool isEmpty() const { return m_string.isEmpty(); }
52 const String& string() const { return m_string; }
68 : m_string(string)
76 m_parsedURL = WTF::adoptPtr(new WebCore::KURL(WebCore::KURL(), m_string));
81 String m_string; member in class:WebKit::WebURL
WebString.h 58 bool isNull() const { return m_string.isNull(); }
59 bool isEmpty() const { return m_string.isEmpty(); }
61 size_t length() const { return m_string.length(); }
66 bufferLength = std::min(bufferLength, static_cast<size_t>(m_string.length()));
67 memcpy(buffer, m_string.characters(), bufferLength * sizeof(UChar));
71 size_t maximumUTF8CStringSize() const { return m_string.length() * 3 + 1; }
77 const UChar* d = m_string.characters();
78 WTF::Unicode::ConversionResult result = WTF::Unicode::convertUTF16ToUTF8(&d, d + m_string.length(), &p, p + bufferSize - 1, /* strict */ true);
85 bool equal(WebString* other) { return m_string == other->m_string; }
101 String m_string; member in class:WebKit::WebString
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.h 38 Identifier(ExecState* exec, const char* s) : m_string(add(exec, s)) { } // Only to be used with string literals.
39 Identifier(ExecState* exec, const UChar* s, int length) : m_string(add(exec, s, length)) { }
40 Identifier(ExecState* exec, StringImpl* rep) : m_string(add(exec, rep)) { }
41 Identifier(ExecState* exec, const UString& s) : m_string(add(exec, s.impl())) { }
43 Identifier(JSGlobalData* globalData, const char* s) : m_string(add(globalData, s)) { } // Only to be used with string literals.
44 Identifier(JSGlobalData* globalData, const UChar* s, int length) : m_string(add(globalData, s, length)) { }
45 Identifier(JSGlobalData* globalData, StringImpl* rep) : m_string(add(globalData, rep)) { }
46 Identifier(JSGlobalData* globalData, const UString& s) : m_string(add(globalData, s.impl())) { }
48 const UString& ustring() const { return m_string; }
49 StringImpl* impl() const { return m_string.impl();
84 UString m_string; member in class:JSC::Identifier
    [all...]
LiteralParser.h 73 : m_string(s)
95 UString m_string; member in class:JSC::LiteralParser::Lexer
  /external/webkit/Source/WebCore/storage/
IDBKey.h 58 idbKey->m_string = string;
85 return m_string;
110 String m_string; member in class:WebCore::IDBKey
IDBKeyPath.cpp 49 : m_string(s)
71 String m_string; member in class:WebCore::IDBKeyPathLexer
  /external/webkit/Source/WebCore/xml/
XPathValue.h 46 String m_string; member in class:WebCore::XPath::ValueData
51 ValueData(const String& string) : m_string(string) { }
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategory.java 73 private final String m_string; field in class:PropertyCategory
82 m_string = string;
92 return m_string;
  /external/webkit/Source/WebCore/bindings/v8/
V8Binding.h 218 V8ParameterBase(v8::Local<v8::Value> object) : m_v8Object(object), m_mode(Externalize), m_string() { }
254 m_string = string;
261 String m_string; member in class:WebCore::V8ParameterBase
269 return StringType(m_string);
  /external/webkit/Source/WebCore/html/canvas/
WebGLGetInfo.h 121 String m_string; member in class:WebCore::WebGLGetInfo
  /external/webkit/Source/WebKit/win/
WebLocalizableStrings.cpp 87 mutable String m_string; member in class:LocalizedString
92 if (!m_string.isEmpty())
93 return m_string.charactersWithNullTermination();
95 m_string = m_cfString;
97 for (unsigned int i = 1; i < m_string.length(); i++)
98 if (m_string[i] == '@' && (m_string[i - 1] == '%' || (i > 2 && m_string[i - 1] == '$' && m_string[i - 2] >= '1' && m_string[i - 2] <= '9' && m_string[i - 3] == '%'))
    [all...]

Completed in 1229 milliseconds

1 2