Searched defs:local (Results 26 - 50 of 335) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionOperator.java85 * @param local the local address to route from, or
94 InetAddress local,
92 openConnection(OperatedClientConnection conn, HttpHost target, InetAddress local, HttpContext context, HttpParams params) argument
/external/apache-http/src/org/apache/http/params/
H A DDefaultedHttpParams.java39 * present in the local one. The state of the local collection can be mutated,
53 private final HttpParams local; field in class:DefaultedHttpParams
56 public DefaultedHttpParams(final HttpParams local, final HttpParams defaults) { argument
58 if (local == null) {
61 this.local = local;
66 * Creates a copy of the local collection with the same default
69 HttpParams clone = this.local.copy();
74 * Retrieves the value of the parameter from the local collectio
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DDefaultedHttpContext.java37 * present in the local one. The state of the local context can be mutated,
51 private final HttpContext local; field in class:DefaultedHttpContext
54 public DefaultedHttpContext(final HttpContext local, final HttpContext defaults) { argument
56 if (local == null) {
59 this.local = local;
64 Object obj = this.local.getAttribute(id);
73 return this.local.removeAttribute(id);
77 this.local
[all...]
/external/chromium_org/testing/android/junit/java/src/org/chromium/testing/local/
H A DGtestFilter.java5 package org.chromium.testing.local;
H A DJunitTestMain.java5 package org.chromium.testing.local;
/external/chromium_org/testing/android/junit/javatests/src/org/chromium/testing/local/
H A DGtestFilterTest.java5 package org.chromium.testing.local;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCStatsReport.cpp52 RTCStatsReport* RTCStatsReport::local() function in class:blink::RTCStatsReport
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dqname.cc42 local_part_(const_value.local) {
45 QName::QName(const std::string& ns, const std::string& local) argument
47 local_part_(local) {
80 int result = local_part_.compare(other.local);
H A Dqname.h46 const char* const local; member in struct:buzz::StaticQName
57 QName(const std::string& ns, const std::string& local);
/external/chromium_org/third_party/libsrtp/srtp/test/
H A Droc_driver.c86 xtd_seq_num_t local, est, ref; local
93 index_init(&local);
99 delta = index_guess(&local, &est, (uint16_t) ref);
121 index_init(&local);
135 delta = index_guess(&local, &est, (uint16_t) ref);
137 printf("ref: %lld, local: %lld, est: %lld, ircvd: %d, delta: %d\n",
138 ref, local, est, ircvd, delta);
141 if (local + delta != est) {
142 printf(" *bad delta*: local %llu + delta %d != est %llu\n",
143 (unsigned long long)local, delt
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dcolortype.cpp20 SkMatrix local; local
21 local.setRotate(180);
23 SK_ARRAY_COUNT(colors), 0, &local);
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawSaveLayer.cpp48 SkPaint local = SkPaint(*maker.fPaint); local
49 maker.fPaint = &local;
/external/chromium_org/third_party/webrtc/libjingle/xmllite/
H A Dqname.cc25 local_part_(const_value.local) {
28 QName::QName(const std::string& ns, const std::string& local) argument
30 local_part_(local) {
63 int result = local_part_.compare(other.local);
H A Dqname.h29 const char* const local; member in struct:buzz::StaticQName
40 QName(const std::string& ns, const std::string& local);
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp10.cpp28 int local; // expected-note{{declared here}} local
33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
/external/clang/test/Index/
H A Dcomment-c-decls.c30 * \brief local variable;
43 * \brief a local variable
45 int local = 10; local
46 return local;
49 // CHECK: <Declaration>int local = 10</Declaration>
H A Dformat-comment-cdecls.c25 * \brief local variable;
38 * \brief a local variable
40 int local = 10; local
41 return local;
44 // CHECK: <Declaration>int local = 10</Declaration>
/external/compiler-rt/test/asan/TestCases/Linux/
H A Duar_signals.cc17 int local; local
18 g = &local;
20 // printf("s: %p\n", &local);
44 int local; local
45 g = &local;
46 // printf("r: %p\n", &local);
/external/compiler-rt/test/asan/TestCases/
H A Dstack-use-after-return.cc41 char local[kSize]; local
42 return Ident(local);
52 // CHECK: 'local' <== Memory access at offset {{16|32}} is inside this variable
56 // THREAD: 'local' <== Memory access at offset {{16|32}} is inside this variable
H A Dthrow_catch.cc15 int local; local
16 fprintf(stderr, "Throw: %p\n", &local);
22 int local; local
26 fprintf(stderr, "Catch: %p\n", &local);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalEnd.java25 * register to a named local variable. That is, an instance of this
31 * {@code non-null;} register spec representing the local variable ended
34 * is implicit in the ambient local variable state, but other code
37 private final RegisterSpec local; field in class:LocalEnd
44 * @param local {@code non-null;} register spec representing the local
47 public LocalEnd(SourcePosition position, RegisterSpec local) { argument
50 if (local == null) {
51 throw new NullPointerException("local == null");
54 this.local
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DLocalAndGlobalData.java20 * This is a special implementation of ChainedData to be used for holding the local and global Data
21 * objects (like local and global HDFs in Clearsilver). It prevents writes and modifications to the
22 * global Data object and applies them all to the local data object.
26 private final Data local; field in class:LocalAndGlobalData
29 * Creates a Data object that encapsulates both request-scoped local HDF and an application
33 * @param local the request-specific HDF data that takes priority.
37 public LocalAndGlobalData(Data local, Data global) { argument
38 this(local, global, false);
42 * Creates a Data object that encapsulates both request-scoped local HDF and an application
47 * @param local th
56 LocalAndGlobalData(Data local, Data global, boolean allowGlobalDataModification) argument
[all...]
/external/skia/gm/
H A Dcolortype.cpp20 SkMatrix local; local
21 local.setRotate(180);
23 SK_ARRAY_COUNT(colors), 0, &local);
/external/skia/src/animator/
H A DSkDrawSaveLayer.cpp48 SkPaint local = SkPaint(*maker.fPaint); local
49 maker.fPaint = &local;
/external/smack/src/org/xbill/DNS/
H A DTCPClient.java111 sendrecv(SocketAddress local, SocketAddress remote, byte [] data, long endTime) argument
116 if (local != null)
117 client.bind(local);

Completed in 5789 milliseconds

1234567891011>>