HomeSort by relevance Sort by last modified time
    Searched full:separator (Results 126 - 150 of 6379) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava/src/com/google/common/base/
Joiner.java 36 * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns
68 * Returns a joiner which automatically places {@code separator} between consecutive elements.
70 public static Joiner on(String separator) {
71 return new Joiner(separator);
75 * Returns a joiner which automatically places {@code separator} between consecutive elements.
77 public static Joiner on(char separator) {
78 return new Joiner(String.valueOf(separator));
81 private final String separator; field in class:Joiner
83 private Joiner(String separator) {
84 this.separator = checkNotNull(separator)
    [all...]
  /external/brotli/c/include/brotli/
decode.h 63 #define BROTLI_DECODER_ERROR_CODES_LIST(BROTLI_ERROR_CODE, SEPARATOR) \
64 BROTLI_ERROR_CODE(_, NO_ERROR, 0) SEPARATOR \
66 BROTLI_ERROR_CODE(_, SUCCESS, 1) SEPARATOR \
67 BROTLI_ERROR_CODE(_, NEEDS_MORE_INPUT, 2) SEPARATOR \
68 BROTLI_ERROR_CODE(_, NEEDS_MORE_OUTPUT, 3) SEPARATOR \
71 BROTLI_ERROR_CODE(_ERROR_FORMAT_, EXUBERANT_NIBBLE, -1) SEPARATOR \
72 BROTLI_ERROR_CODE(_ERROR_FORMAT_, RESERVED, -2) SEPARATOR \
73 BROTLI_ERROR_CODE(_ERROR_FORMAT_, EXUBERANT_META_NIBBLE, -3) SEPARATOR \
74 BROTLI_ERROR_CODE(_ERROR_FORMAT_, SIMPLE_HUFFMAN_ALPHABET, -4) SEPARATOR \
75 BROTLI_ERROR_CODE(_ERROR_FORMAT_, SIMPLE_HUFFMAN_SAME, -5) SEPARATOR \
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
dot.stg 36 <decisionRanks; separator="\n">
37 <states; separator="\n">
38 <edges; separator="\n">
45 <decisionRanks; separator="\n">
46 <states; separator="\n">
47 <edges; separator="\n">
52 {rank=same; rankdir=TB; <states; separator="; ">}
  /external/python/cpython3/Lib/test/test_email/
test_parser.py 49 "File-Separator: not\x1Cbroken\r\n"
50 "Group-Separator: not\x1Dbroken\r\n"
51 "Record-Separator: not\x1Ebroken\r\n"
52 "Line-Separator: not\u2028broken\r\n"
53 "Paragraph-Separator: not\u2029broken\r\n"
62 ("File-Separator", "not\x1Cbroken"),
63 ("Group-Separator", "not\x1Dbroken"),
64 ("Record-Separator", "not\x1Ebroken"),
65 ("Line-Separator", "not\u2028broken"),
66 ("Paragraph-Separator", "not\u2029broken")
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
DoPrivilegedBenchmark.java 25 String lineSeparator = System.getProperty("line.separator");
33 lineSeparator = System.getProperty("line.separator");
37 return System.getProperty("line.separator");
48 return System.getProperty("line.separator");
55 final PrivilegedAction<String> action = new ReusableAction("line.separator");
  /external/guava/guava-tests/test/com/google/common/io/
CharSinkTester.java 107 String separator = System.getProperty("line.separator"); local
110 assertContainsExpectedLines(separator);
114 String separator = "\r\n"; local
115 sink.writeLines(lines, separator);
117 assertContainsExpectedLines(separator);
124 private void assertContainsExpectedLines(String separator) throws IOException {
127 : Joiner.on(separator).join(expectedLines);
130 expected += separator;
  /external/libxkbcommon/xkbcommon/test/data/symbols/
kpdl 2 // It was probably originally meant to be a decimal separator.
4 // SI separator "," but a "." (since then the USA managed to f-up the SI
23 key <KPDL> { [ KP_Delete, KP_Decimal ] }; // <delete> <separator>
34 key <KPDL> { [ KP_Delete, KP_Separator ] }; // <delete> <separator>
58 // Comma <KPDL>, what most non anglo-saxon people consider the real separator
88 // punctuation, comma as a thousands separator and then semi-colon as
89 // the list separator. Of these, dot and semi-colon is most important
92 // general separator may in fact be preferred to avoid ambiguities
93 // in data files. Most times a decimal separator is hard-coded, it
  /external/ltp/testcases/kernel/fs/doio/
string_to_tokens.c 42 * int string_to_tokens(arg_string, arg_array, array_size, separator)
46 * char *separator;
56 * the 'separator' separated tokens into the elements of 'arg_array'.
64 * This function returns the number of 'separator' separated tokens that
66 * If 'arg_array' or 'separator' is NULL or 'array_size' is less than 2, -1 is returned.
81 char *separator)
86 if (arg_array == NULL || array_size <= 1 || separator == NULL)
93 if ((arg_array[num_toks] = strtok(arg_string, separator)) == NULL) {
98 if ((arg_array[num_toks] = strtok(NULL, separator)) == NULL)
  /external/skia/src/sksl/lex/
NFAState.h 97 const char* separator = ""; local
99 result += separator;
101 separator = ", ";
108 const char* separator = ""; local
110 result += separator;
112 separator = ", ";
119 const char* separator = ""; local
121 result += separator;
123 separator = ", ";
  /external/skqp/src/sksl/lex/
NFAState.h 97 const char* separator = ""; local
99 result += separator;
101 separator = ", ";
108 const char* separator = ""; local
110 result += separator;
112 separator = ", ";
119 const char* separator = ""; local
121 result += separator;
123 separator = ", ";
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Vector3DFormat.java 32 * <p>The prefix and suffix "{" and "}" and the separator "; " can be replaced by
35 * or separator specifications. So even if the default separator does include a space
54 /** The default separator: ", ". */
63 /** Separator. */
64 private final String separator; field in class:Vector3DFormat
72 /** Trimmed separator. */
80 * <p>The instance uses the default prefix, suffix and separator:
96 * Create an instance with custom prefix, suffix and separator.
99 * @param separator separator to use instead of the default ";
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealVectorFormat.java 34 * <p>The prefix and suffix "{" and "}" and the separator "; " can be replaced by
37 * or separator specifications. So even if the default separator does include a space
57 /** The default separator: ", ". */
66 /** Separator. */
67 private final String separator; field in class:RealVectorFormat
75 /** Trimmed separator. */
83 * <p>The instance uses the default prefix, suffix and separator:
99 * Create an instance with custom prefix, suffix and separator.
102 * @param separator separator to use instead of the default ";
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
TextUtil.java 60 * If stringBuilder already has content, separator is prepended to create a separator between
64 * @param separator The separator to add if there is already text, typically "," or "\n"
67 final String separator) {
69 stringBuilder.append(separator);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
AST.stg 24 :{int |tree_for_<it.label.text> = nil}; separator="\n">
26 :{int |stream_<it> = ANTLR3::AST::RewriteRule<rewriteElementType>Stream.new( @adaptor, "token <it>" )}; separator="\n">
28 :{int |stream_<it> = ANTLR3::AST::RewriteRuleSubtreeStream.new( @adaptor, "rule <it>" )}; separator="\n">
90 # elements: <referencedElementsDeep; separator=", ">
91 # token labels: <referencedTokenLabels; separator=", ">
92 # rule labels: <referencedRuleLabels; separator=", ">
93 # token list labels: <referencedTokenListLabels; separator=", ">
94 # rule list labels: <referencedRuleListLabels; separator=", ">
95 # wildcard labels: <[referencedWildcardLabels,referencedWildcardListLabels]; separator=", ">
102 <rest(alts):{a| els<rewriteAltRest(a)>}; anchor, separator="\n\n"
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
DecimalFormatProperties.java 33 * decimal-separator %char; "."
34 * grouping-separator %char; ","
42 * pattern-separator %char; ";"
132 * Set the "decimal-separator" attribute.
133 * decimal-separator specifies the character used for the decimal sign;
136 * @param ds Character to set as decimal separator
144 * Get the "decimal-separator" attribute.
145 * decimal-separator specifies the character used for the decimal sign;
148 * @return the character to use as decimal separator
156 * Set the "grouping-separator" attribute
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Scripts/LauterbachT32/
EFI.CMM 21 separator
23 separator
T32.CMM 32 separator
36 separator
40 separator
44 separator
  /external/sonivox/docs/JET_Programming_Manual_files/
header.htm 19 <div style='mso-element:footnote-separator' id=fs>
21 <p class=MsoNormal><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
29 <div style='mso-element:footnote-continuation-separator' id=fcs>
31 <p class=MsoNormal><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
39 <div style='mso-element:endnote-separator' id=es>
41 <p class=MsoNormal><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
49 <div style='mso-element:endnote-continuation-separator' id=ecs>
51 <p class=MsoNormal><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
  /external/testng/src/test/java/test/yaml/
YamlTest.java 34 new Parser(getPathToResource("yaml" + File.separator + name + ".yaml")).parse();
36 new Parser(getPathToResource("yaml" + File.separator + name + ".xml")).parse();
  /frameworks/compile/slang/
os_sep.h 21 /* Define the default path separator for the platform. */
27 /* Define the default path separator for the platform. */
  /prebuilts/go/darwin-x86/src/cmd/go/internal/str/
path.go 27 if prefix != "" && prefix[len(prefix)-1] == filepath.Separator {
30 return s[len(prefix)] == filepath.Separator && s[:len(prefix)] == prefix
  /prebuilts/go/linux-x86/src/cmd/go/internal/str/
path.go 27 if prefix != "" && prefix[len(prefix)-1] == filepath.Separator {
30 return s[len(prefix)] == filepath.Separator && s[:len(prefix)] == prefix
  /cts/tests/backup/src/android/backup/cts/
FullBackupQuotaTest.java 39 String separator = markLogcat(); local
45 waitForLogcat(TIMEOUT_SECONDS,separator,
62 String separator = markLogcat(); local
64 waitForLogcat(TIMEOUT_SECONDS,separator,
KeyValueQuotaTest.java 39 String separator = markLogcat(); local
45 waitForLogcat(TIMEOUT_SECONDS, separator,
56 String separator = markLogcat(); local
58 waitForLogcat(TIMEOUT_SECONDS, separator,
  /external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/swingui/
gunit.stg 14 <it.testCases: testCase(); separator="\n\n">

Completed in 1404 milliseconds

1 2 3 4 56 7 8 91011>>