OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_buttons
(Results
1 - 6
of
6
) sorted by null
/external/webkit/WebCore/platform/graphics/android/
PlatformGraphicsContext.cpp
34
: mCanvas(canvas), m_deleteCanvas(false),
m_buttons
(buttons)
39
: mCanvas(new SkCanvas), m_deleteCanvas(true),
m_buttons
(0)
53
if (
m_buttons
== NULL)
58
Container* end =
m_buttons
->end();
59
for (Container* ptr =
m_buttons
->begin(); ptr != end; ptr++) {
71
m_buttons
->append(container);
android_graphics.cpp
122
if (m_viewImpl->
m_buttons
.size() > 0) {
124
Container* end = m_viewImpl->
m_buttons
.end();
125
for (Container* ptr = m_viewImpl->
m_buttons
.begin(); ptr != end; ptr++) {
PlatformGraphicsContext.h
160
WTF::Vector<Container>*
m_buttons
;
member in class:WebCore::PlatformGraphicsContext
/external/webkit/WebKit/android/jni/
WebViewCore.cpp
481
// Copy
m_buttons
so we can pass it to our graphics context.
483
WTF::Vector<Container> buttons(
m_buttons
);
678
//
m_buttons
or they need to be added to it.
685
Container* lastPossibleMatch =
m_buttons
.end();
686
for (Container* possibleMatch =
m_buttons
.begin();
696
// This is a brand new button, so append it to
m_buttons
697
m_buttons
.append(*updatedContainer);
702
while (i <
m_buttons
.size()) {
703
if (
m_buttons
[i].canBeRemoved()) {
704
m_buttons
[i] = m_buttons.last()
[
all
...]
WebViewCore.h
482
//
m_buttons
, so that we, and webview.cpp can look/modify the
m_buttons
485
WTF::Vector<Container>
m_buttons
;
member in class:android::WebViewCore
/external/webkit/WebKit/android/nav/
WebView.cpp
255
if (m_viewImpl->
m_buttons
.size()) {
269
Container* end = m_viewImpl->
m_buttons
.end();
270
for (Container* ptr = m_viewImpl->
m_buttons
.begin(); ptr != end; ptr++) {
[
all
...]
Completed in 522 milliseconds