| /external/clang/test/SemaTemplate/ |
| derived.cpp | 36 IncompleteClass Foo; // expected-error{{field has incomplete type}} 44 Typ x; // expected-error {{incomplete type}}
|
| destructor-template.cpp | 12 struct Incomplete; 19 template void destroy_me(Incomplete*);
|
| ms-class-specialization-class-scope.cpp | 13 X<char>::x b; // expected-error {{incomplete type 'A::X<char>' named in nested name specifier}} 37 typename X<char>::x b; // expected-error {{incomplete type 'B<float>::X<char>' named in nested name specifier}}
|
| instantiate-function-1.cpp | 53 struct Incomplete; // expected-note 2{{forward declaration}} 56 T f() { } // expected-error{{incomplete result type}} 58 void test_X5(X5<Incomplete> x5); // okay! 60 template struct X5<Incomplete>; // expected-note{{instantiation}} 197 } catch (T t) { // expected-error{{incomplete type}} \ 209 template struct TryCatch0<Incomplete*>; // expected-note{{instantiation}}
|
| /prebuilts/go/darwin-x86/src/math/ |
| sin_386.s | 22 JNE -3(PC) // jump if reduction incomplete 43 JNE -3(PC) // jump if reduction incomplete
|
| /prebuilts/go/linux-x86/src/math/ |
| sin_386.s | 22 JNE -3(PC) // jump if reduction incomplete 43 JNE -3(PC) // jump if reduction incomplete
|
| /system/chre/apps/wifi_offload/ |
| scan_filter.cc | 41 LOGE("Failed to deserialize ScanFilter. Null or incomplete members."); 46 LOGE("Failed to deserialize ScanFilter. Null or incomplete members.");
|
| scan_result_message.cc | 54 "Failed to deserialize ScanResultsMessage. Null or incomplete " 61 "Failed to deserialize ScanResultMessage. Null or incomplete members.");
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code.
8 - Return None if the command is incomplete
105 r"""Compile a command and determine whether it is incomplete.
117 - Return None if the command is incomplete
150 r"""Compile a command and determine whether it is incomplete.
163 - Return None if the command is incomplete
|
| /external/python/cpython2/Lib/ |
| codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 8 - Return None if the command is incomplete 105 r"""Compile a command and determine whether it is incomplete. 117 - Return None if the command is incomplete 150 r"""Compile a command and determine whether it is incomplete. 163 - Return None if the command is incomplete
|
| /external/python/cpython3/Lib/ |
| codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 8 - Return None if the command is incomplete 105 r"""Compile a command and determine whether it is incomplete. 117 - Return None if the command is incomplete 150 r"""Compile a command and determine whether it is incomplete. 163 - Return None if the command is incomplete
|
| /packages/inputmethods/LatinIME/java/res/xml/ |
| rowkeys_hindi_compact2.xml | 23 render dotted circle for incomplete combining letter of some scripts, different 31 render dotted circle for incomplete combining letter of some scripts, different 39 render dotted circle for incomplete combining letter of some scripts, different 47 render dotted circle for incomplete combining letter of some scripts, different 55 render dotted circle for incomplete combining letter of some scripts, different 68 render dotted circle for incomplete combining letter of some scripts, different
|
| rowkeys_marathi2.xml | 23 render dotted circle for incomplete combining letter of some scripts, different 28 render dotted circle for incomplete combining letter of some scripts, different 33 render dotted circle for incomplete combining letter of some scripts, different 38 render dotted circle for incomplete combining letter of some scripts, different 43 render dotted circle for incomplete combining letter of some scripts, different 53 render dotted circle for incomplete combining letter of some scripts, different
|
| rowkeys_hindi3.xml | 27 render dotted circle for incomplete combining letter of some scripts, different 45 render dotted circle for incomplete combining letter of some scripts, different 54 render dotted circle for incomplete combining letter of some scripts, different 59 render dotted circle for incomplete combining letter of some scripts, different 91 render dotted circle for incomplete combining letter of some scripts, different
|
| rowkeys_hindi_compact1.xml | 23 render dotted circle for incomplete combining letter of some scripts, different 34 render dotted circle for incomplete combining letter of some scripts, different 45 render dotted circle for incomplete combining letter of some scripts, different 56 render dotted circle for incomplete combining letter of some scripts, different 67 render dotted circle for incomplete combining letter of some scripts, different
|
| rowkeys_marathi1.xml | 23 render dotted circle for incomplete combining letter of some scripts, different 32 render dotted circle for incomplete combining letter of some scripts, different 41 render dotted circle for incomplete combining letter of some scripts, different 50 render dotted circle for incomplete combining letter of some scripts, different 59 render dotted circle for incomplete combining letter of some scripts, different
|
| rowkeys_nepali_traditional3.xml | 37 render dotted circle for incomplete combining letter of some scripts, different 46 render dotted circle for incomplete combining letter of some scripts, different 53 render dotted circle for incomplete combining letter of some scripts, different 72 render dotted circle for incomplete combining letter of some scripts, different 77 render dotted circle for incomplete combining letter of some scripts, different
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 8 - Return None if the command is incomplete 105 r"""Compile a command and determine whether it is incomplete. 117 - Return None if the command is incomplete 150 r"""Compile a command and determine whether it is incomplete. 163 - Return None if the command is incomplete
|
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 8 - Return None if the command is incomplete 105 r"""Compile a command and determine whether it is incomplete. 117 - Return None if the command is incomplete 150 r"""Compile a command and determine whether it is incomplete. 163 - Return None if the command is incomplete
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 8 - Return None if the command is incomplete 105 r"""Compile a command and determine whether it is incomplete. 117 - Return None if the command is incomplete 150 r"""Compile a command and determine whether it is incomplete. 163 - Return None if the command is incomplete
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| codeop.py | 1 r"""Utilities to compile possibly incomplete Python source code. 8 - Return None if the command is incomplete 105 r"""Compile a command and determine whether it is incomplete. 117 - Return None if the command is incomplete 150 r"""Compile a command and determine whether it is incomplete. 163 - Return None if the command is incomplete
|
| /external/clang/test/SemaCXX/ |
| exceptions.cpp | 15 } catch(void v) { // expected-error {{cannot catch incomplete type 'void'}} 16 } catch(A a) { // expected-error {{cannot catch incomplete type 'A'}} 17 } catch(A *a) { // expected-error {{cannot catch pointer to incomplete type 'A'}} 18 } catch(A &a) { // expected-error {{cannot catch reference to incomplete type 'A'}} 33 throw throw; // expected-error {{cannot throw object of incomplete type 'void'}} 34 throw (A*)0; // expected-error {{cannot throw pointer to object of incomplete type 'A'}} 142 // expected-error@-2 {{pointer to incomplete type 'Decay::E' is not allowed in exception specification}}
|
| /external/spirv-llvm/lib/SPIRV/libSPIRV/ |
| SPIRVValue.h | 85 // Incomplete constructor 151 // Incomplete constructor 202 // Incomplete constructor 217 // Incomplete constructor 237 // Incomplete constructor 260 // Incomplete constructor 278 // Incomplete constructor 312 // Incomplete constructor 354 // Incomplete constructor
|
| /packages/services/Car/tests/carservice_test/src/com/android/car/ |
| CarDiagnosticManagerTest.java | 420 assertFalse(commonIgnitionMonitors.components.incomplete); 422 assertTrue(commonIgnitionMonitors.fuelSystem.incomplete); 424 assertFalse(commonIgnitionMonitors.misfire.incomplete); 432 assertFalse(sparkIgnitionMonitors.EGR.incomplete); 434 assertFalse(sparkIgnitionMonitors.oxygenSensorHeater.incomplete); 436 assertTrue(sparkIgnitionMonitors.oxygenSensor.incomplete); 438 assertFalse(sparkIgnitionMonitors.ACRefrigerant.incomplete); 440 assertFalse(sparkIgnitionMonitors.secondaryAirSystem.incomplete); 442 assertFalse(sparkIgnitionMonitors.evaporativeSystem.incomplete); 444 assertFalse(sparkIgnitionMonitors.heatedCatalyst.incomplete); [all...] |
| /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/ |
| p6.cpp | 86 alignas(4) struct Incomplete incomplete; // expected-error {{incomplete type}} expected-note {{forward declaration}} variable in typeref:struct:Incomplete
|