HomeSort by relevance Sort by last modified time
    Searched refs:Incomplete (Results 26 - 40 of 40) sorted by null

12

  /external/clang/test/Index/
print-type-size.cpp 83 namespace Incomplete {
84 // test that fields in incomplete named record do not crash
98 // test that fields in incomplete anonymous record do not crash
112 // incomplete not in root level, in named record
121 // incomplete not in root level, in anonymous record
137 //deep anonymous with deep level incomplete
154 //deep anonymous with first level incomplete
172 //deep anonymous with sub-first-level incomplete
198 // CHECK64: StructDecl=As:[[@LINE+1]]:8 [type=Incomplete::As] [typekind=Record]
202 // CHECK64: ClassDecl=A:[[@LINE+1]]:7 [type=Incomplete::A] [typekind=Record
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
syscall_unittest.cc 54 #warning Incomplete test case; need port for target platform
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 94 extern int incomplete[];
95 for (auto a : incomplete) // expected-error {{cannot use incomplete type 'int []' as a range}}
97 extern struct Incomplete also_incomplete[2]; // expected-note {{forward declaration}}
98 for (auto &a : also_incomplete) // expected-error {{cannot use incomplete type 'struct Incomplete [2]' as a range}}
179 for (auto a : *also_incomplete) { // expected-error {{cannot use incomplete type 'struct Incomplete' as a range}}
  /external/clang/test/CodeGen/
atomic-ops.c 198 int lock_free(struct Incomplete *incomplete) {
211 __atomic_is_lock_free(4, incomplete);
  /external/clang/test/SemaCXX/
overload-call.cpp 357 struct Incomplete;
359 void foo(Base *); // expected-note 2 {{cannot convert argument of incomplete type}}
360 void foo(Base &); // expected-note 2 {{cannot convert argument of incomplete type}}
362 void test(Incomplete *P) {
  /external/clang/test/Sema/
atomic-ops.c 48 struct Incomplete *incomplete; variable in typeref:struct:Incomplete
69 _Static_assert(__atomic_always_lock_free(1, incomplete), "");
70 _Static_assert(!__atomic_always_lock_free(2, incomplete), "");
71 _Static_assert(!__atomic_always_lock_free(4, incomplete), "");
  /external/chromium/testing/gmock/scripts/
gmock_doctor.py 221 clang_regex1 = (r'error: field has incomplete type '
228 clang_regex2 = (r'error: field has incomplete type '
256 r'\'sizeof\' to incomplete type \'(?P<type>.*)\'')
259 r'\'sizeof\' to an incomplete type '
272 return _GenericDiagnoser('IBRA', 'Incomplete By-Reference Argument Type',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_binascii.py 31 self.assertTrue(issubclass(binascii.Incomplete, Exception))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_binascii.py 31 self.assertTrue(issubclass(binascii.Incomplete, Exception))
  /external/chromium/testing/gmock/test/
gmock-spec-builders_test.cc 106 class Incomplete;
111 // argument of an incomplete type.
112 MOCK_METHOD1(ByRefFunc, void(const Incomplete& x));
115 // Tells Google Mock how to print a value of type Incomplete.
116 void PrintTo(const Incomplete& x, ::std::ostream* os);
120 // by-reference an argument whose type is incomplete, we can still
123 MockIncomplete incomplete; local
124 EXPECT_CALL(incomplete, ByRefFunc(_))
130 void PrintTo(const Incomplete& /* x */, ::std::ostream* os) {
131 *os << "incomplete";
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
cryptomath.py 169 except binascii.Incomplete, e:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 300 except binascii.Incomplete:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 300 except binascii.Incomplete:
  /external/chromium_org/chrome/browser/resources/google_now/
utility.js 376 'Incomplete task or pending callbacks when unloading event page,' +
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
MainThreadWebSocketChannel.cpp 427 if (m_handshake->mode() == WebSocketHandshake::Incomplete) {
    [all...]

Completed in 954 milliseconds

12