OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_buttons
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/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
120
if (m_viewImpl->
m_buttons
.size() > 0) {
122
Container* end = m_viewImpl->
m_buttons
.end();
123
for (Container* ptr = m_viewImpl->
m_buttons
.begin(); ptr != end; ptr++) {
PlatformGraphicsContext.h
161
WTF::Vector<Container>*
m_buttons
;
member in class:WebCore::PlatformGraphicsContext
/external/webkit/Source/WebKit/android/
RenderSkinButton.h
50
NinePatch
m_buttons
[4];
member in class:WebCore::RenderSkinButton
RenderSkinButton.cpp
77
if (!RenderSkinNinePatch::decodeAsset(am, path.utf8().data(), &
m_buttons
[i])) {
102
RenderSkinNinePatch::DrawNinePatch(canvas, SkRect(r),
m_buttons
[newState]);
/external/webkit/Source/WebKit/android/jni/
WebViewCore.h
599
//
m_buttons
, so that we, and webview.cpp can look/modify the
m_buttons
602
WTF::Vector<Container>
m_buttons
;
member in class:android::WebViewCore
WebViewCore.cpp
563
// Copy
m_buttons
so we can pass it to our graphics context.
565
WTF::Vector<Container> buttons(
m_buttons
);
792
//
m_buttons
or they need to be added to it.
799
Container* lastPossibleMatch =
m_buttons
.end();
800
for (Container* possibleMatch =
m_buttons
.begin();
810
// This is a brand new button, so append it to
m_buttons
811
m_buttons
.append(*updatedContainer);
816
while (i <
m_buttons
.size()) {
817
if (
m_buttons
[i].canBeRemoved()) {
818
m_buttons
[i] = m_buttons.last()
[
all
...]
/external/webkit/Source/WebKit/android/nav/
WebView.cpp
319
if (m_viewImpl->
m_buttons
.size() && m_buttonSkin) {
333
Container* end = m_viewImpl->
m_buttons
.end();
334
for (Container* ptr = m_viewImpl->
m_buttons
.begin(); ptr != end; ptr++) {
[
all
...]
Completed in 1206 milliseconds