/external/protobuf/src/google/protobuf/io/ |
D | printer_unittest.cc | 234 const GeneratedCodeInfo::Annotation* foo = info.annotation(0).path_size() == 1 in TEST() 237 const GeneratedCodeInfo::Annotation* bar = info.annotation(0).path_size() == 1 in TEST() 240 ASSERT_EQ(1, foo->path_size()); in TEST() 241 ASSERT_EQ(2, bar->path_size()); in TEST() 274 const GeneratedCodeInfo::Annotation* foo = info.annotation(0).path_size() == 1 in TEST() 277 const GeneratedCodeInfo::Annotation* bar = info.annotation(0).path_size() == 1 in TEST() 280 ASSERT_EQ(1, foo->path_size()); in TEST() 281 ASSERT_EQ(2, bar->path_size()); in TEST() 310 ASSERT_EQ(1, foobar->path_size()); in TEST() 335 ASSERT_EQ(1, bazbam->path_size()); in TEST() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_bvgraph.h | 128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() argument 129 if (path_size == 0) in findPath() 138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1)) in findPath() 146 uptr path_size) { in findShortestPath() argument 147 for (uptr p = 1; p <= path_size; p++) in findShortestPath()
|
D | sanitizer_deadlock_detector.h | 317 uptr path_size) { in findPathToLock() argument 321 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size); in findPathToLock()
|
/external/deqp-deps/amber/android_sample/jni/ |
D | amber_script.cc | 29 const size_t path_size = path.size(); in IsEndedWith() local 31 if (path_size < end_size) in IsEndedWith() 34 return path.compare(path_size - end_size, end_size, end) == 0; in IsEndedWith() 38 const size_t path_size = path.size(); in IsStartedWith() local 40 if (path_size < start_size) in IsStartedWith()
|
/external/webrtc/webrtc/modules/audio_processing/test/ |
D | process_test.cc | 535 const size_t path_size = in void_main() local 537 rtc::scoped_ptr<char[]> echo_path(new char[path_size]); in void_main() 538 ASSERT_EQ(path_size, fread(echo_path.get(), in void_main() 540 path_size, in void_main() 544 path_size)); in void_main() 1062 const size_t path_size = in void_main() local 1064 rtc::scoped_ptr<char[]> echo_path(new char[path_size]); in void_main() 1065 apm->echo_control_mobile()->GetEchoPath(echo_path.get(), path_size); in void_main() 1066 ASSERT_EQ(path_size, fwrite(echo_path.get(), in void_main() 1068 path_size, in void_main()
|
/external/crosvm/sys_util/src/ |
D | net.rs | 445 let path_size = 50; in sockaddr_un_pass() localVariable 447 sockaddr_un(Path::new(&"a".repeat(path_size))).expect("sockaddr_un failed"); in sockaddr_un_pass() 448 assert_eq!(len, (sun_path_offset() + path_size + 1) as u32); in sockaddr_un_pass() 453 for i in 0..path_size { in sockaddr_un_pass()
|
/external/freetype/builds/mac/ |
D | ftmac.c | 839 int path_size ) in lookup_lwfn_by_fond() argument 858 if ( noErr != FSRefMakePath( &par_ref, path_lwfn, path_size ) ) in lookup_lwfn_by_fond() 861 if ( ft_strlen( (char *)path_lwfn ) + 1 + base_lwfn[0] > path_size ) in lookup_lwfn_by_fond() 890 if ( ft_strlen( (char *)path_fond ) > path_size ) in lookup_lwfn_by_fond() 899 if ( i + 1 + base_lwfn[0] > path_size ) in lookup_lwfn_by_fond()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | xla_cluster_util.cc | 51 int32 path_size = cycles->FindPath(dst, src, max_path_size, path.data()); in DescribeCycle() local 52 if (path_size == 0) { in DescribeCycle() 70 path.resize(path_size); in DescribeCycle()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | annotation_test_util.cc | 109 annotation->path_size() != path.size()) { in FindAnnotationsOnPath()
|
D | parser.cc | 489 return location_->path_size(); in CurrentPathSize() 1643 if (info.location(j).path_size() == range_number_index + 1) { in ParseExtensions()
|
/external/freetype/src/base/ |
D | ftmac.c | 506 size_t path_size ) in lookup_lwfn_by_fond() argument 522 if ( noErr != FSRefMakePath( &par_ref, path_lwfn, path_size ) ) in lookup_lwfn_by_fond() 525 if ( ft_strlen( (char *)path_lwfn ) + 1 + base_lwfn[0] > path_size ) in lookup_lwfn_by_fond()
|
/external/skqp/tests/ |
D | SerializationTest.cpp | 776 size_t path_size = SkAlign4(path_effect->serialize()->size()); in DEF_TEST() local 777 REPORTER_ASSERT(reporter, path_size > 4u); in DEF_TEST() 780 size_t storage_size = path_size - 4; in DEF_TEST() 784 storage_size = path_size; in DEF_TEST()
|
/external/skia/tests/ |
D | SerializationTest.cpp | 785 size_t path_size = SkAlign4(path_effect->serialize()->size()); in DEF_TEST() local 786 REPORTER_ASSERT(reporter, path_size > 4u); in DEF_TEST() 789 size_t storage_size = path_size - 4; in DEF_TEST() 793 storage_size = path_size; in DEF_TEST()
|
/external/brotli/c/enc/ |
D | encode.c | 1235 size_t path_size; in BrotliCompressBufferQuality10() local 1241 path_size = BrotliZopfliComputeShortestPath(m, block_size, block_start, in BrotliCompressBufferQuality10() 1254 num_commands + path_size + 1); in BrotliCompressBufferQuality10() 1267 num_commands += path_size; in BrotliCompressBufferQuality10()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 2699 unsigned path_size() const { return CastExprBits.BasePathSize; } in path_size() function 2701 path_iterator path_end() { return path_buffer() + path_size(); } in path_end() 2703 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end()
|
/external/clang/lib/Serialization/ |
D | ASTWriterStmt.cpp | 633 Record.push_back(E->path_size()); in VisitCastExpr() 685 if (E->path_size() == 0) in VisitImplicitCastExpr()
|
D | ASTReaderStmt.cpp | 670 assert(NumBaseSpecs == E->path_size()); in VisitCastExpr()
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.pb.cc | 14011 if (this->path_size() > 0) { in SerializeWithCachedSizes() 14016 for (int i = 0, n = this->path_size(); i < n; i++) { in SerializeWithCachedSizes() 14077 if (this->path_size() > 0) { in InternalSerializeWithCachedSizesToArray() 14829 if (this->path_size() > 0) { in SerializeWithCachedSizes() 14834 for (int i = 0, n = this->path_size(); i < n; i++) { in SerializeWithCachedSizes() 14874 if (this->path_size() > 0) { in InternalSerializeWithCachedSizesToArray()
|
D | descriptor.pb.h | 5876 int path_size() const; 6293 int path_size() const; 11412 inline int SourceCodeInfo_Location::path_size() const { in path_size() function 11735 inline int GeneratedCodeInfo_Annotation::path_size() const { in path_size() function
|
D | descriptor.cc | 6589 if (loc->path_size() < pathv.size()) { in UpdateSourceCodeInfo() 6609 for (int j = 0; j < loc->path_size(); j++) { in UpdateSourceCodeInfo()
|
D | descriptor_unittest.cc | 7674 ASSERT_EQ(2, foo_location.path_size()); in TEST_F()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 3362 if (D.MostDerivedPathLength + E->path_size() > D.Entries.size()) { in HandleBaseToDerivedCast() 3370 unsigned NewEntriesSize = D.Entries.size() - E->path_size(); in HandleBaseToDerivedCast()
|