Searched refs:output_string (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/sdch/open-vcdiff/src/google/
H A Dvcencoder.h21 #include "google/output_string.h"
115 // string output_string;
117 // if (!v.StartEncoding(&output_string)) {
121 // Process(output_string.data(), output_string.size());
122 // output_string.clear();
124 // if (!v.EncodeChunk(data_buf, data_len, &output_string)) {
128 // // The encoding is appended to output_string at each call,
129 // // so clear output_string once its contents have been processed.
130 // Process(output_string
[all...]
H A Dvcdecoder.h21 #include "google/output_string.h"
38 // if (!v.DecodeChunk(data, len, &output_string)) {
42 // process(output_string); // might have no new data, though
68 // they are appended to output_string.
73 // Note: we *append*, so the old contents of output_string stick around.
77 // output_string is guaranteed to be resized no more than once for each
83 OutputString<OutputType> output_string(output);
84 return DecodeChunkToInterface(data, len, &output_string);
88 OutputStringInterface* output_string);
161 OutputString<OutputType> output_string(targe
[all...]
/external/open-vcdiff/src/google/
H A Dvcencoder.h21 #include "google/output_string.h"
115 // string output_string;
117 // if (!v.StartEncoding(&output_string)) {
121 // Process(output_string.data(), output_string.size());
122 // output_string.clear();
124 // if (!v.EncodeChunk(data_buf, data_len, &output_string)) {
128 // // The encoding is appended to output_string at each call,
129 // // so clear output_string once its contents have been processed.
130 // Process(output_string
[all...]
H A Dvcdecoder.h21 #include "google/output_string.h"
38 // if (!v.DecodeChunk(data, len, &output_string)) {
42 // process(output_string); // might have no new data, though
68 // they are appended to output_string.
73 // Note: we *append*, so the old contents of output_string stick around.
77 // output_string is guaranteed to be resized no more than once for each
83 OutputString<OutputType> output_string(output);
84 return DecodeChunkToInterface(data, len, &output_string);
88 OutputStringInterface* output_string);
161 OutputString<OutputType> output_string(targe
[all...]
/external/chromium/sdch/open-vcdiff/src/google/
H A Dvcencoder.h21 #include "google/output_string.h"
145 // string output_string;
147 // if (!v.StartEncoding(&output_string)) {
151 // Process(output_string.data(), output_string.size());
152 // output_string.clear();
154 // if (!v.EncodeChunk(data_buf, data_len, &output_string)) {
158 // // The encoding is appended to output_string at each call,
159 // // so clear output_string once its contents have been processed.
160 // Process(output_string
[all...]
H A Dvcdecoder.h21 #include "google/output_string.h"
38 // if (!v.DecodeChunk(data, len, &output_string)) {
42 // process(output_string); // might have no new data, though
68 // they are appended to output_string.
73 // Note: we *append*, so the old contents of output_string stick around.
77 // output_string is guaranteed to be resized no more than once for each
83 OutputString<OutputType> output_string(output);
84 return DecodeChunkToInterface(data, len, &output_string);
88 OutputStringInterface* output_string);
161 OutputString<OutputType> output_string(targe
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dname_value_pairs_parser.cc70 std::string output_string; local
73 if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
77 TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string);
78 AddNameValuePair(key, output_string);
88 std::string output_string; local
91 if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
95 if (!ParseNameValuePairs(output_string, eq, delim)) {
/external/chromium_org/chromeos/system/
H A Dname_value_pairs_parser.cc112 std::string output_string; local
113 if (!GetToolOutput(argc, argv, output_string))
116 TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string);
117 AddNameValuePair(key, output_string);
140 std::string output_string; local
141 if (!GetToolOutput(argc, argv, output_string))
145 output_string, eq, delim, comment_delim);
/external/chromium/sdch/open-vcdiff/src/
H A Dencodetable_test.cc27 #include "google/output_string.h"
45 output_string(&out),
159 OutputString<string> output_string; member in class:open_vcdiff::__anon3272::CodeTableWriterTest
197 standard_writer.Output(&output_string);
203 standard_writer.Output(&output_string);
210 interleaved_writer.Output(&output_string);
215 exercise_writer.Output(&output_string);
224 standard_writer.Output(&output_string);
243 exercise_writer.Output(&output_string);
262 standard_writer.Output(&output_string);
[all...]
H A Dvarint_bigendian.h110 // Appends the varint representation of "value" to output_string.
113 OutputStringInterface* output_string);
H A Dvarint_bigendian.cc22 #include "google/output_string.h"
102 OutputStringInterface* output_string) {
105 output_string->append(&varint_buf[kMaxBytes - length], length);
100 AppendToOutputString( SignedIntegerType value, OutputStringInterface* output_string) argument
/external/chromium_org/sdch/open-vcdiff/src/
H A Dencodetable_test.cc26 #include "google/output_string.h"
44 output_string(&out),
143 OutputString<string> output_string; member in class:open_vcdiff::__anon10660::CodeTableWriterTest
181 standard_writer.Output(&output_string);
187 standard_writer.Output(&output_string);
194 interleaved_writer.Output(&output_string);
199 exercise_writer.Output(&output_string);
206 standard_writer.Output(&output_string);
224 exercise_writer.Output(&output_string);
242 standard_writer.Output(&output_string);
[all...]
H A Dvarint_bigendian.h110 // Appends the varint representation of "value" to output_string.
113 OutputStringInterface* output_string);
H A Dvarint_bigendian.cc22 #include "google/output_string.h"
102 OutputStringInterface* output_string) {
105 output_string->append(&varint_buf[kMaxBytes - length], length);
100 AppendToOutputString( SignedIntegerType value, OutputStringInterface* output_string) argument
H A Dvcdecoder.cc43 #include "google/output_string.h"
339 OutputStringInterface* output_string);
515 // copies from decoded_target_ into output_string all the data that
518 void AppendNewOutputText(OutputStringInterface* output_string);
520 // Appends to output_string the portion of decoded_target_ that has
525 void FlushDecodedTarget(OutputStringInterface* output_string);
792 OutputString<string> output_string(&custom_code_table_string_);
795 &output_string)) {
825 OutputStringInterface* output_string) {
826 output_string
824 FlushDecodedTarget( OutputStringInterface* output_string) argument
834 AppendNewOutputText( OutputStringInterface* output_string) argument
854 DecodeChunk( const char* data, size_t len, OutputStringInterface* output_string) argument
1377 DecodeChunkToInterface( const char* data, size_t len, OutputStringInterface* output_string) argument
[all...]
/external/open-vcdiff/src/
H A Dencodetable_test.cc26 #include "google/output_string.h"
44 output_string(&out),
143 OutputString<string> output_string; member in class:open_vcdiff::__anon24291::CodeTableWriterTest
181 standard_writer.Output(&output_string);
187 standard_writer.Output(&output_string);
194 interleaved_writer.Output(&output_string);
199 exercise_writer.Output(&output_string);
206 standard_writer.Output(&output_string);
224 exercise_writer.Output(&output_string);
242 standard_writer.Output(&output_string);
[all...]
H A Dvarint_bigendian.h110 // Appends the varint representation of "value" to output_string.
113 OutputStringInterface* output_string);
H A Dvarint_bigendian.cc22 #include "google/output_string.h"
102 OutputStringInterface* output_string) {
105 output_string->append(&varint_buf[kMaxBytes - length], length);
100 AppendToOutputString( SignedIntegerType value, OutputStringInterface* output_string) argument
H A Dvcdecoder.cc43 #include "google/output_string.h"
339 OutputStringInterface* output_string);
515 // copies from decoded_target_ into output_string all the data that
518 void AppendNewOutputText(OutputStringInterface* output_string);
520 // Appends to output_string the portion of decoded_target_ that has
525 void FlushDecodedTarget(OutputStringInterface* output_string);
792 OutputString<string> output_string(&custom_code_table_string_);
795 &output_string)) {
825 OutputStringInterface* output_string) {
826 output_string
824 FlushDecodedTarget( OutputStringInterface* output_string) argument
834 AppendNewOutputText( OutputStringInterface* output_string) argument
854 DecodeChunk( const char* data, size_t len, OutputStringInterface* output_string) argument
1377 DecodeChunkToInterface( const char* data, size_t len, OutputStringInterface* output_string) argument
[all...]
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_unittest.cc55 string16 output_string; local
58 EXPECT_TRUE(data2.GetString(&output_string));
59 EXPECT_EQ(url_spec, UTF16ToUTF8(output_string));
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck_worditerator.h154 base::string16* output_string) const;
H A Dspellcheck_worditerator.cc410 base::string16* output_string) const {
428 attribute_->OutputChar(c, output_string);
430 return !output_string->empty();
/external/chromium/googleurl/src/
H A Durl_util_unittest.cc127 std::string output_string; local
128 url_canon::StdStringCanonOutput output(&output_string);
135 return output_string;
/external/chromium_org/url/
H A Durl_util_unittest.cc102 std::string output_string; local
103 url_canon::StdStringCanonOutput output(&output_string);
110 return output_string;
/external/chromium_org/ppapi/tests/extensions/socket/
H A Dtest_socket.cc364 std::string output_string = ConvertFromArrayBuffer(&data); local
365 if (output_string != kMulticastMessage) {
367 output_string);
576 std::string output_string = ConvertFromArrayBuffer(&data); local
578 if (output_string.size() != prefix_len + kReceiveContentsSuffixSize ||
579 output_string.compare(0, prefix_len, kReceiveContentsPrefix) != 0) {
581 output_string);

Completed in 474 milliseconds

12