HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 226 - 250 of 3096) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/v8/custom/
V8CustomSQLStatementErrorCallback.cpp 59 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get()); local
60 if (context.IsEmpty())
63 v8::Context::Scope scope(context);
V8CustomSQLTransactionCallback.cpp 59 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get()); local
60 if (context.IsEmpty())
63 v8::Context::Scope scope(context);
V8CustomSQLTransactionErrorCallback.cpp 58 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get()); local
59 if (context.IsEmpty())
62 v8::Context::Scope scope(context);
  /external/webkit/WebCore/platform/graphics/cg/
PDFDocumentImage.cpp 91 void PDFDocumentImage::adjustCTM(GraphicsContext* context) const
106 CGContextTranslateCTM(context->platformContext(), floorf(-min(zero, min(rx.x, ry.x))), floorf(-min(zero, min(rx.y, ry.y))));
109 CGContextRotateCTM(context->platformContext(), -m_rotation);
112 CGContextTranslateCTM(context->platformContext(), m_mediaBox.x() - m_cropBox.x(), m_mediaBox.y() - m_cropBox.y());
149 void PDFDocumentImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace, CompositeOperator op)
154 context->save();
156 context->setCompositeOperation(op);
164 CGContextTranslateCTM(context->platformContext(), dstRect.x() - srcRect.x() * hScale, dstRect.y() - srcRect.y() * vScale);
165 CGContextScaleCTM(context->platformContext(), hScale, vScale);
166 CGContextScaleCTM(context->platformContext(), 1, -1)
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextPlatformPrivate.h 46 PlatformContextSkia* context() { return m_context; } function in class:WebCore::GraphicsContextPlatformPrivate
  /external/webkit/WebCore/rendering/
EllipsisBox.cpp 32 GraphicsContext* context = paintInfo.context; local
35 if (textColor != context->fillColor())
36 context->setFillColor(textColor, style->colorSpace());
39 context->setShadow(IntSize(style->textShadow()->x, style->textShadow()->y),
45 paintSelection(context, tx, ty, style, style->font());
50 context->setFillColor(foreground, style->colorSpace());
54 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->font().ascent()));
57 if (textColor != context->fillColor())
58 context->setFillColor(textColor, style->colorSpace())
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebNetscapeContainerCheckPrivate.h 43 typedef uint32 (*WKN_CheckIfAllowedToLoadURLProcPtr)(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32, NPBool allowed, void* context), void* context);
47 uint32 WKN_CheckIfAllowedToLoadURL(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32, NPBool allowed, void* context), void* context);
  /external/webkit/WebKit/win/Interfaces/
IWebSerializedJSValue.idl 38 [local] HRESULT serialize([in] JSContextRef context, [in] JSValueRef value, [out, retval] JSValueRef* exception);
39 [local] HRESULT deserialize([in] JSContextRef context, [out, retval] JSValueRef* value);
  /external/webkit/WebKitTools/DumpRenderTree/cairo/
PixelDumpSupportCairo.h 49 static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context)
51 return adoptRef(new BitmapContext(buffer, context));
69 BitmapContext(PlatformBitmapBuffer buffer, cairo_t* context)
75 m_context = context;
  /external/webkit/WebKitTools/DumpRenderTree/cg/
PixelDumpSupportCG.h 52 static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, CGContextRef context)
54 return adoptRef(new BitmapContext(buffer, context));
71 BitmapContext(PlatformBitmapBuffer buffer, CGContextRef context)
73 , m_context(AdoptCF, context)
  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.h 38 JSObjectRef makeEventSender(JSContextRef context);
  /frameworks/base/core/java/android/view/animation/
LinearInterpolator.java 19 import android.content.Context;
31 public LinearInterpolator(Context context, AttributeSet attrs) {
  /frameworks/base/core/java/android/widget/
ImageSwitcher.java 21 import android.content.Context;
29 public ImageSwitcher(Context context)
31 super(context);
34 public ImageSwitcher(Context context, AttributeSet attrs) {
35 super(context, attrs);
TextSwitcher.java 20 import android.content.Context;
37 * @param context the application's environment
39 public TextSwitcher(Context context) {
40 super(context);
44 * Creates a new empty TextSwitcher for the given context and with the
47 * @param context the application environment
50 public TextSwitcher(Context context, AttributeSet attrs) {
51 super(context, attrs)
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
PolicyManager.java 19 import android.content.Context;
57 public static Window makeNewWindow(Context context) {
58 return sPolicy.makeNewWindow(context);
61 public static LayoutInflater makeNewLayoutInflater(Context context) {
62 return sPolicy.makeNewLayoutInflater(context);
  /frameworks/base/core/java/com/android/internal/widget/
LinearLayoutWithDefaultTouchRecepient.java 19 import android.content.Context;
39 public LinearLayoutWithDefaultTouchRecepient(Context context) {
40 super(context);
43 public LinearLayoutWithDefaultTouchRecepient(Context context, AttributeSet attrs) {
44 super(context, attrs);
  /frameworks/base/opengl/tests/testPauseResume/src/com/android/test/
TestView.java 35 import android.content.Context;
55 TestView(Context context) {
56 super(context);
60 public TestView(Context context, AttributeSet attrs) {
61 super(context, attrs);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardViewProperties.java 19 import android.content.Context;
30 * @param context the context to use when creating the view.
35 KeyguardViewBase createKeyguardView(Context context,
Policy.java 19 import android.content.Context;
58 public PhoneWindow makeNewWindow(Context context) {
59 return new PhoneWindow(context);
62 public PhoneLayoutInflater makeNewLayoutInflater(Context context) {
63 return new PhoneLayoutInflater(context);
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.h 24 extern void ctrlServerInit(v8::Handle<v8::Context> context);
worker_v8.h 28 extern void testWorkerV8(v8::Handle<v8::Context> context);
  /libcore/luni/src/main/java/org/apache/xpath/functions/
FuncQname.java 39 * @param xctxt The current execution context.
47 int context = getArg0AsNode(xctxt); local
50 if (DTM.NULL != context)
52 DTM dtm = xctxt.getDTM(context);
53 String qname = dtm.getNodeNameX(context);
  /packages/apps/Camera/src/com/android/camera/
CameraButtonIntentReceiver.java 20 import android.content.Context;
36 public void onReceive(Context context, Intent intent) {
39 ComboPreferences pref = new ComboPreferences(context);
47 i.setClass(context, Camera.class);
51 context.startActivity(i);
  /packages/apps/Camera/src/com/android/camera/ui/
GpsIndicator.java 19 import android.content.Context;
31 public GpsIndicator(Context context, IconListPreference preference) {
32 super(context, preference);
39 Context context = getGLRootView().getContext(); local
41 context, R.drawable.ic_viewfinder_gps_no_signal);
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java 20 import android.content.Context;
34 public void onReceive(Context context, Intent data) {
41 if (!installShortcut(context, data, screen)) {
44 if (i != screen && installShortcut(context, data, i)) break;
49 private boolean installShortcut(Context context, Intent data, int screen) {
52 if (findEmptyCell(context, mCoordinates, screen)) {
67 if (duplicate || !LauncherModel.shortcutExists(context, name, intent)) {
68 ((LauncherApplication)context.getApplicationContext()).getModel(
    [all...]

Completed in 925 milliseconds

1 2 3 4 5 6 7 8 91011>>