HomeSort by relevance Sort by last modified time
    Searched defs:incomplete (Results 1 - 25 of 43) sorted by null

1 2

  /external/clang/test/Sema/
memset-invalid-1.c 7 typedef struct __incomplete *incomplete; typedef in typeref:struct:__incomplete
11 incomplete query = 0;
12 memset(query, 0, sizeof(query)); // expected-warning {{'memset' call operates on objects of type 'struct __incomplete' while the size is based on a different type 'incomplete'}} \
atomic-ops.c 52 struct Incomplete *incomplete; // expected-note {{forward declaration of 'struct Incomplete'}} variable in typeref:struct:Incomplete
73 _Static_assert(__atomic_always_lock_free(1, incomplete), "");
74 _Static_assert(!__atomic_always_lock_free(2, incomplete), "");
75 _Static_assert(!__atomic_always_lock_free(4, incomplete), "");
297 (struct Incomplete * _Atomic *)0, // expected-error {{incomplete type 'struct Incomplete'}}
  /external/autotest/frontend/client/src/autotest/common/
StatusSummary.java 12 public int incomplete = 0; field in class:StatusSummary
23 summary.incomplete = getField(group, incompleteCountField);
64 return incomplete;
  /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
  /bionic/tests/
wchar_test.cpp 368 const char* incomplete = "A" "\xc2"; local
369 ASSERT_EQ(static_cast<size_t>(-1), mbsrtowcs(out, &incomplete, 2, ps));
371 ASSERT_EQ('\xc2', *incomplete);
  /external/deqp/framework/common/
tcuTestCase.hpp 190 static TestStatus incomplete (void) { return TestStatus(QP_TEST_RESULT_LAST, ""); } function in class:tcu::TestStatus
  /external/junit/src/org/junit/experimental/theories/
