/external/ceres-solver/examples/ |
D | nist.cc | 147 bool GetAndSplitLine(std::ifstream& ifs, std::vector<std::string>* pieces) { in GetAndSplitLine() argument 148 pieces->clear(); in GetAndSplitLine() 151 SplitStringUsingChar(std::string(buf), ' ', pieces); in GetAndSplitLine() 167 std::vector<std::string> pieces; in NISTProblem() local 169 GetAndSplitLine(ifs, &pieces); in NISTProblem() 170 const int kNumResponses = std::atoi(pieces[1].c_str()); in NISTProblem() 172 GetAndSplitLine(ifs, &pieces); in NISTProblem() 173 const int kNumPredictors = std::atoi(pieces[0].c_str()); in NISTProblem() 175 GetAndSplitLine(ifs, &pieces); in NISTProblem() 176 const int kNumObservations = std::atoi(pieces[0].c_str()); in NISTProblem() [all …]
|
/external/clang/test/SemaObjC/ |
D | property-typecheck-1.m | 72 NSMutableArray* pieces; field 76 …property (readonly) NSArray* pieces; // expected-warning {{type of property 'pieces' does not matc… property 79 - (NSMutableArray*) pieces; // expected-note 2 {{declared here}} method 93 …return container.pieces; // expected-warning {{type of property 'pieces' does not match type of ac…
|
/external/icu/icu4c/source/common/ |
D | caniter.cpp | 69 pieces(NULL), in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 88 if(pieces != NULL) { in cleanPieces() 90 if(pieces[i] != NULL) { in cleanPieces() 91 delete[] pieces[i]; in cleanPieces() 94 uprv_free(pieces); in cleanPieces() 95 pieces = NULL; in cleanPieces() 144 buffer.append(pieces[i][current[i]]); in next() 183 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *)); in setSource() 188 if (pieces == NULL || pieces_lengths == NULL || current == NULL) { in setSource() 193 pieces[0] = new UnicodeString[1]; in setSource() [all …]
|
D | ucnv_imp.h | 111 UConverterNamePieces *pieces,
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | CanonicalIterator.java | 87 for (int i = 0; i < pieces.length; ++i) { in next() 88 buffer.append(pieces[i][current[i]]); in next() 100 if (current[i] < pieces[i].length) break; // got sequence in next() 117 pieces = new String[1][]; in setSource() 119 pieces[0] = new String[]{""}; in setSource() 143 pieces = new String[segmentList.size()][]; in setSource() 145 for (i = 0; i < pieces.length; ++i) { in setSource() 147 pieces[i] = getEquivalents(segmentList.get(i)); in setSource() 233 private String[][] pieces; field in CanonicalIterator
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CanonicalIterator.java | 90 for (int i = 0; i < pieces.length; ++i) { in next() 91 buffer.append(pieces[i][current[i]]); in next() 103 if (current[i] < pieces[i].length) break; // got sequence in next() 121 pieces = new String[1][]; in setSource() 123 pieces[0] = new String[]{""}; in setSource() 147 pieces = new String[segmentList.size()][]; in setSource() 149 for (i = 0; i < pieces.length; ++i) { in setSource() 151 pieces[i] = getEquivalents(segmentList.get(i)); in setSource() 237 private String[][] pieces; field in CanonicalIterator
|
/external/autotest/client/site_tests/buffet_BasicDBusAPI/ |
D | buffet_BasicDBusAPI.py | 68 pieces = line.split('=', 1) 69 if len(pieces) != 2: 71 key = pieces[0].strip() 73 expected_version = pieces[1].strip()
|
/external/opencv3/3rdparty/jinja2/ |
D | loaders.py | 26 pieces = [] 33 pieces.append(piece) 34 return pieces 160 pieces = split_template_path(template) 162 filename = path.join(searchpath, *pieces) 222 pieces = split_template_path(template) 223 p = '/'.join((self.package_path,) + tuple(pieces))
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
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() 546 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCompositeSubstring() local 547 ByteString listString = ByteString.copyFrom(pieces); in testCompositeSubstring() 582 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testCopyFromList() local 583 ByteString listString = ByteString.copyFrom(pieces); in testCopyFromList() 595 List<ByteString> pieces = makeConcretePieces(referenceBytes); in testConcat() local 597 Iterator<ByteString> iter = pieces.iterator(); in testConcat() 696 List<ByteString> pieces = new ArrayList<ByteString>(); in makeConcretePieces() local [all …]
|
/external/autotest/client/cros/faft/utils/ |
D | saft_flashrom_util.py | 89 pieces = item.split('=') 90 if len(pieces) != 2: 92 rv[pieces[0]] = pieces[1].strip('"')
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | AnnotationUtils.java | 175 ArrayList<String> pieces = new ArrayList<String>(20); in makeSignature() local 203 pieces.add(raw.substring(at, endAt)); in makeSignature() 207 int size = pieces.size(); in makeSignature() 211 list.set(i, new CstString(pieces.get(i))); in makeSignature()
|
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/ |
D | status.js | 669 var pieces = location.hash.split(';', 2); 670 if (pieces[0].indexOf(prefix) == 0) { 671 return pieces[0].substr(prefix.length); 681 var pieces = hash.split(';', 2); 684 if (pieces[0].indexOf(prefix) == 0) { 685 pipelineId = pieces[0].substr(prefix.length); 706 if (pieces[1]) { 709 .find('.status-links>a:contains("' + pieces[1] + '")'); 836 var pieces = query.split('&'); 837 $.each(pieces, function(index, param) {
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | RopeByteString.java | 390 PieceIterator pieces = new PieceIterator(this); in asReadOnlyByteBufferList() local 391 while (pieces.hasNext()) { in asReadOnlyByteBufferList() 392 LiteralByteString byteString = pieces.next(); in asReadOnlyByteBufferList() 784 private final PieceIterator pieces; field in RopeByteString.RopeByteIterator 789 pieces = new PieceIterator(RopeByteString.this); in RopeByteIterator() 790 bytes = pieces.next().iterator(); in RopeByteIterator() 804 bytes = pieces.next().iterator(); in nextByte()
|
/external/guava/guava/src/com/google/common/net/ |
D | InternetDomainName.java | 510 final String[] pieces = domain.split(DOT_REGEX, 2); in matchesWildcardPublicSuffix() local 511 return pieces.length == 2 && PublicSuffixPatterns.UNDER.containsKey(pieces[1]); in matchesWildcardPublicSuffix()
|
/external/pdfium/xfa/src/fgas/src/crt/ |
D | fx_algorithm.cpp | 275 CFX_WideStringArray& pieces) { in FX_SeparateStringW() argument 287 pieces.Add(sub); in FX_SeparateStringW() 295 return pieces.GetSize(); in FX_SeparateStringW()
|
/external/opencv3/modules/java/generator/ |
D | gen_java.py | 722 pieces = localName.split(".") 723 if len(pieces) > 2: # <class>.<class>.<class>.<name> 724 return spaceName, ".".join(pieces[:-1]), pieces[-2], pieces[-1] 725 elif len(pieces) == 2: # <class>.<name> 726 return spaceName, pieces[0], pieces[0], pieces[1] 727 elif len(pieces) == 1: # <name> 728 return spaceName, "", "", pieces[0]
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | firmware_utils.py | 73 pieces = filename.split('-') 74 return pieces[1] if len(pieces) >= 2 else None
|
/external/llvm/test/DebugInfo/Generic/ |
D | piece-verifier.ll | 27 !1 = !DIFile(filename: "pieces.c", directory: "") 31 !5 = !DIFile(filename: "pieces.c", directory: "")
|
/external/llvm/test/DebugInfo/X86/ |
D | pieces-1.ll | 54 !1 = !DIFile(filename: "pieces.c", directory: "") 58 !5 = !DIFile(filename: "pieces.c", directory: "")
|
/external/llvm/examples/ModuleMaker/ |
D | README.txt | 5 This project is an extremely simple example of using some simple pieces of the
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | TransliterationChart.java | 153 UnicodeSet pieces = new UnicodeSet(); in main() local 160 if (UCharacter.getName(d.charAt(1)).indexOf("LENGTH") >= 0) pieces.add(d.charAt(1)); in main() 162 pw.println(pieces); in main()
|
/external/llvm/test/CodeGen/X86/ |
D | vshift_split2.ll | 3 ; Legalization example that requires splitting a large vector into smaller pieces.
|
/external/pdfium/xfa/src/fgas/include/ |
D | fx_alg.h | 20 CFX_WideStringArray& pieces);
|
/external/chromium-trace/catapult/third_party/Paste/docs/ |
D | future.txt | 9 The future of these pieces is to split them into independent packages, and refactor the internal Pa… 74 …o be refactored, and replacements exist in AuthKit and repoze.who. Some pieces might still have u…
|
/external/icu/icu4c/source/common/unicode/ |
D | caniter.h | 170 UnicodeString **pieces; variable
|