Home
last modified time | relevance | path

Searched refs:child_value (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/source/DataFormatters/
DVectorType.cpp283 const char *child_value = child_sp->GetValueAsCString(); in VectorTypeSummaryProvider() local
284 if (child_value && *child_value) { in VectorTypeSummaryProvider()
286 s.Printf("%s", child_value); in VectorTypeSummaryProvider()
289 s.Printf(", %s", child_value); in VectorTypeSummaryProvider()
/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
DBlockPointer.cpp199 const char *child_value = in BlockPointerSummaryProvider() local
202 s.Printf("%s", child_value); in BlockPointerSummaryProvider()
/external/perfetto/src/trace_processor/tables/
Dmacros_benchmark.cc518 const uint32_t child_value = static_cast<uint32_t>(rnd_engine()); in BM_TableSortChildNonNullInParent() local
521 child_row.root_non_null = child_value; in BM_TableSortChildNonNullInParent()
548 const uint32_t child_value = static_cast<uint32_t>(rnd_engine()); in BM_TableSortChildNullableInParent() local
551 child_row.root_nullable = child_value % 2 == 0 in BM_TableSortChildNullableInParent()
553 : perfetto::base::make_optional(child_value); in BM_TableSortChildNullableInParent()
/external/python/cpython2/Lib/test/
Dtest_uuid.py428 child_value = os.read(fds[0], 100)
430 self.assertNotEqual(parent_value, child_value)
Dtest_tempfile.py154 child_value = os.read(read_fd, len(parent_value)).decode("ascii")
169 self.assertNotEqual(child_value, parent_value)
/external/python/cpython3/Lib/test/
Dtest_uuid.py659 child_value = os.read(fds[0], 100).decode('latin-1')
661 self.assertNotEqual(parent_value, child_value)
Dtest_tempfile.py200 child_value = os.read(read_fd, len(parent_value)).decode("ascii")
207 self.assertNotEqual(child_value, parent_value)
/external/python/asn1crypto/asn1crypto/
Dcore.py1406 child_value, offset = _parse_build(contents, pointer=offset, spec=spec)
1408 child_value = spec()
1409 self._children.append(child_value)