/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
H A D | Splitter.java | 40 * all, a splitter can extract adjacent substrings of a given {@linkplain 57 * splitter instance with modified behavior: <pre> {@code 69 * new splitter instance it returns instead. <pre> {@code 72 * Splitter splitter = Splitter.on('/'); 73 * splitter.trimResults(); // does nothing! 74 * return splitter.split("wrong / wrong / wrong");}</pre> 119 * Returns a splitter that uses the given single-character separator. For 124 * @return a splitter, with default settings, that recognizes that separator 131 * Returns a splitter that considers any single character matched by the 138 * @return a splitter, wit 461 iterator(Splitter splitter, CharSequence toSplit) argument 485 SplittingIterator(Splitter splitter, CharSequence toSplit) argument [all...] |
/external/guava/guava/src/com/google/common/base/ |
H A D | Splitter.java | 43 * all, a splitter can extract adjacent substrings of a given {@linkplain 60 * splitter instance with modified behavior: <pre> {@code 72 * new splitter instance it returns instead. <pre> {@code 75 * Splitter splitter = Splitter.on('/'); 76 * splitter.trimResults(); // does nothing! 77 * return splitter.split("wrong / wrong / wrong");}</pre> 122 * Returns a splitter that uses the given single-character separator. For 127 * @return a splitter, with default settings, that recognizes that separator 134 * Returns a splitter that considers any single character matched by the 141 * @return a splitter, wit 519 iterator(Splitter splitter, CharSequence toSplit) argument 543 SplittingIterator(Splitter splitter, CharSequence toSplit) argument [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
H A D | payload_splitter_unittest.cc | 163 PayloadSplitter* splitter = new PayloadSplitter; local 164 delete splitter; 174 PayloadSplitter splitter; local 175 EXPECT_EQ(PayloadSplitter::kOK, splitter.SplitRed(&packet_list)); 207 PayloadSplitter splitter; local 208 EXPECT_EQ(PayloadSplitter::kOK, splitter.SplitRed(&packet_list)); 247 PayloadSplitter splitter; local 248 EXPECT_EQ(PayloadSplitter::kOK, splitter.SplitRed(&packet_list)); 318 PayloadSplitter splitter; local 319 splitter 346 PayloadSplitter splitter; local 405 PayloadSplitter splitter; local 438 PayloadSplitter splitter; local 543 PayloadSplitter splitter; local 631 PayloadSplitter splitter; local 695 PayloadSplitter splitter; local 727 PayloadSplitter splitter; local 760 PayloadSplitter splitter; local 809 PayloadSplitter splitter; local [all...] |
/external/owasp/sanitizer/src/main/org/owasp/html/ |
H A D | HtmlLexer.java | 48 private final HtmlInputSplitter splitter; field in class:HtmlLexer 53 this.splitter = new HtmlInputSplitter(input); 80 * splitter. 226 } else if (splitter.hasNext()) { 227 return splitter.next(); 234 while (lookahead.size() <= i && splitter.hasNext()) { 235 lookahead.add(splitter.next());
|
/external/jcommander/src/main/java/com/beust/jcommander/ |
H A D | Parameter.java | 106 * What splitter to use (applicable only on fields of type <tt>List</tt>). By default, 107 * a comma separated splitter will be used. 109 Class<? extends IParameterSplitter> splitter() default CommaParameterSplitter.class;
|
H A D | JCommander.java | 1302 result = convertToList(value, converter, annotation.splitter()); 1320 * Use the splitter to split the value into multiple values and then convert 1326 IParameterSplitter splitter = splitterClass.newInstance(); 1328 for (String param : splitter.split(value)) {
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
H A D | ArgsList.java | 21 @Parameter(names = "-hp", converter = HostPortConverter.class, splitter = SemiColonSplitter.class)
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
H A D | AnalysisArguments.java | 58 splitter = ColonParameterSplitter.class) 65 splitter = ColonParameterSplitter.class)
|
/external/desugar/java/com/google/devtools/common/options/ |
H A D | Converters.java | 223 private final Splitter splitter; field in class:Converters.SeparatedOptionListConverter 228 this.splitter = Splitter.on(separator); 235 : ImmutableList.copyOf(splitter.split(input));
|
/external/guava/guava-tests/test/com/google/common/io/ |
H A D | FilesSimplifyPathTest.java | 297 Splitter splitter = Splitter.on(CharMatcher.WHITESPACE); 300 Iterator<String> iterator = splitter.split(line).iterator();
|
/external/testng/src/main/java/org/testng/ |
H A D | CommandLineArgs.java | 139 splitter = CommaParameterSplitter.class)
|
/external/python/cpython2/Lib/test/ |
H A D | test_minidom.py | 1190 splitter = doc.createComment("comment") 1191 elem.appendChild(splitter) 1198 elem.replaceChild(x, splitter) 1199 splitter = x 1204 elem.replaceChild(x, splitter) 1205 splitter = x 1209 elem.removeChild(splitter) 1228 splitter = text1.nextSibling 1229 elem.insertBefore(doc.createTextNode("b"), splitter) 1231 return doc, elem, text1, splitter, text [all...] |
/external/v8/src/runtime/ |
H A D | runtime-regexp.cc | 1409 Handle<JSReceiver> splitter; 1422 splitter = Handle<JSReceiver>::cast(splitter_obj); 1435 isolate, result, RegExpUtils::RegExpExec(isolate, splitter, string, 1453 isolate, RegExpUtils::SetLastIndex(isolate, splitter, string_index)); 1457 isolate, result, RegExpUtils::RegExpExec(isolate, splitter, string, 1468 isolate, last_index_obj, RegExpUtils::GetLastIndex(isolate, splitter));
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
H A D | SplitterTest.java | 325 * splitter's behaviour is not well defined if the char sequence it's 328 private void assertSplitterIterableIsLazy(Splitter splitter) { argument 330 Iterator<String> iterator = splitter.split(builder).iterator();
|
/external/guava/guava-tests/test/com/google/common/base/ |
H A D | SplitterTest.java | 489 * splitter's behaviour is not well defined if the char sequence it's 492 private void assertSplitterIterableIsLazy(Splitter splitter) { argument 494 Iterator<String> iterator = splitter.split(builder).iterator();
|
/external/v8/src/regexp/ |
H A D | jsregexp.cc | 4895 // The unicode range splitter categorizes given character ranges into: 4945 RegExpNode* on_success, UnicodeRangeSplitter* splitter) { 4946 ZoneList<CharacterRange>* bmp = splitter->bmp(); 4955 UnicodeRangeSplitter* splitter) { 4956 ZoneList<CharacterRange>* non_bmp = splitter->non_bmp(); 5048 UnicodeRangeSplitter* splitter) { 5049 ZoneList<CharacterRange>* lead_surrogates = splitter->lead_surrogates(); 5074 UnicodeRangeSplitter* splitter) { 5075 ZoneList<CharacterRange>* trail_surrogates = splitter->trail_surrogates(); 5168 UnicodeRangeSplitter splitter(zon 4944 AddBmpCharacters(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument 4953 AddNonBmpSurrogatePairs(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument 5046 AddLoneLeadSurrogates(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument 5072 AddLoneTrailSurrogates(RegExpCompiler* compiler, ChoiceNode* result, RegExpNode* on_success, UnicodeRangeSplitter* splitter) argument [all...] |
/external/freetype/src/raster/ |
H A D | ftraster.c | 1180 /* splitter :: The function to split Bezier arcs. */ 1191 TSplitter splitter, 1270 splitter( arc ); 1313 /* splitter :: The function to split Bezier arcs. */ 1324 TSplitter splitter, 1340 result = Bezier_Up( RAS_VARS degree, splitter, -maxy, -miny ); 1190 Bezier_Up( RAS_ARGS Int degree, TSplitter splitter, Long miny, Long maxy ) argument 1323 Bezier_Down( RAS_ARGS Int degree, TSplitter splitter, Long miny, Long maxy ) argument
|
/external/pdfium/third_party/freetype/src/raster/ |
H A D | ftraster.c | 1172 /* splitter :: The function to split Bezier arcs. */ 1183 TSplitter splitter, 1262 splitter( arc ); 1305 /* splitter :: The function to split Bezier arcs. */ 1316 TSplitter splitter, 1332 result = Bezier_Up( RAS_VARS degree, splitter, -maxy, -miny ); 1182 Bezier_Up( RAS_ARGS Int degree, TSplitter splitter, Long miny, Long maxy ) argument 1315 Bezier_Down( RAS_ARGS Int degree, TSplitter splitter, Long miny, Long maxy ) argument
|
/external/guice/lib/build/ |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
H A D | bnd-0.0.384.jar | META-INF/MANIFEST.MF LICENSE OSGI-OPT/ OSGI-OPT/bnd.bnd OSGI-OPT/ ... |
/external/jsr330/lib/ |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
/external/owasp/sanitizer/distrib/lib/ |
H A D | owasp-java-html-sanitizer.jar | META-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ... |
/external/slf4j/integration/lib/ |
H A D | junit-3.8.1.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
H A D | junit-3.8.1.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
/external/guice/lib/ |
H A D | guava-16.0.1.jar | META-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ... |