HomeSort by relevance Sort by last modified time
    Searched defs:context (Results 101 - 125 of 1017) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/rendering/
PaintInfo.h 55 : context(newContext)
88 context->concatCTM(localToAncestorTransform);
100 GraphicsContext* context; member in struct:WebCore::PaintInfo
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributes.h 46 SVGTextLayoutAttributes(RenderSVGInlineText* context = 0);
53 RenderSVGInlineText* context() const { return m_context; } function in class:WebCore::SVGTextLayoutAttributes
  /external/webkit/Source/WebCore/storage/
SQLCallbackWrapper.h 44 // - by unwrapping and then dereferencing normally - on context thread only
61 ScriptExecutionContext* context; local
74 context = m_scriptExecutionContext.release().leakRef();
77 context->postTask(createCallbackTask(&safeRelease, callback));
92 static void safeRelease(ScriptExecutionContext* context, T* callback)
94 ASSERT(callback && context && context->isContextThread());
96 context->deref();
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedPropertyMacros.h 47 SVGElement* context = type->contextElement(); local
48 ASSERT(context);
49 return context;
  /external/webkit/Source/WebCore/webaudio/
AudioNodeInput.h 48 AudioContext* context() { return m_node->context(); } function in class:WebCore::AudioNodeInput
50 // Must be called with the context's graph lock.
56 // Must be called with the context's graph lock.
64 // Called from context's audio thread.
68 // Called from context's audio thread.
72 // This must be called when we own the context's graph lock in the audio thread at the very start or end of the render quantum.
100 // Whenever m_outputs is modified, the context is told so it can later update m_renderingOutputs from m_outputs at a safe time.
115 // Called from context's audio thread.
  /external/webkit/Source/WebKit2/UIProcess/API/qt/tests/qgraphicswkview/
tst_qgraphicswkview.cpp 59 QWKContext* context = new QWKContext(this); local
60 m_webView = new QGraphicsWKView(context);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageUIClient.cpp 98 RefPtr<WebGraphicsContext> context = WebGraphicsContext::create(graphicsContext); local
99 m_client.paintCustomOverhangArea(toAPI(page), toAPI(context.get()), toAPI(horizontalOverhangArea), toAPI(verticalOverhangArea), toAPI(dirtyRect), m_client.clientInfo);
  /external/webkit/Tools/TestWebKitAPI/
JavaScriptTest.cpp 48 JavaScriptCallbackContext* context = static_cast<JavaScriptCallbackContext*>(ctx); local
59 context->didFinish = true;
60 context->didMatchExpectedString = JSStringIsEqualToUTF8CString(scriptString, context->expectedString);
75 JavaScriptCallbackContext context(expectedResult);
76 WKPageRunJavaScriptInMainFrame(page, wk(script).get(), &context, javaScriptCallback);
77 Util::run(&context.didFinish);
78 return context.didMatchExpectedString;
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
ResponsivenessTimerDoesntFireEarly.cpp 53 static void setInjectedBundleClient(WKContextRef context)
61 WKContextSetInjectedBundleClient(context, &injectedBundleClient);
78 WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ResponsivenessTimerDoesntFireEarlyTest")); local
79 setInjectedBundleClient(context.get());
81 PlatformWebView webView(context.get());
87 WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("BrieflyPause").get(), 0);
  /external/wpa_supplicant_8/src/crypto/
fips_prf_openssl.c 24 SHA_CTX context; local
25 os_memset(&context, 0, sizeof(context));
26 os_memcpy(&context.h0, state, 5 * 4);
27 SHA1_Transform(&context, data);
28 os_memcpy(state, &context.h0, 5 * 4);
  /frameworks/base/core/java/android/text/style/
URLSpan.java 19 import android.content.Context;
59 Context context = widget.getContext(); local
61 intent.putExtra(Browser.EXTRA_APPLICATION_ID, context.getPackageName());
62 context.startActivity(intent);
  /frameworks/base/core/jni/
