Home
last modified time | relevance | path

Searched refs:gAbstractInlineTextBoxMap (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DAbstractInlineTextBox.cpp39 …extBox::InlineToAbstractInlineTextBoxHashMap* AbstractInlineTextBox::gAbstractInlineTextBoxMap = 0; member in WebCore::AbstractInlineTextBox
46 if (!gAbstractInlineTextBoxMap) in getOrCreate()
47 gAbstractInlineTextBoxMap = new InlineToAbstractInlineTextBoxHashMap(); in getOrCreate()
49 …InlineToAbstractInlineTextBoxHashMap::const_iterator it = gAbstractInlineTextBoxMap->find(inlineTe… in getOrCreate()
50 if (it != gAbstractInlineTextBoxMap->end()) in getOrCreate()
54 gAbstractInlineTextBoxMap->set(inlineTextBox, obj); in getOrCreate()
60 if (!gAbstractInlineTextBoxMap) in willDestroy()
63 …InlineToAbstractInlineTextBoxHashMap::const_iterator it = gAbstractInlineTextBoxMap->find(inlineTe… in willDestroy()
64 if (it != gAbstractInlineTextBoxMap->end()) { in willDestroy()
66 gAbstractInlineTextBoxMap->remove(inlineTextBox); in willDestroy()
DAbstractInlineTextBox.h93 static InlineToAbstractInlineTextBoxHashMap* gAbstractInlineTextBoxMap; variable