HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 201 - 225 of 3035) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/main/java/org/apache/xpath/patterns/
FunctionPattern.java 92 * @param xctxt XPath runtime context.
102 public XObject execute(XPathContext xctxt, int context)
106 DTMIterator nl = m_functionExpr.asIterator(xctxt, context);
115 score = (n == context) ? SCORE_OTHER : SCORE_NONE;
119 context = n;
135 * @param xctxt XPath runtime context.
145 public XObject execute(XPathContext xctxt, int context,
150 DTMIterator nl = m_functionExpr.asIterator(xctxt, context);
159 score = (n == context) ? SCORE_OTHER : SCORE_NONE;
163 context = n
192 int context = xctxt.getCurrentNode(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSessionContextTest.java 43 SSLContext context = SSLContext.getInstance("TLS"); local
44 context.init(null, null, null);
45 SSLSessionContext sc = context
81 SSLContext context = SSLContext.getInstance("TLS"); local
82 context.init(null, null, null);
83 SSLSessionContext sc = context
110 SSLContext context = SSLContext.getInstance("TLS"); local
111 context.init(null, null, null);
112 SSLSessionContext sc = context
134 SSLContext context = SSLContext.getInstance("TLS") local
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
CameraHeadUpDisplay.java 19 import android.content.Context;
33 private Context mContext;
37 public CameraHeadUpDisplay(Context context) {
38 super(context);
39 mContext = context;
42 public void initialize(Context context, PreferenceGroup group,
46 super.initialize(context, group);
51 Context context, PreferenceGroup group)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
ExchangeSender.java 21 import android.content.Context;
32 public static Sender newInstance(Context context, String uri) {
33 return new ExchangeSender(context, uri);
36 private ExchangeSender(Context context, String _uri) {
  /packages/apps/Stk/src/com/android/stk/
BootCompletedReceiver.java 20 import android.content.Context;
31 public void onReceive(Context context, Intent intent) {
38 context.startService(new Intent(context, StkAppService.class)
  /external/webkit/WebCore/platform/graphics/win/
GraphicsContextCGWin.cpp 50 CGContextRef context = CGBitmapContextCreate(info.bmBits, info.bmWidth, info.bmHeight, 8, local
55 CGContextTranslateCTM(context, 0, info.bmHeight);
56 CGContextScaleCTM(context, 1, -1);
61 return context;
72 // Make sure the context starts in sync with our state.
89 // it into our context.
146 CGContextRef context = platformContext(); local
147 CGContextSaveGState(context);
149 CGContextBeginPath(context);
150 CGContextAddPath(context, focusRingPath)
201 CGContextRef context = platformContext(); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AlertReceiver.java 23 import android.content.Context;
49 public void onReceive(Context context, Intent intent) {
60 Intent serviceIntent = new Intent(context, DismissAllAlarmsService.class);
61 context.startService(serviceIntent);
64 i.setClass(context, AlertService.class);
73 beginStartingService(context, i);
81 public static void beginStartingService(Context context, Intent intent) {
85 (PowerManager)context.getSystemService(Context.POWER_SERVICE)
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.cpp 87 static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
89 return JSValueMakeBoolean(context, dragMode);
92 static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
94 dragMode = JSValueToBoolean(context, value);
98 static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
101 return JSValueMakeUndefined(context);
104 static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
110 return JSValueMakeUndefined(context);
128 return JSValueMakeUndefined(context);
155 static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], (…)
    [all...]
  /external/icu4c/samples/layout/
cgnomelayout.c 21 struct Context
28 typedef struct Context Context;
80 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local
92 if (context->paragraph != NULL) {
93 pf_close(context->paragraph);
96 context->paragraph = newPara
226 Context *context = NEW_ARRAY(Context, 1); local
240 gtk_object_set_data(GTK_OBJECT(app), "context", context); local
265 context); local
270 context); local
281 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local
    [all...]
  /external/apache-http/src/org/apache/http/
HttpRequestInterceptor.java 47 * <!-- empty lines above to avoid 'svn diff' context problems -->
61 * @param context the context for the request
66 void process(HttpRequest request, HttpContext context)
HttpResponseInterceptor.java 46 * <!-- empty lines above to avoid 'svn diff' context problems -->
60 * @param context the context for the request
65 void process(HttpResponse response, HttpContext context)
  /external/apache-http/src/org/apache/http/client/
HttpRequestRetryHandler.java 59 * @param context the context for the request execution
64 boolean retryRequest(IOException exception, int executionCount, HttpContext context);
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestExecutor.java 106 final HttpContext context)
114 if (context == null) {
115 throw new IllegalArgumentException("HTTP context may not be null");
119 HttpResponse response = doSendRequest(request, conn, context);
121 response = doReceiveResponse(request, conn, context);
141 * @param context the context for sending the request
149 final HttpContext context)
157 if (context == null) {
158 throw new IllegalArgumentException("HTTP context may not be null")
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8CustomApplicationInstalledCallback.cpp 51 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get()); local
52 if (context.IsEmpty())
55 v8::Context::Scope scope(context);
V8CustomPositionCallback.cpp 50 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get()); local
51 if (context.IsEmpty())
54 v8::Context::Scope scope(context);
V8CustomPositionErrorCallback.cpp 50 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get()); local
51 if (context.IsEmpty())
54 v8::Context::Scope scope(context);
V8CustomSQLStatementCallback.cpp 59 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get()); local
60 if (context.IsEmpty())
63 v8::Context::Scope scope(context);
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);

Completed in 2636 milliseconds

1 2 3 4 5 6 7 891011>>