Home
last modified time | relevance | path

Searched refs:pieces (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/ceres-solver/examples/
Dnist.cc147 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/
Dproperty-typecheck-1.m72 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/
Dcaniter.cpp69 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 …]
Ducnv_imp.h111 UConverterNamePieces *pieces,
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCanonicalIterator.java87 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/
DCanonicalIterator.java90 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/
Dbuffet_BasicDBusAPI.py68 pieces = line.split('=', 1)
69 if len(pieces) != 2:
71 key = pieces[0].strip()
73 expected_version = pieces[1].strip()
/external/opencv3/3rdparty/jinja2/
Dloaders.py26 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/
DByteStringTest.java149 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/
Dsaft_flashrom_util.py89 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/
DAnnotationUtils.java175 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/
Dstatus.js669 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/
DRopeByteString.java390 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/
DInternetDomainName.java510 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/
Dfx_algorithm.cpp275 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/
Dgen_java.py722 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/
Dfirmware_utils.py73 pieces = filename.split('-')
74 return pieces[1] if len(pieces) >= 2 else None
/external/llvm/test/DebugInfo/Generic/
Dpiece-verifier.ll27 !1 = !DIFile(filename: "pieces.c", directory: "")
31 !5 = !DIFile(filename: "pieces.c", directory: "")
/external/llvm/test/DebugInfo/X86/
Dpieces-1.ll54 !1 = !DIFile(filename: "pieces.c", directory: "")
58 !5 = !DIFile(filename: "pieces.c", directory: "")
/external/llvm/examples/ModuleMaker/
DREADME.txt5 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/
DTransliterationChart.java153 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/
Dvshift_split2.ll3 ; Legalization example that requires splitting a large vector into smaller pieces.
/external/pdfium/xfa/src/fgas/include/
Dfx_alg.h20 CFX_WideStringArray& pieces);
/external/chromium-trace/catapult/third_party/Paste/docs/
Dfuture.txt9 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/
Dcaniter.h170 UnicodeString **pieces; variable

1234567891011