HomeSort by relevance Sort by last modified time
    Searched refs:incomplete (Results 26 - 50 of 261) sorted by null

12 3 4 5 6 7 8 91011

  /external/google-breakpad/src/testing/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',
  /external/googletest/googlemock/scripts/
gmock_doctor.py 225 clang_regex1 = (r'error: field has incomplete type '
232 clang_regex2 = (r'error: field has incomplete type '
260 r'\'sizeof\' to incomplete type \'(?P<type>.*)\'')
263 r'\'sizeof\' to an incomplete type '
276 return _GenericDiagnoser('IBRA', 'Incomplete By-Reference Argument Type',
  /external/v8/testing/gmock/scripts/
gmock_doctor.py 225 clang_regex1 = (r'error: field has incomplete type '
232 clang_regex2 = (r'error: field has incomplete type '
260 r'\'sizeof\' to incomplete type \'(?P<type>.*)\'')
263 r'\'sizeof\' to an incomplete type '
276 return _GenericDiagnoser('IBRA', 'Incomplete By-Reference Argument Type',
  /external/junit/src/main/java/org/junit/experimental/theories/
Theories.java 208 protected void runWithIncompleteAssignment(Assignments incomplete)
210 for (PotentialAssignment source : incomplete
212 runWithAssignment(incomplete.assignNext(source));
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/width/
transform.go 26 if size == 0 { // incomplete UTF-8 encoding
66 if size == 0 { // incomplete UTF-8 encoding
108 if size == 0 { // incomplete UTF-8 encoding
149 if size == 0 { // incomplete UTF-8 encoding
188 if size == 0 { // incomplete UTF-8 encoding
212 if size == 0 { // incomplete UTF-8 encoding
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/width/
transform.go 26 if size == 0 { // incomplete UTF-8 encoding
66 if size == 0 { // incomplete UTF-8 encoding
108 if size == 0 { // incomplete UTF-8 encoding
149 if size == 0 { // incomplete UTF-8 encoding
188 if size == 0 { // incomplete UTF-8 encoding
212 if size == 0 { // incomplete UTF-8 encoding
  /packages/services/Car/car-lib/src/android/car/diagnostic/
CarDiagnosticEvent.java 588 public final boolean incomplete; field in class:CarDiagnosticEvent.IgnitionMonitor
590 IgnitionMonitor(boolean available, boolean incomplete) {
592 this.incomplete = incomplete;
607 boolean incomplete = (0 != (value & mIncompleteBitmask));
609 return new IgnitionMonitor(available, incomplete);
    [all...]
  /external/v8/src/compiler/
bytecode-graph-builder.h 63 Node* NewNode(const Operator* op, bool incomplete = false) {
64 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete);
108 bool incomplete);
ast-graph-builder.h 167 Node* NewNode(const Operator* op, bool incomplete = false) {
168 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete);
203 bool incomplete = false) {
204 return MakeNode(op, value_input_count, value_inputs, incomplete);
219 bool incomplete);
  /external/deqp/framework/common/
tcuTestCase.hpp 190 static TestStatus incomplete (void) { return TestStatus(QP_TEST_RESULT_LAST, ""); } function in class:tcu::TestStatus
  /external/mesa3d/src/mesa/main/
texobj.c 601 * Mark a texture object as incomplete. There are actually three kinds of
603 * 1. "base incomplete": the base level of the texture is invalid so no
605 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
608 * sampler state renders the texture incomplete.
611 * \param bm either BASE or MIPMAP to indicate what's incomplete
612 * \param fmt... string describing why it's incomplete (for debugging).
615 incomplete(struct gl_texture_object *t, enum base_mipmap bm, function
626 _mesa_debug(NULL, "Texture Obj %d incomplete because: %s\n", t->Name, s);
661 * they would be incomplete (no BO attached) is actually specced to be
671 incomplete(t, BASE, "base level = %d is invalid", baseLevel)
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
viddec_emitter.h 33 int32_t viddec_emit_contr_tag(viddec_emitter *emit, viddec_input_buffer_t *ibuf, uint8_t incomplete, uint32_t using_next);
  /prebuilts/go/darwin-x86/src/go/types/
package.go 42 // Scope returns the (complete or incomplete) package scope
48 // exported objects; otherwise it is incomplete.
  /prebuilts/go/linux-x86/src/go/types/
package.go 42 // Scope returns the (complete or incomplete) package scope
48 // exported objects; otherwise it is incomplete.
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 108 extern int incomplete[];
109 for (auto a : incomplete) // expected-error {{cannot use incomplete type 'int []' as a range}}
111 extern struct Incomplete also_incomplete[2]; // expected-note {{forward declaration}}
112 for (auto &a : also_incomplete) // expected-error {{cannot use incomplete type 'struct Incomplete [2]' as a range}}
198 for (auto a : *also_incomplete) { // expected-error {{cannot use incomplete type 'struct Incomplete' as a range}}
  /external/clang/test/CodeGen/
atomic-ops.c 327 struct Incomplete;
329 int lock_free(struct Incomplete *incomplete) {
342 __atomic_is_lock_free(4, incomplete);
  /external/mesa3d/docs/specs/OLD/
MESA_trace.spec 35 valid (but possibly incomplete) C code and can be compiled and
  /prebuilts/go/darwin-x86/src/math/cmplx/
exp.go 25 // source listings for the gamma function and the incomplete beta
log.go 25 // source listings for the gamma function and the incomplete beta
  /prebuilts/go/linux-x86/src/math/cmplx/
exp.go 25 // source listings for the gamma function and the incomplete beta
log.go 25 // source listings for the gamma function and the incomplete beta
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
generic.h 150 int incomplete; /* only w/FOLLOW sets. Use only if complete */ member in struct:_f
  /external/clang/test/CXX/basic/basic.types/
p10.cpp 31 struct Incomplete; // expected-note 2{{forward declaration of 'Incomplete'}}
34 constexpr Incomplete incomplete = {}; // expected-error {{constexpr variable cannot have non-literal type 'const Incomplete'}} expected-note {{incomplete type 'const Incomplete' is not a literal type}} variable
35 constexpr Incomplete incomplete2[] = {}; // expected-error {{constexpr variable cannot have non-literal type 'Incomplete const[]'}} expected-note {{incomplete type 'Incomplete const[]' is not a literal type}
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
vet_test.go 145 "incomplete", // incomplete examples
  /prebuilts/go/linux-x86/src/cmd/vet/
vet_test.go 145 "incomplete", // incomplete examples

Completed in 1077 milliseconds

12 3 4 5 6 7 8 91011