HomeSort by relevance Sort by last modified time
    Searched defs:context (Results 1 - 25 of 1921) 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/chromium_org/third_party/WebKit/Source/bindings/v8/
V8EventListenerList.cpp 42 v8::Handle<v8::Context> context = v8::Context::GetCurrent(); local
43 if (context.IsEmpty())
47 if (V8DOMWrapper::isWrapperOfType(toInnerGlobalObject(context), &V8Window::info))
CustomElementWrapper.cpp 95 // to never pass an empty creation context.
96 v8::Handle<v8::Context> context = creationContext.IsEmpty() ? isolate->GetCurrentContext() : creationContext->CreationContext(); local
98 if (!element->isUpgradedCustomElement() || DOMWrapperWorld::isolatedWorld(context))
101 V8PerContextData* perContextData = V8PerContextData::from(context);
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryListListener.cpp 33 v8::Handle<v8::Context> context = state->context(); local
34 if (context.IsEmpty())
37 v8::Context::Scope scope(context);
38 callback.appendArgument(toV8(query, v8::Handle<v8::Object>(), context->GetIsolate()));
  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/skia/src/core/
SkImageFilterUtils.cpp 34 GrContext* context = ((GrTexture *) src.getTexture())->getContext(); local
35 GrTexture* resultTex = GrLockAndRefCachedBitmapTexture(context,
  /external/icu4c/i18n/
regextxt.cpp 19 struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct; local
21 if (offset == context->lastOffset + 1) {
22 c = UTEXT_NEXT32(context->text);
23 context->lastOffset++;
24 } else if (offset == context->lastOffset) {
25 c = UTEXT_PREVIOUS32(context->text);
26 UTEXT_NEXT32(context->text);
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
29 c = UTEXT_NEXT32(context->text)
    [all...]
  /external/skia/src/core/
SkImageFilterUtils.cpp 34 GrContext* context = ((GrTexture *) src.getTexture())->getContext(); local
35 GrTexture* resultTex = GrLockAndRefCachedBitmapTexture(context,
  /external/chromium_org/cc/output/
shader_unittest.cc 17 FakeWebGraphicsContext3D context; local
28 &context, &threshold_cache, threshold_min, closePoint));
30 &context, &threshold_cache, threshold_min, smallSize));
32 &context, &threshold_cache, threshold_min, farPoint));
34 &context, &threshold_cache, threshold_min, bigSize));
38 &context, &threshold_cache, threshold_min, closePoint));
40 &context, &threshold_cache, threshold_min, smallSize));
42 &context, &threshold_cache, threshold_min, farPoint));
44 &context, &threshold_cache, threshold_min, bigSize));
  /external/chromium_org/remoting/host/
chromoting_host_context_unittest.cc 13 // A simple test that starts and stop the context. This tests the context
19 scoped_ptr<ChromotingHostContext> context = local
23 EXPECT_TRUE(context);
24 if (!context)
26 EXPECT_TRUE(context->audio_task_runner().get());
27 EXPECT_TRUE(context->video_capture_task_runner().get());
28 EXPECT_TRUE(context->video_encode_task_runner().get());
29 EXPECT_TRUE(context->file_task_runner().get());
30 EXPECT_TRUE(context->input_task_runner().get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8MessageChannelCustom.cpp 49 ScriptExecutionContext* context = getScriptExecutionContext(); local
51 RefPtr<MessageChannel> obj = MessageChannel::create(context);
V8MutationObserverCustom.cpp 56 ScriptExecutionContext* context = getScriptExecutionContext(); local
59 RefPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), context, wrapper, args.GetIsolate());
  /external/chromium_org/chrome/browser/usb/
usb_context.h 24 PlatformUsbContext context() const { return context_; } function in class:UsbContext
  /external/chromium_org/chrome/test/chromedriver/chrome/
frame_tracker_unittest.cc 21 const char context[] = "{\"id\":100,\"frameId\":\"f\"}"; local
23 params.Set("context", base::JSONReader::Read(context));
49 const char context[] = "{\"id\":1,\"frameId\":\"f\"}"; local
51 params.Set("context", base::JSONReader::Read(context));
59 params.SetInteger("context.id", 2);
  /external/chromium_org/content/browser/renderer_host/
compositing_iosurface_layer_mac.h 26 scoped_refptr<content::CompositingIOSurfaceContext> context; variable
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextObject.h 42 WebGLRenderingContext* context() const { return m_context; } function in class:WebCore::WebGLContextObject
44 virtual bool validate(const WebGLContextGroup*, const WebGLRenderingContext* context) const
46 return context == m_context;
  /external/chromium_org/third_party/WebKit/Source/modules/performance/
WorkerPerformance.cpp 40 WorkerPerformance::WorkerPerformance(ScriptExecutionContext* context)
41 : ContextLifecycleObserver(context)
51 ScriptExecutionContext* context = scriptExecutionContext(); local
52 ASSERT(context);
53 WorkerGlobalScope* workerGlobalScope = toWorkerGlobalScope(context);
  /external/chromium_org/v8/test/cctest/
test-global-object.cc 39 LocalContext context; local
44 context->Global()->GetPrototype().As<v8::Object>();
  /external/chromium_org/v8/tools/testrunner/objects/
workpacket.py 29 from . import context namespace
33 def __init__(self, peer=None, context=None, tests=None, binaries=None,
36 self.context = context
70 "context": self.context.Pack(),
84 ctx = context.Context.Unpack(packed["context"])
88 return WorkPacket(context=ctx, tests=tests, binaries=binaries
    [all...]
  /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();
  /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);
  /frameworks/compile/libbcc/lib/Renderscript/
RSScript.cpp 26 // Using the same context with the source in pScript.
27 BCCContext &context = pScript.getSource().getContext(); local
49 Source *libclcore_source = Source::CreateFromFile(context, core_lib);

Completed in 1387 milliseconds

1 2 3 4 5 6 7 8 91011>>