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

1 2

  /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/chromium_org/third_party/WebKit/Source/core/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 70 : m_string(string)
85 String string() const { return m_string; }
140 if (m_string.is8Bit())
141 m_iterator = acquireLineBreakIterator(m_string.characters8(), m_string.length(), m_locale, priorContext, priorContextLength);
143 m_iterator = acquireLineBreakIterator(m_string.characters16(), m_string.length(), m_locale, priorContext, priorContextLength);
147 this->resetStringAndReleaseIterator(m_string, m_locale);
158 m_string = string;
167 String m_string; member in class:WebCore::LazyLineBreakIterator
    [all...]
SegmentedString.h 45 , m_string(str)
48 if (m_string.is8Bit()) {
50 m_data.string8Ptr = m_string.characters8();
53 m_data.string16Ptr = m_string.characters16();
68 int numberOfCharactersConsumed() const { return m_string.length() - m_length; }
72 int offset = m_string.length() - m_length;
76 builder.append(m_string);
78 builder.append(m_string.substring(offset, m_length));
105 int offset = m_string.length() - m_length;
106 return m_string.substring(offset, length)
135 String m_string; member in class:WebCore::SegmentedSubstring
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/
SQLValue.cpp 37 , m_string(val.m_string.isolatedCopy())
46 return m_string.isolatedCopy();
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/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLIdentifier.h 47 : m_string(findIfKnown(vector.data(), vector.size()))
49 if (m_string.impl())
52 m_string = StringImpl::create8BitIfPossible(vector);
54 m_string = String::make8BitFrom16BitSource(vector);
56 m_string = String(vector);
66 bool isSafeToSendToAnotherThread() const { return m_string.isSafeToSendToAnotherThread(); }
77 String m_string; member in class:WebCore::HTMLIdentifier
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebURL.cpp 39 : m_string(url.string())
47 m_string = url.string();
55 return WebCore::KURL(m_string, m_parsed, m_isValid);
  /external/chromium_org/third_party/WebKit/public/platform/
WebURL.h 58 : m_string(url.m_string)
66 m_string = url.m_string;
75 std::string spec = m_string.utf8();
81 return m_string;
96 return m_string.isEmpty();
101 return m_string.isEmpty();
110 : m_string(WebString::fromUTF8(url.possibly_invalid_spec()))
118 m_string = WebString::fromUTF8(url.possibly_invalid_spec())
131 WebString m_string; member in class:WebKit::WebURL
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebContentDetectionResult.h 45 , m_string(string)
52 const WebString& string() const { return m_string; }
58 WebString m_string; member in class:WebKit::WebContentDetectionResult
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.h 45 AtomicString(const LChar* s) : m_string(add(s)) { }
46 AtomicString(const char* s) : m_string(add(s)) { }
47 AtomicString(const LChar* s, unsigned length) : m_string(add(s, length)) { }
48 AtomicString(const UChar* s, unsigned length) : m_string(add(s, length)) { }
49 AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { }
50 AtomicString(const UChar* s) : m_string(add(s)) { }
54 : m_string(add(characters.data(), characters.size()))
58 ATOMICSTRING_CONVERSION AtomicString(StringImpl* imp) : m_string(add(imp)) { }
59 ATOMICSTRING_CONVERSION AtomicString(const String& s) : m_string(add(s.impl())) { }
60 AtomicString(StringImpl* baseString, unsigned start, unsigned length) : m_string(add(baseString, start, length)) {
163 String m_string; member in class:WTF::AtomicString
    [all...]
StringBuilder.cpp 43 if (!m_string.isNull()) {
44 ASSERT(m_string.length() == m_length);
49 m_string = StringImpl::empty();
55 m_string = m_buffer.release();
61 m_string = m_buffer.release();
65 m_string = m_buffer->substring(0, m_length);
70 ASSERT(m_string.isNull());
86 m_string = String(); // Clear the string to remove the reference to m_buffer if any before checking the reference count of m_buffer.
97 // Since m_length && !m_buffer, the string must be valid in m_string, and m_string.length() > 0
    [all...]
StringBuilder.h 61 m_string = string;
63 m_is8Bit = m_string.is8Bit();
80 if (!m_length && !m_buffer && !other.m_string.isNull()) {
81 m_string = other.m_string;
125 if (m_buffer && m_length < m_buffer->length() && m_string.isNull()) {
141 if (m_buffer && m_length < m_buffer->length() && m_string.isNull()) {
178 if (m_string.isNull())
180 return m_string;
185 if (!m_string.isNull()
294 String m_string; \/\/ Pointers first: crbug.com\/232031 member in class:WTF::StringBuilder
    [all...]
  /external/chromium_org/third_party/WebKit/Source/weborigin/
KURL.cpp 214 , m_string(canonicalString)
223 , m_string(WTF::HashTableDeletedValue)
231 , m_string(other.m_string)
242 m_string = other.m_string;
256 result.m_string = m_string.isolatedCopy();
264 return m_string.isNull();
269 return m_string.isEmpty()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.cpp 45 : m_string(s)
66 const String m_string; member in class:WebCore::IDBKeyPathLexer
78 if (m_string[m_index] == '.') {
112 if (m_index < m_length && isIdentifierStartCharacter(m_string[m_index]))
117 while (m_index < m_length && isIdentifierCharacter(m_string[m_index]))
120 element = m_string.substring(start, m_index - start);
197 , m_string(string)
199 ASSERT(!m_string.isNull());
219 return IDBIsValidKeyPath(m_string);
243 return m_string == other.m_string
    [all...]
IDBKeyPath.h 66 return m_string;
75 String m_string; member in class:WebCore::IDBKeyPath
IDBKey.cpp 68 return -codePointCompare(other->m_string, m_string);
IDBKey.h 119 return m_string;
151 explicit IDBKey(const String& value) : m_type(StringType), m_string(value), m_number(0), m_sizeEstimate(OverheadSize + value.length() * sizeof(UChar)) { }
156 const String m_string; member in class:WebCore::IDBKey
  /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/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.cpp 78 return !m_data->m_string.isEmpty();
92 const String& str = m_data->m_string.simplifyWhiteSpace();
123 return m_data->m_string;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathStringSource.h 55 String m_string; member in class:WebCore::SVGPathStringSource
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceSource.h 56 const AtomicString& string() const { return m_string; }
91 AtomicString m_string; // URI for remote, built-in font name for local. member in class:WebCore::CSSFontFaceSource
CSSFontFaceSource.cpp 48 : m_string(str)
119 RefPtr<SimpleFontData> fontData = fontCache()->getFontResourceData(fontDescription, m_string, true);
143 size_t start = m_string.find('#');
145 fragmentIdentifier = m_string.string().substring(start + 1);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime.cpp 51 explicit StringKey(const char* str) : m_string(str), m_length(strlen(str)) { }
52 StringKey() : m_string(0), m_length(0) { }
53 explicit StringKey(WTF::HashTableDeletedValueType) : m_string(hashTableDeletedValue()), m_length(0) { }
57 this->m_string = other.m_string;
64 return m_string == hashTableDeletedValue();
67 const char* m_string; member in class:npruntime::StringKey
81 if (x.m_string == y.m_string)
85 return !memcmp(x.m_string, y.m_string, y.m_length)
    [all...]
V8StringResource.h 179 , m_string()
214 m_string = string;
224 return StringType(m_string);
229 String m_string; member in class:WebCore::V8StringResource

Completed in 2895 milliseconds

1 2