HomeSort by relevance Sort by last modified time
    Searched full:is_done (Results 1 - 25 of 27) sorted by null

1 2

  /external/tensorflow/tensorflow/core/lib/db/
sqlite.cc 176 Status SqliteStatement::Step(bool* is_done) {
179 *is_done = true;
188 *is_done = false;
191 *is_done = true;
194 *is_done = true;
201 bool is_done; local
202 TF_CHECK_OK(Step(&is_done));
203 return !is_done;
207 bool is_done; local
208 TF_RETURN_IF_ERROR(Step(&is_done));
221 bool is_done; local
    [all...]
sqlite.h 167 /// `is_done` will always be set to true unless SQLITE_ROW is
172 /// The OrDie version returns `!is_done` which, if true, indicates a
177 Status Step(bool* is_done);
  /external/tensorflow/tensorflow/contrib/tensorboard/db/
summary_db_writer_test.cc 67 bool is_done; local
68 Status s = stmt.Step(&is_done);
69 if (!s.ok() || is_done) {
78 bool is_done; local
79 Status s = stmt.Step(&is_done);
80 if (!s.ok() || is_done) {
89 bool is_done; local
90 Status s = stmt.Step(&is_done);
91 if (!s.ok() || is_done) {
summary_db_writer.cc 511 bool is_done; local
512 TF_RETURN_IF_ERROR(get.Step(&is_done));
513 if (!is_done) {
553 bool is_done; local
554 TF_RETURN_IF_ERROR(get.Step(&is_done));
555 if (!is_done) {
    [all...]
  /external/v8/src/crankshaft/
lithium-codegen.h 95 bool is_done() const { return status_ == DONE; } function in class:v8::internal::BASE_EMBEDDED
hydrogen-gvn.cc 702 // returns a state where "is_done() == true".
727 bool is_done() { return dominated_index_ >= length_; } function in class:v8::internal::BASE_EMBEDDED::GvnBasicBlockState
766 while (result != NULL && result->is_done()) {
lithium.h 732 bool is_done() const { return status_ == DONE; } function in class:v8::internal::BASE_EMBEDDED
  /external/libxcam/xcore/
x3a_result.h 52 bool is_done() const { function in class:XCam::X3aResult
  /external/syslinux/core/fs/iso9660/
susp_rr.c 317 int count = 0, ret = 0, head_skip = 4, nmsp_flags = -1, is_done = 0; local
335 while (!is_done) {
355 is_done = 1; /* This is the last iteration cycle */
  /external/autotest/scheduler/
monitor_db_unittest.py 47 def is_done(self): member in class:DummyAgent
454 if agent.started and not agent.is_done())
718 while not agent.is_done():
725 task.is_done.expect_call().and_return(False)
742 task.is_done.expect_call().and_return(True)
    [all...]
monitor_db.py 1325 def is_done(self): member in class:Agent
    [all...]
agent_task.py 90 By this point the is_done flag is set, which results in the Agent noticing that
208 def is_done(self): member in class:AgentTask
scheduler_models_unittest.py 277 agent.is_done.expect_call().and_return(agent_finished)
scheduler_models.py     [all...]
  /external/blktrace/
blktrace.c 169 volatile int status, is_done; member in struct:tracer
541 while (!tp->is_done && !tracers_run)
    [all...]
blkparse.c 295 #define is_done() (*(volatile int *)(&done)) macro
    [all...]
  /external/autotest/client/site_tests/power_Consumption/
power_Consumption.py 263 is_done = lambda: tab.EvaluateJavaScript(score_js) != ""
265 utils.poll_for_condition(is_done, timeout=900,
  /system/nfc/src/nfa/ee/
nfa_ee_act.cc 1527 bool is_done = true; local
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 61 DCHECK(is_done());
378 DCHECK(is_done());
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 838 DCHECK(is_done());
848 DCHECK(is_done());
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 69 DCHECK(is_done());
374 DCHECK(is_done());
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 103 DCHECK(is_done());
393 DCHECK(is_done());
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 79 DCHECK(is_done());
376 DCHECK(is_done());
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 78 DCHECK(is_done());
386 DCHECK(is_done());
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 73 DCHECK(is_done());
374 DCHECK(is_done());
    [all...]

Completed in 640 milliseconds

1 2