HomeSort by relevance Sort by last modified time
    Searched refs:__block (Results 1 - 25 of 32) sorted by null

1 2

  /external/clang/test/CodeGen/
blocks-aligned-byref-variable.c 6 __block ai a = 10;
14 __block double a = 10;
blocks-seq.c 15 __block int i;
exceptions.c 11 __block int x = 10;
blocks-1.c 13 __block int a;
24 __block int a;
38 __block int k;
39 __block int (^j)(int);
53 __block struct { int i; } i;
58 __block int i;
65 __block int i;
blocks.c 26 __block int i;
  /external/clang/test/CodeGenCXX/
block-destruct.cpp 6 __block A a;
block-byref-cxx-objc.cpp 13 __block A BYREF_VAR;
blocks.cpp 74 __block A a;
75 __block B b;
reference-in-blocks.cpp 27 __block A &tlc = *this;
instantiate-blocks.cpp 21 __block T1 byref_block_arg;
  /external/clang/test/Parser/
block-block-storageclass.c 6 __block int X = 1234;
7 __block const char * message = "HELLO";
  /external/clang/test/Sema/
block-storageclass.c 7 __block int X = 1234;
8 __block const char * message = "HELLO";
block-misc.c 150 __block int test16i; // expected-error {{__block attribute not allowed, only allowed on local variables}}
152 void test16(__block int i) { // expected-error {{__block attribute not allowed, only allowed on local variables}}
154 extern __block double extern_var; // expected-error {{__block attribute not allowed, only allowed on local variables}}
155 static __block char * pch; // expected-error {{__block attribute not allowed, only allowed on local variables}}
156 __block int a[size]; // expected-error {{__block attribute not allowed on declaration with a variably modified type}
    [all...]
block-return.c 91 __block int i;
122 __block int j;
126 __block const int k;
block-literal.c 43 takeblock(^{ x = 4; }); // expected-error {{variable is not assignable (missing __block type specifier)}}
44 __block y = 7; // expected-warning {{type specifier missing, defaults to 'int'}}
uninit-variables.c 216 __block int x; // no-warning
238 __block int y = 0;
343 __block int a;
392 __block int x;
  /external/clang/test/Analysis/
stack-block-returned.cpp 6 __block int i;
dead-stores.c 420 __block int x = (y > 2); // no-warning
429 __block int x = (y > 2); // no-warning
437 __block int x = (y > 2); // no-warning
448 __block int x = (y > 2);
449 __block int z = 0;
457 // stores for variables that are just marked '__block' is overly conservative.
460 __block int x = (y > 2);
461 __block int z = 0;
469 __block int y = 0;
  /external/clang/test/Rewriter/
rewrite-captured-nested-bvar.c 10 __block char BYREF_VAR_CHECK = 'a';
11 __block char d = 'd';
14 __block char e = 'e';
  /external/clang/test/Index/
blocks.c 8 __block i = 0;
load-exprs.c 11 __block int y = x;
  /external/clang/test/SemaCXX/
instantiate-blocks.cpp 7 __block T1 byref_block_arg;
11 block_arg = arg; // expected-error {{variable is not assignable (missing __block type specifier)}}
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
crypt.h 41 extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
68 extern void encrypt_r (char *__block, int __edflag,
  /external/clang/test/PCH/
blocks.h 12 __block int scale = s;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
mt_allocator.h 342 _M_adjust_freelist(const _Bin_record& __bin, _Block_record* __block,
347 __block->_M_thread_id = __thread_id;
705 _Block_record* __block = __bin._M_first[__thread_id]; local
706 __bin._M_first[__thread_id] = __block->_M_next;
708 __pool._M_adjust_freelist(__bin, __block, __thread_id);
709 __c = reinterpret_cast<char*>(__block) + __pool._M_get_align();

Completed in 541 milliseconds

1 2