OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_labelsByForAttribute
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp
121
m_labelsByForAttribute
.clear();
261
ASSERT(
m_labelsByForAttribute
);
262
m_labelsByForAttribute
->add(forAttributeValue.impl(), element);
267
ASSERT(
m_labelsByForAttribute
);
268
m_labelsByForAttribute
->remove(forAttributeValue.impl(), element);
276
if (!
m_labelsByForAttribute
) {
278
m_labelsByForAttribute
= adoptPtr(new DocumentOrderedMap);
290
return toHTMLLabelElement(
m_labelsByForAttribute
->getElementByLabelForAttribute(forAttributeValue.impl(), this));
TreeScope.h
76
bool shouldCacheLabelsByForAttribute() const { return
m_labelsByForAttribute
; }
165
OwnPtr<DocumentOrderedMap>
m_labelsByForAttribute
;
Completed in 138 milliseconds