android_media_ToneGenerator.cpp 37 jfieldID context; member in struct:fields_t
45 fields.context);
58 fields.context);
70 fields.context);
73 env->SetIntField(thiz, fields.context, 0);
84 env->SetIntField(thiz, fields.context, 0);
102 env->SetIntField(thiz, fields.context, (int)lpToneGen);
104 LOGV("ToneGenerator fields.context: %x\n", env->GetIntField(thiz, fields.context));
112 fields.context);
    [all...]
android_os_StatFs.cpp 36 jfieldID context; member in struct:android::fields_t
45 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
52 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
59 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
66 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
79 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
96 env->SetIntField(thiz, fields.context, 0);
116 env->SetIntField(thiz, fields.context, (int)stat);
123 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
126 env->SetIntField(thiz, fields.context, 0)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
RemoteReceiver.java 19 import android.content.Context;
32 public void onReceive(Context context, Intent intent)
37 context.sendOrderedBroadcast(newIntent, null);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemISVAndButton.java 19 import android.content.Context;
43 Context context = parent.getContext(); local
45 final LinearLayout ll = new LinearLayout(context);
48 final InternalSelectionView isv = new InternalSelectionView(context, 8, "ISV postion " + position);
58 final Button topButton = new Button(context);
64 final TextView filler = new TextView(context);
  /frameworks/base/opengl/tests/filter/
filter.cpp 36 EGLContext context; local
62 context = eglCreateContext(dpy, config, NULL, NULL);
63 eglMakeCurrent(dpy, surface, surface, context);
  /frameworks/base/opengl/tests/finish/
finish.cpp 43 EGLContext context; local
62 context = eglCreateContext(dpy, config, NULL, NULL);
63 eglMakeCurrent(dpy, surface, surface, context);
  /frameworks/base/opengl/tests/gl_perf/
gl2_perf.cpp 70 EGLContext context; local
105 context = eglCreateContext(dpy, myConfig, EGL_NO_CONTEXT, context_attribs);
107 if (context == EGL_NO_CONTEXT) {
111 returnValue = eglMakeCurrent(dpy, surface, surface, context);
  /frameworks/base/opengl/tests/linetex/
linetex.cpp 43 EGLContext context; local
62 context = eglCreateContext(dpy, config, NULL, NULL);
63 eglMakeCurrent(dpy, surface, surface, context);
  /frameworks/base/opengl/tests/textures/
textures.cpp 39 EGLContext context; local
58 context = eglCreateContext(dpy, config, NULL, NULL);
59 eglMakeCurrent(dpy, surface, surface, context);
  /frameworks/compile/slang/
slang_rs_metadata_spec.h 56 // Create a context associated with M for encoding metadata.
79 void *context; member in struct:RSMetadata
  /libcore/luni/src/main/java/javax/net/ssl/
SSLServerSocketFactory.java 61 SSLContext context; local
63 context = SSLContext.getDefault();
65 context = null;
67 if (context != null) {
68 defaultServerSocketFactory = context.getServerSocketFactory();
SSLSocketFactory.java 64 SSLContext context; local
66 context = SSLContext.getDefault();
68 context = null;
70 if (context != null) {
71 defaultSocketFactory = context.getSocketFactory();
  /packages/apps/Contacts/src/com/android/contacts/util/
NotifyingAsyncQueryHandler.java 20 import android.content.Context;
31 * {@link Context} objects.
43 public NotifyingAsyncQueryHandler(Context context, AsyncQueryListener listener) {
44 super(context.getContentResolver());
  /packages/apps/Exchange/tests/src/com/android/exchange/
ExchangeServiceTest.java 19 import android.content.Context;
30 public MyContext(Context base) {
42 final MyContext context = new MyContext(getContext()); local
44 final String id = ExchangeService.getDeviceId(context);
52 context.isGetFileStreamPathCalled = false;
53 final String cachedId = ExchangeService.getDeviceId(context);
58 assertFalse(context.isGetFileStreamPathCalled);

Completed in 1948 milliseconds

1 2 3 45 6 7 8 91011>>