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

1234567891011>>

/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 ()))
H A Dbitreader.ml10 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
/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,
H A Dfgetfilecon.c10 int fgetfilecon(int fd, security_context_t * context) argument
48 *context = buf;
H A Dgetfilecon.c10 int getfilecon(const char *path, security_context_t * context) argument
48 *context = buf;
H A Dlgetfilecon.c10 int lgetfilecon(const char *path, security_context_t * context) argument
48 *context = buf;
/external/webkit/Source/WebCore/bindings/js/
H A DJSDesktopNotificationsCustom.cpp50 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));
H A DJSEventSourceCustom.cpp57 ScriptExecutionContext* context = jsConstructor->scriptExecutionContext(); local
58 if (!context)
62 RefPtr<EventSource> eventSource = EventSource::create(ustringToString(url), context, ec);
/external/webkit/Source/WebCore/webaudio/
H A DHighPass2FilterNode.cpp33 HighPass2FilterNode::HighPass2FilterNode(AudioContext* context, double sampleRate) argument
34 : AudioBasicProcessorNode(context, sampleRate)
H A DLowPass2FilterNode.cpp33 LowPass2FilterNode::LowPass2FilterNode(AudioContext* context, double sampleRate) argument
34 : AudioBasicProcessorNode(context, sampleRate)
H A DAudioSourceNode.h38 AudioSourceNode(AudioContext* context, double sampleRate) argument
39 : AudioNode(context, sampleRate)
H A DDelayNode.cpp33 DelayNode::DelayNode(AudioContext* context, double sampleRate) argument
34 : AudioBasicProcessorNode(context, sampleRate)
/external/webkit/Source/WebKit/chromium/src/
H A DChromiumThreading.cpp41 void ChromiumThreading::callOnMainThread(void (*func)(void*), void* context) argument
43 WebKit::webKitClient()->callOnMainThread(func, context);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkcontext_p.h34 RefPtr<WebKit::WebContext> context; member in class:QWKContextPrivate
/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/skia/src/gpu/
H A DGrGpuFactory.cpp17 GrGpu* GrGpu::Create(GrBackend backend, GrBackendContext context) { argument
23 glInterface = reinterpret_cast<const GrGLInterface*>(context);
/external/webkit/Source/WebCore/dom/
H A DMessageChannel.cpp35 MessageChannel::MessageChannel(ScriptExecutionContext* context) argument
36 : m_port1(MessagePort::create(*context))
37 , m_port2(MessagePort::create(*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
/external/icu4c/i18n/
H A Dregextxt.cpp19 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
42 uregex_ucstr_unescape_charAt(int32_t offset, void *context) argument
[all...]

Completed in 360 milliseconds

1234567891011>>