Searched refs:m_string (Results 1 - 25 of 47) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DStringArrayWrapper.java29 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/WebCore/platform/text/
H A DStringWithDirection.h55 : 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
H A DTextBreakIterator.h64 : 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/JavaScriptCore/wtf/url/api/
H A DURLString.h38 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/
H A DURLString.h37 const String& string() const { return m_string; }
43 : m_string(string)
47 String m_string; member in class:WebCore::URLString
H A DKURL.cpp314 ASSERT(url == m_string);
320 ASSERT(url == m_string);
326 ASSERT(url.string() == m_string);
356 m_string = relative;
429 appendASCII(base.m_string.left(base.m_queryEnd), str, len, parseBuffer);
432 m_string = relative;
446 appendASCII(base.m_string.left(base.m_queryEnd), str, len, parseBuffer);
452 appendASCII(base.m_string.left(base.m_pathEnd), str, len, parseBuffer);
460 appendASCII(base.m_string.left(base.m_schemeEnd + 1), str, len, parseBuffer);
464 appendASCII(base.m_string
[all...]
/external/webkit/Source/WebCore/platform/sql/
H A DSQLValue.cpp37 , m_string(val.m_string.threadsafeCopy())
46 return m_string.threadsafeCopy();
H A DSQLValue.h43 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/JavaScriptCore/qt/api/
H A Dqscriptstring_p.h52 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/WebKit2/Shared/
H A DWebString.h58 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...]
H A DWebURL.h49 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
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringBuilder.cpp36 if (!m_string.isNull()) {
37 ASSERT(m_string.length() == m_length);
43 m_string = StringImpl::empty();
49 m_string = (m_length == m_buffer->length())
67 m_string = String();
71 // Since m_length && !m_buffer, the string must be valid in m_string, and m_string.length() > 0.
72 ASSERT(!m_string.isEmpty());
73 ASSERT(m_length == m_string.length());
74 ASSERT(newSize < m_string
[all...]
H A DStringBuilder.h50 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
130 String m_string; member in class:WTF::StringBuilder
[all...]
H A DAtomicString.h44 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/
H A DIdentifierRep.h47 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::__anon15737
/external/webkit/Source/WebCore/storage/
H A DIDBKey.cpp52 return codePointCompare(other->m_string, m_string) > 0;
72 return other->m_string == m_string;
H A DIDBKey.h58 idbKey->m_string = string;
85 return m_string;
110 String m_string; member in class:WebCore::IDBKey
/external/webkit/Source/JavaScriptCore/runtime/
H A DIdentifier.h38 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
84 UString m_string; member in class:JSC::Identifier
[all...]
/external/webkit/Source/WebCore/dom/
H A DSpaceSplitString.cpp51 if (m_shouldFoldCase && hasNonASCIIOrUpper(m_string))
52 m_string = m_string.foldCase();
54 const UChar* characters = m_string.characters();
55 unsigned length = m_string.length();
71 m_string = String();
/external/webkit/Source/WebCore/platform/qt/
H A DKURLQt.cpp37 QString str = QString::fromRawData(reinterpret_cast<const QChar*>(m_string.characters()), m_string.length());
/external/webkit/Source/WebCore/platform/gtk/
H A DKURLGtk.cpp31 gchar* filename = g_filename_from_uri(m_string.utf8().data(), 0, 0);
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPIdentifierData.cpp56 npIdentifierData.m_string = identifierRep->string();
66 return static_cast<NPIdentifier>(IdentifierRep::get(m_string.data()));
75 encoder->encode(m_string);
86 return decoder->decode(result.m_string);
H A DNPIdentifierData.h55 CString m_string; member in class:WebKit::NPIdentifierData
/external/webkit/Source/WebKit/win/
H A DWebLocalizableStrings.cpp87 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[
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategory.java73 private final String m_string; field in class:PropertyCategory
82 m_string = string;
92 return m_string;

Completed in 436 milliseconds

12