HomeSort by relevance Sort by last modified time
    Searched full:outputstring (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/
driver-TEMPLATE.html 93 var outputString = "{";
94 outputString += '"v": "@SUITE@", ';
96 outputString += '"' + test + '":[';
98 outputString += output[i][test] + ",";
100 outputString = outputString.substring(0, outputString.length - 1);
101 outputString += "],";
103 outputString = outputString.substring(0, outputString.length - 1)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/google/
output_string.h 63 // definitions of OutputString methods -- see output_string_types.h for some
66 class OutputString : public OutputStringInterface {
68 explicit OutputString(StringClass* impl) : impl_(impl) { }
70 virtual ~OutputString() { }
72 virtual OutputString& append(const char* s, size_t n) {
98 OutputString(const OutputString&);
99 void operator=(const OutputString&);
102 // Don't allow the OutputString template to be based upon a pointer to
104 // lack any functions expected of an OutputString
    [all...]
vcencoder.h 191 OutputString<OutputType> output_string(output);
206 OutputString<OutputType> output_string(output);
221 OutputString<OutputType> output_string(output);
276 OutputString<OutputType> output_string(output);
  /external/chromium_org/sdch/open-vcdiff/src/google/
output_string.h 63 // definitions of OutputString methods -- see output_string_types.h for some
66 class OutputString : public OutputStringInterface {
68 explicit OutputString(StringClass* impl) : impl_(impl) { }
70 virtual ~OutputString() { }
72 virtual OutputString& append(const char* s, size_t n) {
98 OutputString(const OutputString&);
99 void operator=(const OutputString&);
102 // Don't allow the OutputString template to be based upon a pointer to
104 // lack any functions expected of an OutputString
    [all...]
  /external/open-vcdiff/src/google/
output_string.h 63 // definitions of OutputString methods -- see output_string_types.h for some
66 class OutputString : public OutputStringInterface {
68 explicit OutputString(StringClass* impl) : impl_(impl) { }
70 virtual ~OutputString() { }
72 virtual OutputString& append(const char* s, size_t n) {
98 OutputString(const OutputString&);
99 void operator=(const OutputString&);
102 // Don't allow the OutputString template to be based upon a pointer to
104 // lack any functions expected of an OutputString
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
output_string_crope.h 16 // Contains a class that demonstrates how to specialize OutputString for the
29 // *** OutputString interface for crope (OutputCrope)
33 void OutputString<__gnu_cxx::crope>::ReserveAdditionalBytes(
36 typedef OutputString<__gnu_cxx::crope> OutputCrope;
  /external/chromium_org/sdch/open-vcdiff/src/
output_string_crope.h 16 // Contains a class that demonstrates how to specialize OutputString for the
29 // *** OutputString interface for crope (OutputCrope)
33 void OutputString<__gnu_cxx::crope>::ReserveAdditionalBytes(
36 typedef OutputString<__gnu_cxx::crope> OutputCrope;
jsonwriter_test.cc 40 OutputString<string> output_string_;
128 OutputString<string> output_string2(&out2);
  /external/open-vcdiff/src/
output_string_crope.h 16 // Contains a class that demonstrates how to specialize OutputString for the
29 // *** OutputString interface for crope (OutputCrope)
33 void OutputString<__gnu_cxx::crope>::ReserveAdditionalBytes(
36 typedef OutputString<__gnu_cxx::crope> OutputCrope;
jsonwriter_test.cc 40 OutputString<string> output_string_;
128 OutputString<string> output_string2(&out2);
  /external/chromium_org/tools/gn/
standard_out.cc 54 void OutputString(const std::string& output, TextDecoration dec) {
92 void OutputString(const std::string& output, TextDecoration dec) {
128 OutputString(" " + line.substr(0, colon_offset), DECORATION_YELLOW);
137 OutputString(": ");
143 OutputString(line.substr(begin_bracket, first_normal - begin_bracket),
147 OutputString(line.substr(first_normal) + "\n");
163 OutputString(line.substr(0, chars_to_highlight), DECORATION_YELLOW);
164 OutputString(line.substr(chars_to_highlight) + "\n");
180 OutputString(line + "\n", dec);
command_desc.cc 73 OutputString(indent +
86 OutputString("\nDependency tree:\n");
95 OutputString("\nAll recursive dependencies:\n");
104 OutputString("\nDirect dependencies "
119 OutputString(" " + deps[i].GetUserVisibleName(toolchain_label) + "\n");
131 OutputString("\nlib_dirs\n");
134 OutputString(" " + FormatSourceDir(lib_dirs[i]) + "\n");
143 OutputString("\nlibs\n");
146 OutputString(" " + libs[i] + "\n");
152 OutputString("\nConfigs (in order applying):\n")
    [all...]
command_help.cc 24 OutputString("Commands (type \"gn help <command>\" for more details):\n");
31 OutputString(
58 OutputString("\nBuildfile functions (type \"gn help <function>\" for more "
67 OutputString(" " + sorted_functions[i] + "\n", DECORATION_YELLOW);
70 OutputString("\nBuilt-in predefined variables (type \"gn help <variable>\" "
79 OutputString("\nVariables you set in targets (type \"gn help <variable>\" "
87 OutputString("\nOther help topics:\n");
command_args.cc 88 OutputString(name.as_string(), DECORATION_YELLOW);
89 OutputString(" Default = " + value.ToString(true) + "\n");
94 OutputString(" " + location + "\n" + comment);
96 OutputString(" (Internally set)\n");
156 OutputString("\n");
err.cc 81 OutputString(highlight, DECORATION_BLUE);
160 OutputString("ERROR ", DECORATION_RED);
172 OutputString(loc_str + message_ + "\n");
179 OutputString(line + "\n", DECORATION_DIM);
186 OutputString(help_text_ + "\n");
standard_out.h 19 void OutputString(const std::string& output,
command_gen.cc 86 OutputString("Done. ", DECORATION_GREEN);
95 OutputString(stats);
scheduler.cc 127 OutputString(verb, DECORATION_YELLOW);
128 OutputString(" " + msg + "\n");
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
Phonenumber.java 241 StringBuilder outputString = new StringBuilder();
242 outputString.append("Country Code: ").append(countryCode_);
243 outputString.append(" National Number: ").append(nationalNumber_);
245 outputString.append(" Leading Zero: true");
248 outputString.append(" Extension: ").append(extension_);
251 outputString.append(" Country Code Source: ").append(countryCodeSource_);
254 outputString.append(" Preferred Domestic Carrier Code: ").
257 return outputString.toString();
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 198 String outputString = ts.testSuites.get(input).getText();
203 testRuleMethodST.setAttribute("expecting", outputString);
211 String outputString = ts.testSuites.get(input).getText();
219 outputString = normalizeTreeSpec(outputString);
222 //testRuleMethodST.setAttribute("expecting", outputString.substring(0, outputString.length()-1));
223 testRuleMethodST.setAttribute("expecting", outputString);
226 testRuleMethodST.setAttribute("expecting", outputString);
230 outputString = outputString.replaceAll("\n", "")
    [all...]
  /external/chromium_org/third_party/ocmock/OCMock/
OCMockObject.m 228 NSMutableString *outputString = [NSMutableString string];
249 [outputString appendFormat:@"\n\t%@\t%@", prefix, [currentObject description]];
252 return outputString;
  /external/chromium_org/tools/measure_page_load_time/ff_ext/content/
measure_page_load_time.js 149 var outputString = MPLT.URL + ',' + result + '\n';
150 MPLT.streamOutput.write(outputString, outputString.length);
  /external/chromium_org/third_party/icu/source/common/
utrace.c 153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
172 outputString(NULL, outBuf, outIx, capacity, indent);
226 outputString((const char *)ptrArg, outBuf, &outIx, capacity, indent);
299 outputString("*NULL* ", outBuf, &outIx, capacity, indent);
333 outputString(*ptrPtr, outBuf, &outIx, capacity, indent);
  /external/icu4c/common/
utrace.c 153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
172 outputString(NULL, outBuf, outIx, capacity, indent);
226 outputString((const char *)ptrArg, outBuf, &outIx, capacity, indent);
299 outputString("*NULL* ", outBuf, &outIx, capacity, indent);
333 outputString(*ptrPtr, outBuf, &outIx, capacity, indent);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 647 * @param outputString The String to which the character is mapped, usually
657 private boolean extraEntity(String outputString, int charToMap)
665 if (!outputString.equals("&quot;"))
669 if (!outputString.equals("&amp;"))
673 if (!outputString.equals("&lt;"))
677 if (!outputString.equals("&gt;"))
719 * @param outputString The String to map to.
729 boolean defineChar2StringMapping(String outputString, char inputChar)
732 m_charToString.put(character, outputString);
735 boolean extraMapping = extraEntity(outputString, inputChar)
    [all...]

Completed in 2065 milliseconds

1 2 3