HomeSort by relevance Sort by last modified time
    Searched defs:local (Results 51 - 75 of 478) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Index/
comment-c-decls.c 30 * \brief local variable;
43 * \brief a local variable
45 int local = 10; local
46 return local;
49 // CHECK: <Declaration>int local = 10</Declaration>
format-comment-cdecls.c 25 * \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/
uar_signals.cc 17 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/
stack-use-after-return.cc 41 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
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalEnd.java 25 * 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) {
50 if (local == null) {
51 throw new NullPointerException("local == null");
54 this.local = local
    [all...]
LocalStart.java 24 * Pseudo-instruction which is used to introduce a new local variable. That
31 * {@code non-null;} register spec representing the local variable introduced
34 private final RegisterSpec local; field in class:LocalStart
37 * Returns the local variable listing string for a single register spec.
52 * @param local {@code non-null;} register spec representing the local
55 public LocalStart(SourcePosition position, RegisterSpec local) {
58 if (local == null) {
59 throw new NullPointerException("local == null");
62 this.local = local
    [all...]
  /external/skia/gm/
colortype.cpp 20 SkMatrix local; local
21 local.setRotate(180);
23 SK_ARRAY_COUNT(colors), 0, &local);
  /external/skia/src/animator/
SkDrawSaveLayer.cpp 48 SkPaint local = SkPaint(*maker.fPaint); local
49 maker.fPaint = &local;
  /external/srtp/test/
roc_driver.c 86 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 /* now update local xtd_seq_num_t as necessary */
143 index_advance(&local, delta);
152 /* reset local value to correct value *
    [all...]
  /external/valgrind/main/memcheck/tests/
dw4.c 46 struct s1 local; local
52 croak( &local.i );
varinfo1.c 46 int local; local
56 croak( &local );
  /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 87 StringBuffer local = new StringBuffer(40); // manipulate local
95 local.append(inwd, 1, inwd.length - 1);
97 local.append(inwd);
102 local.append(inwd, 1, inwd.length - 1);
104 local.append(inwd);
109 local.append(inwd, 1, inwd.length - 1);
113 local.append(inwd, 1, inwd.length - 1);
114 local.setCharAt(0, 'W'); // WH -> W
116 local.append(inwd);
121 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 169 * :: for IPv6) to override a specific local address in a hierarchy.
173 * @return the local address set in the argument parameters, or
180 InetAddress local = (InetAddress) local
183 return local;
192 * @param local the value to set, may be <code>null</code>
195 InetAddress local) {
199 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/chromium_org/third_party/skia/src/animator/
SkDisplayMovie.cpp 80 SkPaint local = SkPaint(*maker.fPaint); local
81 bool result = fMovie.draw(maker.fCanvas, &local,
  /external/chromium_org/third_party/zlib/
adler32.c 10 #define local static macro
12 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2);
131 local uLong adler32_combine_(adler1, adler2, len2)
  /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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_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_(
  /external/qemu/distrib/zlib-1.2.8/
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)

Completed in 982 milliseconds

1 23 4 5 6 7 8 91011>>