/third_party/gstreamer/gstplugins_bad/ext/resindvd/ |
D | resindvdbin.c | 291 g_object_set (dvdbin->pieces[DVD_ELEM_SPUQ], in rsn_dvdbin_no_more_pads() 304 if (dvdbin->pieces[index] != NULL) { in try_create_piece() 327 dvdbin->pieces[index] = e; in try_create_piece() 443 g_object_set (G_OBJECT (dvdbin->pieces[DVD_ELEM_SOURCE]), in create_elements() 452 if (gst_element_link (dvdbin->pieces[DVD_ELEM_SOURCE], in create_elements() 453 dvdbin->pieces[DVD_ELEM_DEMUX]) == FALSE) in create_elements() 457 g_signal_connect (G_OBJECT (dvdbin->pieces[DVD_ELEM_DEMUX]), "pad-added", in create_elements() 460 g_signal_connect (G_OBJECT (dvdbin->pieces[DVD_ELEM_DEMUX]), "no-more-pads", in create_elements() 467 g_object_set (dvdbin->pieces[DVD_ELEM_MQUEUE], in create_elements() 485 if (!try_link_pieces (dvdbin->pieces[DVD_ELEM_VIDPARSE], "src", in create_elements() [all …]
|
/third_party/rust/crates/clap/src/builder/ |
D | styled_str.rs | 8 pieces: Vec<(Option<Style>, String)>, field 10 pieces: String, field 17 Self { pieces: Vec::new() } in new() 24 pieces: String::new(), in new() 86 if let Some((_, item)) = self.pieces.last_mut() { in trim_end() 93 self.pieces = self.pieces.trim_end().to_owned(); in trim_end() 135 self.pieces.push((style, msg)); in stylize_() 141 self.pieces.push_str(&msg); in stylize_() 156 self.pieces.is_empty() in is_empty() 161 self.pieces.iter().map(|(s, c)| (*s, c.as_str())) in iter() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | caniter.cpp | 71 pieces(NULL), in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 90 if(pieces != NULL) { in cleanPieces() 92 if(pieces[i] != NULL) { in cleanPieces() 93 delete[] pieces[i]; in cleanPieces() 96 uprv_free(pieces); in cleanPieces() 97 pieces = NULL; in cleanPieces() 146 buffer.append(pieces[i][current[i]]); in next() 185 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *)); in setSource() 190 if (pieces == NULL || pieces_lengths == NULL || current == NULL) { in setSource() 195 pieces[0] = new UnicodeString[1]; in setSource() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | caniter.cpp | 71 pieces(nullptr), in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 90 if(pieces != nullptr) { in cleanPieces() 92 if(pieces[i] != nullptr) { in cleanPieces() 93 delete[] pieces[i]; in cleanPieces() 96 uprv_free(pieces); in cleanPieces() 97 pieces = nullptr; in cleanPieces() 146 buffer.append(pieces[i][current[i]]); in next() 185 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *)); in setSource() 190 if (pieces == nullptr || pieces_lengths == nullptr || current == nullptr) { in setSource() 195 pieces[0] = new UnicodeString[1]; in setSource() [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | caniter.cpp | 71 pieces(NULL), in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 90 if(pieces != NULL) { in cleanPieces() 92 if(pieces[i] != NULL) { in cleanPieces() 93 delete[] pieces[i]; in cleanPieces() 96 uprv_free(pieces); in cleanPieces() 97 pieces = NULL; in cleanPieces() 146 buffer.append(pieces[i][current[i]]); in next() 185 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *)); in setSource() 190 if (pieces == NULL || pieces_lengths == NULL || current == NULL) { in setSource() 195 pieces[0] = new UnicodeString[1]; in setSource() [all …]
|
/third_party/node/benchmark/buffers/ |
D | buffer-concat.js | 5 pieces: [4, 16], property 11 function main({ n, pieces, pieceSize, withTotalLength }) { property 12 const list = Array.from({ length: pieces }) 15 const totalLength = withTotalLength ? pieces * pieceSize : undefined;
|
D | buffer-concat-fill.js | 10 const pieces = 4; 13 const list = Array.from({ length: pieces }) 16 const totalLength = (pieces * pieceSize) + extraSize;
|
/third_party/ninja/src/ |
D | util.cc | 529 vector<StringPiece> pieces = SplitStringPiece(line, ' '); in parse() local 530 if (pieces.size() < 10) in parse() 533 for (size_t i = 6; i < pieces.size(); i++) { in parse() 534 if (pieces[i] == "-") { in parse() 541 if (optionalStart + 3 != pieces.size()) in parse() 543 mountId = atoi(pieces[0].AsString().c_str()); in parse() 544 parentId = atoi(pieces[1].AsString().c_str()); in parse() 545 deviceId = pieces[2]; in parse() 546 root = pieces[3]; in parse() 547 mountPoint = pieces[4]; in parse() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | CanonicalIterator.java | 89 for (int i = 0; i < pieces.length; ++i) { in next() 90 buffer.append(pieces[i][current[i]]); in next() 102 if (current[i] < pieces[i].length) break; // got sequence in next() 119 pieces = new String[1][]; in setSource() 121 pieces[0] = new String[]{""}; in setSource() 145 pieces = new String[segmentList.size()][]; in setSource() 147 for (i = 0; i < pieces.length; ++i) { in setSource() 149 pieces[i] = getEquivalents(segmentList.get(i)); in setSource() 235 private String[][] pieces; field in CanonicalIterator
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CanonicalIterator.java | 92 for (int i = 0; i < pieces.length; ++i) { in next() 93 buffer.append(pieces[i][current[i]]); in next() 105 if (current[i] < pieces[i].length) break; // got sequence in next() 123 pieces = new String[1][]; in setSource() 125 pieces[0] = new String[]{""}; in setSource() 149 pieces = new String[segmentList.size()][]; in setSource() 151 for (i = 0; i < pieces.length; ++i) { in setSource() 153 pieces[i] = getEquivalents(segmentList.get(i)); in setSource() 239 private String[][] pieces; field in CanonicalIterator
|
/third_party/python/Lib/ |
D | reprlib.py | 71 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)] 72 if n > maxiter: pieces.append('...') 73 s = ', '.join(pieces) 111 pieces = [] 115 pieces.append('%s: %s' % (keyrepr, valrepr)) 116 if n > self.maxdict: pieces.append('...') 117 s = ', '.join(pieces)
|
/third_party/rust/crates/serde/serde_derive/ |
D | build.rs | 31 let mut pieces = version.split('.'); in rustc_minor_version() localVariable 32 if pieces.next() != Some("rustc 1") { in rustc_minor_version() 35 pieces.next()?.parse().ok() in rustc_minor_version()
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
D | ByteStringTest.java | 149 final List<ByteString> pieces = makeConcretePieces(testBytes); in testCopyFrom_Iterable() local 151 ByteString byteString = ByteString.copyFrom(pieces); in testCopyFrom_Iterable() 157 return pieces.iterator(); in testCopyFrom_Iterable() 499 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCompositeSubstring() local 500 ByteString listString = ByteString.copyFrom(pieces); in testCompositeSubstring() 535 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCopyFromList() local 536 ByteString listString = ByteString.copyFrom(pieces); in testCopyFromList() 548 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testConcat() local 550 Iterator<ByteString> iter = pieces.iterator(); in testConcat() 578 List<ByteString> pieces = new ArrayList<ByteString>(); in makeConcretePieces() local [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_cat_test.cc | 118 absl::string_view pieces[] = {"Hello", "Cruel", "World"}; in TEST() local 140 result = absl::StrCat(strs[1], pieces[2]); in TEST() 146 result = absl::StrCat(strs[0], ", ", pieces[2]); in TEST() 152 result = absl::StrCat(pieces[0], ", ", pieces[1], " ", pieces[2]); in TEST() 330 absl::string_view pieces[] = {"Hello", "Cruel", "World"}; in TEST() local 350 absl::StrAppend(&result, strs[1], pieces[2]); in TEST() 354 absl::StrAppend(&result, stdstrs[0], ", ", pieces[2]); in TEST() 362 absl::StrAppend(&result, pieces[0], ", ", pieces[1], " ", pieces[2]); in TEST()
|
/third_party/rust/crates/cxx/ |
D | build.rs | 26 let mut pieces = version.split('.'); in rustc_version() localVariable 27 if pieces.next() != Some("rustc 1") { in rustc_version() 30 let minor = pieces.next()?.parse().ok()?; in rustc_version()
|
/third_party/rust/crates/quote/ |
D | build.rs | 32 let mut pieces = version.split('.'); in rustc_version() localVariable 33 if pieces.next() != Some("rustc 1") { in rustc_version() 36 let minor = pieces.next()?.parse().ok()?; in rustc_version()
|
/third_party/node/deps/icu-small/source/tools/genrb/ |
D | filterrb.cpp | 55 const std::list<std::string>& ResKeyPath::pieces() const { in pieces() function in ResKeyPath 60 if (value.pieces().empty()) { in operator <<() 62 } else for (auto& key : value.pieces()) { in operator <<() 94 fRoot.applyRule(path, path.pieces().begin(), inclusionRule, status); in addRule() 111 for (auto& key : path.pieces()) { in match() 168 if (it == path.pieces().end()) { in applyRule()
|
/third_party/icu/icu4c/source/tools/genrb/ |
D | filterrb.cpp | 55 const std::list<std::string>& ResKeyPath::pieces() const { in pieces() function in ResKeyPath 60 if (value.pieces().empty()) { in operator <<() 62 } else for (auto& key : value.pieces()) { in operator <<() 94 fRoot.applyRule(path, path.pieces().begin(), inclusionRule, status); in addRule() 111 for (auto& key : path.pieces()) { in match() 168 if (it == path.pieces().end()) { in applyRule()
|
/third_party/skia/third_party/externals/icu/source/tools/genrb/ |
D | filterrb.cpp | 55 const std::list<std::string>& ResKeyPath::pieces() const { in pieces() function in ResKeyPath 60 if (value.pieces().empty()) { in operator <<() 62 } else for (auto& key : value.pieces()) { in operator <<() 94 fRoot.applyRule(path, path.pieces().begin(), inclusionRule, status); in addRule() 111 for (auto& key : path.pieces()) { in match() 168 if (it == path.pieces().end()) { in applyRule()
|
/third_party/rust/crates/serde/serde_test/ |
D | build.rs | 37 let mut pieces = version.split('.'); in rustc_minor_version() localVariable 38 if pieces.next() != Some("rustc 1") { in rustc_minor_version() 42 let next = match pieces.next() { in rustc_minor_version()
|
/third_party/rust/crates/syn/ |
D | build.rs | 44 let mut pieces = version.split('.'); in rustc_version() localVariable 45 if pieces.next() != Some("rustc 1") { in rustc_version() 48 let minor = pieces.next()?.parse().ok()?; in rustc_version()
|
/third_party/node/deps/npm/node_modules/parse-conflict-json/lib/ |
D | index.js | 38 const pieces = str.split(/[\n\r]+/g).reduce((acc, line) => { constant 67 const parent = parseJSON(pieces.parent, reviver) 68 const ours = parseJSON(pieces.ours, reviver) 69 const theirs = parseJSON(pieces.theirs, reviver)
|
/third_party/rust/crates/regex/tests/ |
D | crazy.rs | 157 let mut pieces = ones_and_zeroes(100_000); in dfa_handles_pathological_case() localVariable 158 pieces.push('1'); in dfa_handles_pathological_case() 159 pieces.push_str(&ones_and_zeroes(20)); in dfa_handles_pathological_case() 160 pieces in dfa_handles_pathological_case()
|
/third_party/rust/crates/libc/ |
D | build.rs | 132 let mut pieces = version.split('.'); in rustc_minor_nightly() localVariable 134 if pieces.next() != Some("rustc 1") { in rustc_minor_nightly() 138 let minor = pieces.next(); in rustc_minor_nightly() 145 let nightly_raw = otry!(pieces.next()).split('-').nth(1); in rustc_minor_nightly()
|
/third_party/node/deps/v8/tools/ |
D | objdump-v8 | 48 pieces = line.split(None, 3) 49 return " " + pieces[0][2:] + ":\t" + pieces[3]
|