Theories.java 107 protected void runWithIncompleteAssignment(Assignments incomplete)
110 for (PotentialAssignment source : incomplete
112 runWithAssignment(incomplete.assignNext(source));
  /external/v8/test/promises-aplus/lib/
mocha.js 223 var incomplete = {
228 context.beingDescribed = incomplete;
232 context.suites.push(new TestSuite(incomplete));
  /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...]
  /external/mesa3d/src/mesa/main/
texparam.c 237 * state flag and then mark the texture object as 'incomplete' so that any
241 incomplete(struct gl_context *ctx, struct gl_texture_object *texObj) function
339 incomplete(ctx, texObj);
351 incomplete(ctx, texObj);
    [all...]
texobj.c 394 * Mark a texture object as incomplete. There are actually three kinds of
396 * 1. "base incomplete": the base level of the texture is invalid so no
398 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
401 * sampler state renders the texture incomplete.
404 * \param bm either BASE or MIPMAP to indicate what's incomplete
405 * \param fmt... string describing why it's incomplete (for debugging).
408 incomplete(struct gl_texture_object *t, enum base_mipmap bm, function
419 _mesa_debug(NULL, "Texture Obj %d incomplete because: %s\n", t->Name, s);
454 * they would be incomplete (no BO attached) is actually specced to be
464 incomplete(t, BASE, "base level = %d is invalid", baseLevel)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
HTMLParser.py 17 incomplete = re.compile('&[a-zA-Z#]') variable
209 match = incomplete.match(rawdata, i)
214 # incomplete
330 # or -1 if incomplete.
362 # Internal -- parse endtag, return end or -1 if incomplete
sgmllib.py 25 incomplete = re.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|' variable
153 # incomplete
199 # We get here only if incomplete matches but
201 match = incomplete.match(rawdata, i)
208 break # Really incomplete
  /prebuilts/gdb/linux-x86/lib/python2.7/
HTMLParser.py 17 incomplete = re.compile('&[a-zA-Z#]') variable
209 match = incomplete.match(rawdata, i)
214 # incomplete
330 # or -1 if incomplete.
362 # Internal -- parse endtag, return end or -1 if incomplete
sgmllib.py 25 incomplete = re.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|' variable
153 # incomplete
199 # We get here only if incomplete matches but
201 match = incomplete.match(rawdata, i)
208 break # Really incomplete
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
HTMLParser.py 17 incomplete = re.compile('&[a-zA-Z#]') variable
209 match = incomplete.match(rawdata, i)
214 # incomplete
330 # or -1 if incomplete.
362 # Internal -- parse endtag, return end or -1 if incomplete
sgmllib.py 25 incomplete = re.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|' variable
153 # incomplete
199 # We get here only if incomplete matches but
201 match = incomplete.match(rawdata, i)
208 break # Really incomplete
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
HTMLParser.py 17 incomplete = re.compile('&[a-zA-Z#]') variable
209 match = incomplete.match(rawdata, i)
214 # incomplete
330 # or -1 if incomplete.
362 # Internal -- parse endtag, return end or -1 if incomplete
sgmllib.py 25 incomplete = re.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|' variable
153 # incomplete
199 # We get here only if incomplete matches but
201 match = incomplete.match(rawdata, i)
208 break # Really incomplete
  /external/mesa3d/src/mesa/state_tracker/
st_manager.c 745 struct gl_framebuffer *incomplete = _mesa_get_incomplete_framebuffer(); local
746 ret = _mesa_make_current(st->ctx, incomplete, incomplete);
  /external/gmock/test/
gmock-spec-builders_test.cc 107 class Incomplete;
112 // argument of an incomplete type.
113 MOCK_METHOD1(ByRefFunc, void(const Incomplete& x));
116 // Tells Google Mock how to print a value of type Incomplete.
117 void PrintTo(const Incomplete& x, ::std::ostream* os);
121 // by-reference an argument whose type is incomplete, we can still
124 MockIncomplete incomplete; local
125 EXPECT_CALL(incomplete, ByRefFunc(_))
131 void PrintTo(const Incomplete& /* x */, ::std::ostream* os) {
132 *os << "incomplete";
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-spec-builders_test.cc 107 class Incomplete;
112 // argument of an incomplete type.
113 MOCK_METHOD1(ByRefFunc, void(const Incomplete& x));
116 // Tells Google Mock how to print a value of type Incomplete.
117 void PrintTo(const Incomplete& x, ::std::ostream* os);
121 // by-reference an argument whose type is incomplete, we can still
124 MockIncomplete incomplete; local
125 EXPECT_CALL(incomplete, ByRefFunc(_))
131 void PrintTo(const Incomplete& /* x */, ::std::ostream* os) {
132 *os << "incomplete";
    [all...]
  /external/speex/libspeex/
jitter.c 469 int incomplete = 0; local
574 incomplete = 1;
575 /*fprintf (stderr, "incomplete: %d %d %d %d\n", jitter->packets[i].timestamp, jitter->pointer_timestamp, chunk_size, jitter->packets[i].span);*/
  /external/ipsec-tools/src/racoon/
pfkey.c 1178 int incomplete = 0; local
1262 incomplete = 1;
1265 if (incomplete)
    [all...]
  /external/dbus/bus/
connection.c 58 DBusList *incomplete; /**< List of all not-yet-active connections */ member in struct:BusConnections
59 int n_incomplete; /**< Length of incomplete list */
62 DBusTimeout *expire_timeout; /**< Timeout for expiring incomplete connections. */
293 _dbus_list_remove_link (&d->connections->incomplete, d->link_in_connection_list);
486 /* drop all incomplete */
487 while (connections->incomplete != NULL)
491 connection = connections->incomplete->data;
686 _dbus_list_append_link (&connections->incomplete, d->link_in_connection_list);
704 _dbus_verbose ("Number of incomplete connections exceeds max, dropping oldest one\n");
706 _dbus_assert (connections->incomplete != NULL)
    [all...]

Completed in 880 milliseconds

1 2