Searched defs:context (Results 1 - 25 of 2681) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_base.cc13 content::BrowserContext* context) {
15 static_cast<Profile*>(context));
12 FromBrowserContext( content::BrowserContext* context) argument
/external/llvm/test/Bindings/Ocaml/
H A Dext_exc.ml5 let context = Llvm.global_context () var
10 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
/external/chromium_org/chrome/browser/profiles/
H A Dincognito_helpers.cc12 content::BrowserContext* context) {
13 return static_cast<Profile*>(context)->GetOriginalProfile();
17 content::BrowserContext* context) {
18 return context;
11 GetBrowserContextRedirectedInIncognito( content::BrowserContext* context) argument
16 GetBrowserContextOwnInstanceInIncognito( content::BrowserContext* context) argument
/external/chromium_org/content/public/browser/
H A Dweb_contents.cc11 WebContents::CreateParams::CreateParams(BrowserContext* context) argument
12 : browser_context(context),
17 context(NULL) {}
20 BrowserContext* context, SiteInstance* site)
21 : browser_context(context),
26 context(NULL) {}
19 CreateParams( BrowserContext* context, SiteInstance* site) argument
/external/chromium_org/gpu/command_buffer/service/
H A Dasync_pixel_transfer_manager_linux.cc18 gfx::GLContext* context) {
22 DCHECK(context);
24 new AsyncPixelTransferManagerShareGroup(context));
17 Create( gfx::GLContext* context) argument
H A Dasync_pixel_transfer_manager_mac.cc15 gfx::GLContext* context) {
14 Create( gfx::GLContext* context) argument
H A Dasync_pixel_transfer_manager_win.cc15 gfx::GLContext* context) {
14 Create( gfx::GLContext* context) argument
/external/clang/test/Sema/
H A Dfreemain.c7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
/external/libselinux/src/
H A Dfsetfilecon.c10 int fsetfilecon(int fd, const security_context_t context) argument
12 return fsetxattr(fd, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const security_context_t context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const security_context_t context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
/external/chromium_org/cc/output/
H A Dshader_unittest.cc17 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/
H A Dchromoting_host_context_unittest.cc13 // 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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMessageChannel.cpp35 MessageChannel::MessageChannel(ScriptExecutionContext* context) argument
36 : m_port1(MessagePort::create(*context))
37 , m_port2(MessagePort::create(*context))
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLExtension.cpp32 WebGLExtension::WebGLExtension(WebGLRenderingContext* context) argument
33 : m_context(context)
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDOMSecurityPolicy.h42 static PassRefPtr<DOMSecurityPolicy> create(ScriptExecutionContext* context) argument
44 return adoptRef(new DOMSecurityPolicy(context));
/external/chromium_org/third_party/WebKit/Source/modules/performance/
H A DWorkerPerformance.h45 static PassRefPtr<WorkerPerformance> create(ScriptExecutionContext* context) { return adoptRef(new WorkerPerformance(context)); } argument
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioSourceNode.h38 AudioSourceNode(AudioContext* context, float sampleRate) argument
39 : AudioNode(context, sampleRate)
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Dpreemption.c35 void vlVdpPreemptionCallback(VdpDevice device, void *context) argument
45 void *context)
43 vlVdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, void *context) argument
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Dpreemption.c35 void vlVdpPreemptionCallback(VdpDevice device, void *context) argument
45 void *context)
43 vlVdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, void *context) argument
/external/ppp/pppd/plugins/radius/
H A Dmd5.c8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
/external/apache-http/src/org/apache/http/
H A DConnectionReuseStrategy.java42 * <!-- empty lines above to avoid 'svn diff' context problems -->
56 * One can use the HTTP context to retrieve additional objects that
67 * @param context the context in which the connection is being
73 boolean keepAlive(HttpResponse response, HttpContext context); argument
H A DHttpRequestInterceptor.java47 * <!-- empty lines above to avoid 'svn diff' context problems -->
61 * @param context the context for the request
66 void process(HttpRequest request, HttpContext context) argument
H A DHttpResponseInterceptor.java46 * <!-- empty lines above to avoid 'svn diff' context problems -->
60 * @param context the context for the request
65 void process(HttpResponse response, HttpContext context) argument
/external/apache-http/src/org/apache/http/client/
H A DUserTokenHandler.java37 * A handler for determining if the given execution context is user specific
39 * identify the current user if the context is user specific or to be
40 * <code>null</code> if the context does not contain any resources or details
54 * identify the current user if the context is user specific or to be
57 * @param context the execution context
60 * <code>null</null> if the context is not user specific.
62 Object getUserToken(HttpContext context); argument

Completed in 623 milliseconds

1234567891011>>