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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Bindings/Ocaml/
ext_exc.ml 5 let context = Llvm.global_context () var
10 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
bitreader.ml 10 let context = Llvm.global_context () var
16 let m = Llvm.create_module context "ocaml_test_module" in
26 let m = Llvm_bitreader.parse_bitcode context mb in
47 Llvm_bitreader.get_module context mb
67 Llvm_bitreader.get_module context mb
bitwriter.ml 10 let context = Llvm.global_context () var
38 let m = Llvm.create_module context "ocaml_test_module" in
  /external/ppp/pppd/plugins/radius/
md5.c 8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
  /external/icu4c/i18n/
regextxt.cpp 18 struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct; local
20 if (offset == context->lastOffset + 1) {
21 c = UTEXT_NEXT32(context->text);
22 context->lastOffset++;
23 } else if (offset == context->lastOffset) {
24 c = UTEXT_PREVIOUS32(context->text);
25 UTEXT_NEXT32(context->text);
27 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
28 c = UTEXT_NEXT32(context->text)
    [all...]
  /external/skia/gpu/src/
GrTexture.cpp 23 // go through context so that all necessary flushing occurs
24 GrContext* context = this->getGpu()->getContext(); local
25 GrAssert(NULL != context);
26 return context->readRenderTargetPixels(this,
58 // go through context so that all necessary flushing occurs
59 GrContext* context = this->getGpu()->getContext(); local
60 GrAssert(NULL != context);
61 return context->readTexturePixels(this,
  /external/webkit/Source/WebCore/bindings/js/
JSDesktopNotificationsCustom.cpp 50 ScriptExecutionContext* context = impl()->scriptExecutionContext(); local
52 // Make sure that script execution context is valid.
53 if (!context) {
58 // Permission request is only valid from page context.
59 if (context->isWorkerContext())
65 PassRefPtr<JSCustomVoidCallback> callback = JSCustomVoidCallback::create(exec->argument(0).getObject(), toJSDOMGlobalObject(static_cast<Document*>(context), exec));
JSEventSourceCustom.cpp 57 ScriptExecutionContext* context = jsConstructor->scriptExecutionContext(); local
58 if (!context)
62 RefPtr<EventSource> eventSource = EventSource::create(ustringToString(url), context, ec);
JSMessageChannelCustom.cpp 50 ScriptExecutionContext* context = jsConstructor->scriptExecutionContext(); local
51 if (!context)
54 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), MessageChannel::create(context))));
JSWebSocketCustom.cpp 50 ScriptExecutionContext* context = jsConstructor->scriptExecutionContext(); local
51 if (!context)
60 KURL url = context->completeURL(urlString);
61 RefPtr<WebSocket> webSocket = WebSocket::create(context);
  /external/webkit/Source/WebCore/css/
MediaQueryListListener.cpp 41 v8::Handle<v8::Context> context = state->context(); local
42 if (context.IsEmpty())
44 v8::Context::Scope scope(context);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkcontext_p.h 34 RefPtr<WebKit::WebContext> context; member in class:QWKContextPrivate
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextPlatformPrivate.h 46 PlatformContextSkia* context() { return m_context; } function in class:WebCore::GraphicsContextPlatformPrivate
  /external/webkit/Tools/MiniBrowser/qt/
main.cpp 43 QWKContext* context = new QWKContext; local
44 BrowserWindow* window = new BrowserWindow(context, &app.m_windowOptions);
61 QWKContext* context = new QWKContext; local
62 BrowserWindow* window = new BrowserWindow(context, &app.m_windowOptions);
64 context->setParent(window);
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
InterpretedMacro.java 57 public void render(RenderingContext context) throws IOException {
58 assert context == owningContext : "Cannot render macro defined in another context";
59 context.pushExecutionContext(this);
60 boolean doRuntimeAutoEscaping = !(context.isRuntimeAutoEscaping());
62 context.startRuntimeAutoEscaping();
66 context.stopRuntimeAutoEscaping();
68 context.popExecutionContext();
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.h 19 #include "libGLESv2/Context.h"
25 Context *context; member in struct:gl::Current
29 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface);
31 Context *getContext();
  /external/webkit/Source/WebCore/bindings/v8/
MainThreadDOMData.cpp 56 V8IsolatedContext* context = V8IsolatedContext::getEntered(); local
57 if (UNLIKELY(context != 0))
58 return *context->world()->domDataStore();
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PlatformPathCairo.h 35 cairo_t* context() { return m_cr.get(); } function in class:WebCore::CairoPath
  /external/webkit/Source/WebKit/chromium/src/painting/
GraphicsContextBuilder.h 54 WebCore::GraphicsContext& context() { return m_graphicsContext; } function in class:WebKit::GraphicsContextBuilder
71 WebCore::GraphicsContext& context() { return m_graphicsContext; }
  /external/webkit/Source/WebKit2/Shared/qt/
ShareableBitmapQt.cpp 45 GraphicsContext* context = new GraphicsContext(new QPainter(image)); local
46 context->takeOwnershipOfPlatformContext();
47 return context;
50 void ShareableBitmap::paint(GraphicsContext& context, const IntPoint& dstPoint, const IntRect& srcRect)
53 QPainter* painter = context.platformContext();
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
AboutBlankLoad.cpp 46 WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate()); local
47 PlatformWebView webView(context.get());
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalReceiver.java 21 import android.content.Context;
34 public void onReceive(Context context, Intent intent) {
39 context.registerReceiver(this, new IntentFilter("foo.bar"));
40 context.unregisterReceiver(this);
55 context.bindService(new Intent(context, LocalService.class), sc, 0);
56 context.unbindService(sc);
64 context.sendOrderedBroadcast(newIntent, null);
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
ProgressDialogBuilder.java 23 import android.content.Context;
36 Context context = view.getContext(); local
38 progressDialog.setMessage(context.getString(R.string.loading));
SearchViewModifier.java 21 import android.content.Context;
39 Context context = view.getContext(); local
43 searchView.setQueryHint(context.getString(R.string.searchview_query_hint));
47 searchView.setQuery(context.getString(R.string.searchview_query), false);
  /external/apache-http/src/org/apache/http/client/protocol/
ClientContextConfigurer.java 44 private final HttpContext context; field in class:ClientContextConfigurer
46 public ClientContextConfigurer (final HttpContext context) {
47 if (context == null)
48 throw new IllegalArgumentException("HTTP context may not be null");
49 this.context = context;
53 this.context.setAttribute(COOKIESPEC_REGISTRY, registry);
57 this.context.setAttribute(AUTHSCHEME_REGISTRY, registry);
61 this.context.setAttribute(COOKIE_STORE, store);
65 this.context.setAttribute(CREDS_PROVIDER, provider)
    [all...]

Completed in 1040 milliseconds

1 2 3 4 5 6 7 8 91011>>