OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_strings
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/dom/
DOMStringList.h
45
bool isEmpty() const { return
m_strings
.isEmpty(); }
46
void clear() {
m_strings
.clear(); }
47
void append(const String& string) {
m_strings
.append(string); }
50
size_t length() const { return
m_strings
.size(); }
57
Vector<String>
m_strings
;
member in class:WebCore::DOMStringList
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringListPropertyEditor.java
24
private String[]
m_strings
;
field in class:StringListPropertyEditor
34
property.setValue(
m_strings
[index]);
44
return
m_strings
.length;
53
if (string.equalsIgnoreCase(
m_strings
[i])) {
57
if (string.equals(
m_strings
[i])) {
68
return
m_strings
[index];
73
//return StringConverter.INSTANCE.toJavaSource(null,
m_strings
[index]);
76
return
m_strings
[index];
85
//
m_strings
= getParameterAsArray(parameters, "strings");
93
//
m_strings
= strings
[
all
...]
/external/webkit/Source/WebCore/xml/
XPathParser.h
124
HashSet<String*>
m_strings
;
member in class:WebCore::XPath::Parser
/external/webkit/Source/WebCore/platform/cf/
BinaryPropertyList.cpp
151
HashMap<String, ObjectReference>
m_strings
;
member in class:WebCore::BinaryPropertyListPlan
217
if (!
m_strings
.add(string, m_currentObjectReference).second)
335
ASSERT(
m_strings
.contains(string));
336
return
m_strings
.get(string);
Completed in 237 milliseconds