Searched defs:context (Results 76 - 100 of 1529) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/protocol/
H A DRequestDate.java59 public void process(final HttpRequest request, final HttpContext context) argument
H A DRequestExpectContinue.java60 public void process(final HttpRequest request, final HttpContext context) argument
H A DRequestTargetHost.java62 public void process(final HttpRequest request, final HttpContext context) argument
67 if (context == null) {
68 throw new IllegalArgumentException("HTTP context may not be null");
71 HttpHost targethost = (HttpHost) context
74 HttpConnection conn = (HttpConnection) context
77 // Populate the context with a default HTTP host based on the
H A DRequestUserAgent.java56 public void process(final HttpRequest request, final HttpContext context) argument
H A DResponseConnControl.java62 public void process(final HttpResponse response, final HttpContext context) argument
67 if (context == null) {
68 throw new IllegalArgumentException("HTTP context may not be null");
95 context.getAttribute(ExecutionContext.HTTP_REQUEST);
H A DResponseContent.java61 public void process(final HttpResponse response, final HttpContext context) argument
H A DResponseDate.java59 public void process(final HttpResponse response, final HttpContext context) argument
H A DResponseServer.java57 public void process(final HttpResponse response, final HttpContext context) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java48 * By the nature of the stateless traversal, the context node can not be
55 * @param context The context node of this traversal. This is the point
59 public int first(int context) argument
61 return next(context, context);
65 * By the nature of the stateless traversal, the context node can not be
72 * @param context The context node of this traversal. This is the point
78 public int first(int context, in argument
97 next(int context, int current) argument
115 next(int context, int current, int extendedTypeID) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DPrefixResolver.java35 * the PrefixResolver holds its own namespace context, or is a namespace
36 * context itself.
41 * is undeclared in this context.
46 * Given a namespace, get the corresponding prefix, based on the context node.
49 * @param context The node context from which to look up the URI.
52 * is undeclared in this context.
54 String getNamespaceForPrefix(String prefix, org.w3c.dom.Node context); argument
67 * may not accurately reflect that context information.
/external/chromium/android/autofill/
H A Dandroid_url_request_context_getter.h37 AndroidURLRequestContextGetter(net::URLRequestContext* context, base::Thread* ioThread) argument
38 : context_(context)
/external/chromium/android/content/browser/tab_contents/
H A Dtab_contents.h31 void SetProfileRequestContext(net::URLRequestContextGetter* context) { static_cast<ProfileImplAndroid*>(profile_.get())->SetRequestContext(context); } argument
/external/chromium/net/socket_stream/
H A Dsocket_stream_job.h37 const URLRequestContext& context);
47 URLRequestContext* context() const { function in class:net::SocketStreamJob
48 return socket_->context();
50 void set_context(URLRequestContext* context) { argument
51 socket_->set_context(context);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DMain.java36 public Object start(IApplicationContext context) throws Exception { argument
39 String[] args = (String[]) context.getArguments().get("application.args");
/external/icu4c/common/
H A Dmutex.cpp20 void *SimpleSingleton::getInstance(InstantiatorFn *instantiator, const void *context, argument
39 instance=instantiator(context, errorCode);
70 void *TriStateSingleton::getInstance(InstantiatorFn *instantiator, const void *context, argument
100 instance=instantiator(context, errorCode);
/external/libselinux/src/
H A Dgetpeercon.c14 int getpeercon(int fd, security_context_t * context) argument
42 *context = buf;
/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/
H A DContext.c52 Perl_croak(aTHX_ "Usage: %s(%s)", "Perf::Trace::Context::common_pc", "context");
55 struct scripting_context * context = INT2PTR(struct scripting_context *,SvIV(ST(0))); local
59 RETVAL = common_pc(context);
75 Perl_croak(aTHX_ "Usage: %s(%s)", "Perf::Trace::Context::common_flags", "context");
78 struct scripting_context * context = INT2PTR(struct scripting_context *,SvIV(ST(0))); local
82 RETVAL = common_flags(context);
98 Perl_croak(aTHX_ "Usage: %s(%s)", "Perf::Trace::Context::common_lock_depth", "context");
101 struct scripting_context * context = INT2PTR(struct scripting_context *,SvIV(ST(0))); local
105 RETVAL = common_lock_depth(context);
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/
H A DContext.c31 PyObject *context; local
34 if (!PyArg_ParseTuple(args, "O", &context))
37 scripting_context = PyCObject_AsVoidPtr(context);
47 PyObject *context; local
50 if (!PyArg_ParseTuple(args, "O", &context))
53 scripting_context = PyCObject_AsVoidPtr(context);
63 PyObject *context; local
66 if (!PyArg_ParseTuple(args, "O", &context))
69 scripting_context = PyCObject_AsVoidPtr(context);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dcodegen.ml9 let context = global_context () var
10 let the_module = create_module context "my cool jit"
11 let builder = builder context
13 let double_type = double_type context
85 let bb = append_block context "entry" the_function in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dcodegen.ml9 let context = global_context () var
10 let the_module = create_module context "my cool jit"
11 let builder = builder context
13 let double_type = double_type context
85 let bb = append_block context "entry" the_function in
/external/llvm/test/Bindings/Ocaml/
H A Danalysis.ml12 let context = global_context () var
21 let fty = function_type (void_type context) [| |] in
22 let m = create_module context "valid_m" in
24 let at_entry = builder_at_end context (entry_block fn) in
H A Dscalar_opts.ml14 let context = global_context () var
15 let void_type = Llvm.void_type context
29 let m = create_module context filename
39 ignore (build_ret_void (builder_at_end context (entry_block fn)));
H A Dtarget.ml14 let context = global_context () var
15 let i32_type = Llvm.i32_type context
16 let i64_type = Llvm.i64_type context
30 let m = create_module context filename
37 let sty = struct_type context [| i32_type; i64_type |] in
/external/replicaisland/src/com/replica/replicaisland/
H A DMultiTouchFilter.java34 public boolean supportsMultitouch(Context context) { argument
36 PackageManager packageManager = context.getPackageManager();
H A DTouchFilter.java26 public boolean supportsMultitouch(Context context) { argument

Completed in 591 milliseconds

1234567891011>>