/external/perfetto/src/tracing/ |
D | traced_value.cc | 41 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteInt64() 46 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteUInt64() 51 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteDouble() 56 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteBoolean() 61 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteString() 66 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteString() 71 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteString() 76 PERFETTO_DCHECK(checked_scope_.is_active()); in WritePointer() 83 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteDictionary() 93 PERFETTO_DCHECK(checked_scope_.is_active()); in WriteArray() [all …]
|
/external/perfetto/include/perfetto/tracing/internal/ |
D | checked_scope.h | 46 bool is_active() const { return is_active_; } in is_active() function 49 void set_is_active(bool is_active) { is_active_ = is_active; } in set_is_active() argument 69 inline bool is_active() const { return true; }
|
/external/python/cpython3/Lib/test/ |
D | test_graphlib.py | 12 while ts.is_active(): 133 ts.is_active() 173 self.assertFalse(ts.is_active()) 180 self.assertTrue(ts.is_active()) 182 self.assertTrue(ts.is_active()) 184 self.assertTrue(ts.is_active()) 186 self.assertTrue(ts.is_active()) 188 self.assertFalse(ts.is_active()) 199 while ts.is_active():
|
/external/arm-trusted-firmware/plat/brcm/board/common/ |
D | bcm_elog.c | 38 unsigned int is_active; member 105 elog->is_active = 1; in bcm_elog_init() 132 if (!elog->is_active) in bcm_elog_exit() 135 elog->is_active = 0; in bcm_elog_exit() 150 if (!elog->is_active || ((uintptr_t)dst == elog->base)) in bcm_elog_copy_log() 198 if (!elog->is_active || level > elog->level) in bcm_elog()
|
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_channel/ |
D | _invocation.py | 30 return handler.is_active() 68 def is_active(self): member in _Call 98 def is_active(self): member in _RpcErrorCall 153 return handler.is_active() 157 return not handler.is_active() 217 def is_active(self): member in _FutureCall 305 def is_active(self): member in ResponseIteratorCall
|
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_server/ |
D | _servicer_context.py | 26 def is_active(self): member in ServicerContext 27 return self._rpc.is_active() 30 if self._rpc.is_active():
|
/external/google-breakpad/src/common/ |
D | simple_string_dictionary.h | 71 bool is_active() const { in is_active() function 90 if (entry->is_active()) { in Next() 136 if (entries_[i].is_active()) { in GetCount() 183 if (!entries_[i].is_active()) { in SetKeyValue()
|
/external/python/cpython3/Lib/ |
D | graphlib.py | 132 def is_active(self): member in TopologicalSorter 147 return self.is_active() 243 while self.is_active():
|
/external/grpc-grpc/src/python/grpcio_tests/tests/testing/ |
D | _server_application.py | 53 elif not context.is_active(): 64 elif not context.is_active():
|
/external/python/cpython2/Lib/idlelib/ |
D | AutoCompleteWindow.py | 220 if not self.is_active(): 241 if not self.is_active(): 246 if not self.is_active(): 259 if not self.is_active(): 365 if not self.is_active(): 372 def is_active(self): member in AutoCompleteWindow 380 if not self.is_active():
|
/external/python/cpython3/Lib/idlelib/ |
D | autocomplete_w.py | 240 if not self.is_active(): 286 if self.is_active(): 297 if self.is_active(): 309 if not self.is_active(): 425 if not self.is_active(): 432 def is_active(self): member in AutoCompleteWindow 440 if not self.is_active():
|
/external/OpenCSD/decoder/source/ |
D | trc_ret_stack.cpp | 68 if (is_active()) in push() 85 if (is_active()) in pop()
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_query_hw.c | 74 is_active(struct fd_hw_query *hq, enum fd_render_stage stage) in is_active() function 146 if (batch && is_active(hq, batch->stage)) in fd_hw_begin_query() 162 if (batch && is_active(hq, batch->stage)) in fd_hw_end_query() 394 bool was_active = is_active(hq, batch->stage); in fd_hw_query_set_stage() 395 bool now_active = is_active(hq, stage); in fd_hw_query_set_stage()
|
/external/libchrome/base/metrics/ |
D | histogram_snapshot_manager.cc | 23 MakeActive(std::atomic<bool>* is_active) : is_active_(is_active) { in MakeActive() argument
|
/external/skqp/src/compute/skc/platforms/cl_12/kernels/ |
D | rasters_alloc.cl | 40 skc_bool const is_active = gid < count; 49 if (is_active) 122 if (is_active)
|
/external/grpc-grpc/src/python/grpcio/grpc/beta/ |
D | _server_adaptations.py | 52 def is_active(self): member in _FaceServicerContext 53 return self._servicer_context.is_active() 164 if not servicer_context.is_active() or thread_joined.is_set(): 167 if not servicer_context.is_active() or thread_joined.is_set():
|
/external/python/cpython3/Doc/library/ |
D | graphlib.rst | 44 * While :meth:`~TopologicalSorter.is_active` is ``True``, iterate over 68 while topological_sorter.is_active(): 76 # The definition of 'is_active()' guarantees that, at this point, at 109 .. method:: is_active() 121 if ts.is_active(): 163 while self.is_active():
|
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/ |
D | clang.py | 87 def is_active(checkers): function 152 is_active_checker = is_active(get_active_checkers(clang, plugins))
|
/external/clang/tools/scan-build-py/libscanbuild/ |
D | clang.py | 125 def is_active(actives, entry): function 148 k: (v, is_active(actives, k))
|
/external/autotest/frontend/afe/ |
D | models_test.py | 174 task.update_object(is_active=True) 177 task.update_object(is_active=False, is_complete=True, success=True) 187 self.assertTrue(task.is_active) 195 self.assertFalse(task.is_active)
|
/external/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/ |
D | export.py | 122 is_active = tab_index == 0 125 ' is-active' if is_active else '', 136 ' is-active' if is_active else '', tab_index))
|
/external/perfetto/src/tracing/internal/ |
D | checked_scope.cc | 28 PERFETTO_DCHECK(parent_scope_->is_active()); in CheckedScope()
|
/external/adhd/cras/src/tests/ |
D | audio_thread_unittest_obsolete.cc | 1620 EXPECT_EQ(1, iodev_.is_active); in TEST_F() 1630 EXPECT_EQ(iodev3_.is_active, 1); in TEST_F() 1631 EXPECT_EQ(iodev_.is_active, 0); in TEST_F() 1644 EXPECT_EQ(iodev_.is_active, 1); in TEST_F() 1649 EXPECT_EQ(iodev2_.is_active, 1); in TEST_F() 1650 EXPECT_EQ(iodev_.is_active, 0); in TEST_F() 1662 EXPECT_EQ(1, iodev_.is_active); in TEST_F() 1667 EXPECT_EQ(1, iodev2_.is_active); in TEST_F() 1673 EXPECT_EQ(0, iodev_.is_active); in TEST_F() 1678 EXPECT_EQ(1, iodev_.is_active); in TEST_F() [all …]
|
/external/OpenCSD/decoder/include/common/ |
D | trc_ret_stack.h | 64 bool is_active() const in is_active() function
|
/external/pdfium/third_party/base/allocator/partition_allocator/ |
D | partition_page.h | 101 ALWAYS_INLINE bool is_active() const; 240 ALWAYS_INLINE bool PartitionPage::is_active() const { in is_active() function
|