HomeSort by relevance Sort by last modified time
    Searched defs:local (Results 101 - 125 of 994) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webrtc/webrtc/libjingle/xmllite/
qname.h 29 const char* const local; member in struct:buzz::StaticQName
40 QName(const std::string& ns, const std::string& local);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_threading_local.py 1 """Thread-local objects.
3 (Note that this module provides a Python version of the threading.local
5 faster one available. You should always import the `local` class from
8 Thread-local objects support the management of thread-local data.
9 If you have data that you want to be local to a thread, simply create
10 a thread-local object and use its attributes:
12 >>> mydata = local()
17 You can also access the local-object's dictionary:
26 What's important about thread-local objects is that their data ar
186 class local(_localbase): class in inherits:_localbase
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_threading_local.py 1 """Thread-local objects.
3 (Note that this module provides a Python version of the threading.local
5 faster one available. You should always import the `local` class from
8 Thread-local objects support the management of thread-local data.
9 If you have data that you want to be local to a thread, simply create
10 a thread-local object and use its attributes:
12 >>> mydata = local()
17 You can also access the local-object's dictionary:
26 What's important about thread-local objects is that their data ar
186 class local(_localbase): class in inherits:_localbase
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 1 """Thread-local objects.
3 (Note that this module provides a Python version of the threading.local
5 faster one available. You should always import the `local` class from
8 Thread-local objects support the management of thread-local data.
9 If you have data that you want to be local to a thread, simply create
10 a thread-local object and use its attributes:
12 >>> mydata = local()
17 You can also access the local-object's dictionary:
26 What's important about thread-local objects is that their data ar
186 class local(_localbase): class in inherits:_localbase
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py 1 """Thread-local objects.
3 (Note that this module provides a Python version of the threading.local
5 faster one available. You should always import the `local` class from
8 Thread-local objects support the management of thread-local data.
9 If you have data that you want to be local to a thread, simply create
10 a thread-local object and use its attributes:
12 >>> mydata = local()
17 You can also access the local-object's dictionary:
26 What's important about thread-local objects is that their data ar
186 class local(_localbase): class in inherits:_localbase
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
Metaphone.java 92 StringBuffer local = new StringBuffer(40); // manipulate local
100 local.append(inwd, 1, inwd.length - 1);
102 local.append(inwd);
107 local.append(inwd, 1, inwd.length - 1);
109 local.append(inwd);
114 local.append(inwd, 1, inwd.length - 1);
118 local.append(inwd, 1, inwd.length - 1);
119 local.setCharAt(0, 'W'); // WH -> W
121 local.append(inwd);
126 local.append(inwd)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalItem.java 22 * A local variable item: either a name or a signature or both.
25 /** {@code null-ok;} local variable name */
28 /** {@code null-ok;} local variable signature */
36 * @param name {@code null-ok;} local variable name
37 * @param signature {@code null-ok;} local variable signature
51 * @param name {@code null-ok;} local variable name
52 * @param signature {@code null-ok;} local variable signature
66 LocalItem local = (LocalItem) other; local
68 return 0 == compareTo(local);
91 public int compareTo(LocalItem local) {
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
LocalItem.java 22 * A local variable item: either a name or a signature or both.
25 /** {@code null-ok;} local variable name */
28 /** {@code null-ok;} local variable signature */
36 * @param name {@code null-ok;} local variable name
37 * @param signature {@code null-ok;} local variable signature
51 * @param name {@code null-ok;} local variable name
52 * @param signature {@code null-ok;} local variable signature
66 LocalItem local = (LocalItem) other; local
68 return 0 == compareTo(local);
91 public int compareTo(LocalItem local) {
    [all...]
  /external/apache-http/src/org/apache/http/conn/params/
ConnRouteParams.java 174 * :: for IPv6) to override a specific local address in a hierarchy.
178 * @return the local address set in the argument parameters, or
185 InetAddress local = (InetAddress) local
188 return local;
197 * @param local the value to set, may be <code>null</code>
200 InetAddress local) {
204 params.setParameter(LOCAL_ADDRESS, local);
  /external/bison/
cfg.mk 43 local-checks-to-skip = \
50 # The local directory containing the checked-out copy of gnulib used in
  /external/compiler-rt/lib/msan/
msan_thread.cc 30 int local; local
31 CHECK(AddrIsInStack((uptr)&local));
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
LocalItem.java 22 * A local variable item: either a name or a signature or both.
25 /** {@code null-ok;} local variable name */
28 /** {@code null-ok;} local variable signature */
36 * @param name {@code null-ok;} local variable name
37 * @param signature {@code null-ok;} local variable signature
51 * @param name {@code null-ok;} local variable name
52 * @param signature {@code null-ok;} local variable signature
66 LocalItem local = (LocalItem) other; local
68 return 0 == compareTo(local);
91 public int compareTo(LocalItem local) {
    [all...]
  /external/libunwind/tests/
ia64-test-setjmp.c 65 int local = 0; local
69 &local, uc->uc_mcontext.sc_ar_bsp);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
FrameNode.java 46 * The stack map frame types must describe the values of the local variables and
64 * The types of the local variables of this stack map frame. Elements of
69 public List local; field in class:FrameNode
91 * @param nLocal number of local variables of this stack map frame.
92 * @param local the types of the local variables of this stack map frame.
105 final Object[] local,
114 this.local = asList(nLocal, local);
118 this.local = asList(nLocal, local);
    [all...]
  /external/opencv3/3rdparty/zlib/
adler32.c 10 #define local static macro
12 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
136 local uLong adler32_combine_(adler1, adler2, len2)
  /external/pdfium/third_party/zlib_v128/
adler32.c 10 #define local static macro
12 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
136 local uLong adler32_combine_(
  /external/skia/src/animator/
SkDisplayMovie.cpp 80 SkPaint local = SkPaint(*maker.fPaint); local
81 bool result = fMovie.draw(maker.fCanvas, &local,
  /external/valgrind/helgrind/tests/
tls_threads.c 9 /* We should have no error on local and global
10 as these are both thread local variables. */
11 static __thread int local; variable
19 the same thread local storage. This is however really bad sharing
28 local = local + 1; // no error is expected
  /external/zlib/src/
adler32.c 10 #define local static macro
12 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
136 local uLong adler32_combine_(adler1, adler2, len2)
  /external/zlib/src/examples/
fitblk.c 59 #define local static macro
62 local void quit(char *why)
73 local int partcompress(FILE *in, z_streamp def)
96 local int recompress(z_streamp inf, z_streamp def)
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 147 final InetAddress local = local
169 route = new HttpRoute(target, local, secure);
171 route = new HttpRoute(target, local, proxy, secure);
  /external/clang/test/CXX/class.access/class.access.dcl/
p1.cpp 57 typedef struct A::hiding local; typedef in typeref:struct:test1::B::hiding
58 struct hiding _ = local();
100 typedef struct A::hiding local; typedef in typeref:struct:test2::B::hiding
101 struct hiding _ = local();
143 typedef struct A<T>::hiding local;
144 struct hiding _ = local();
148 typedef struct A<T>::hiding local;
149 union hiding _ = local();
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p4.cpp 54 typedef struct A::hiding local; typedef in typeref:struct:test1::B::hiding
55 struct hiding _ = local();
97 typedef struct A::hiding local; typedef in typeref:struct:test2::B::hiding
98 struct hiding _ = local();
140 typedef struct A<T>::hiding local;
141 struct hiding _ = local();
145 typedef struct A<T>::hiding local;
146 union hiding _ = local();
  /external/clang/test/CodeGenCXX/
template-linkage.cpp 59 struct local {}; struct
62 mptr method = &Outer::Get<local>;
  /external/clang/test/Modules/
module-private.cpp 82 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}} local
84 __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}}

Completed in 733 milliseconds

1 2 3 45 6 7 8 91011>>