Searched defs:output (Results 201 - 225 of 1376) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/frame_host/
H A Dnavigation_entry_impl_unittest.cc228 base::string16 output; local
231 EXPECT_FALSE(entry1_->GetExtraData("non_existent_key", &output));
232 EXPECT_EQ(ASCIIToUTF16(""), output);
233 EXPECT_TRUE(entry1_->GetExtraData("search_terms", &output));
234 EXPECT_EQ(test_data, output);
237 // Content in |output| is not modified if data is not present at the key.
238 EXPECT_FALSE(entry1_->GetExtraData("search_terms", &output));
239 EXPECT_EQ(test_data, output);
/external/chromium_org/content/browser/
H A Dprofiler_message_filter.cc48 void ProfilerMessageFilter::OnTcmallocStats(const std::string& output) { argument
50 peer_pid(), process_type_, output); local
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_browser_font_singleton_host.cc71 std::string output; local
86 output.append(font_name);
87 output.push_back(0);
91 PpapiPluginMsg_BrowserFontSingleton_GetFontFamiliesReply(output);
/external/chromium_org/crypto/
H A Drsa_private_key_unittest.cc188 std::vector<uint8> output; local
189 ASSERT_TRUE(key->ExportPublicKey(&output));
192 memcmp(expected_public_key_info, &output.front(), output.size()) == 0);
/external/chromium_org/extensions/browser/api/bluetooth/
H A Dbluetooth_api_utils.cc21 bluetooth::VendorIdSource* output) {
24 *output = bluetooth::VENDOR_ID_SOURCE_NONE;
27 *output = bluetooth::VENDOR_ID_SOURCE_BLUETOOTH;
30 *output = bluetooth::VENDOR_ID_SOURCE_USB;
39 bluetooth::DeviceType* output) {
42 *output = bluetooth::DEVICE_TYPE_NONE;
45 *output = bluetooth::DEVICE_TYPE_COMPUTER;
48 *output = bluetooth::DEVICE_TYPE_PHONE;
51 *output = bluetooth::DEVICE_TYPE_MODEM;
54 *output
20 ConvertVendorIDSourceToApi(const BluetoothDevice::VendorIDSource& input, bluetooth::VendorIdSource* output) argument
38 ConvertDeviceTypeToApi(const BluetoothDevice::DeviceType& input, bluetooth::DeviceType* output) argument
[all...]
/external/chromium_org/extensions/browser/api/web_request/
H A Dform_data_parser_unittest.cc27 // On success, returns true and the parsed |output|, else false.
28 // Parsed |output| has names on even positions (0, 2, ...), values on odd ones.
31 std::vector<std::string>* output) {
32 DCHECK(output);
33 output->clear();
42 output->push_back(result.name());
43 output->push_back(result.value());
54 std::vector<std::string> output; local
63 output.push_back(result.name());
64 output
29 RunParser(const std::string& content_type_header, const std::vector<const base::StringPiece*>& bytes, std::vector<std::string>* output) argument
159 std::vector<std::string> output; local
243 std::vector<std::string> output; local
[all...]
/external/chromium_org/extensions/browser/value_store/
H A Dvalue_store_frontend_unittest.cc46 bool Get(const std::string& key, scoped_ptr<base::Value>* output) { argument
48 base::Unretained(this), output));
50 return !!output->get();
54 void GetAndWait(scoped_ptr<base::Value>* output, argument
56 *output = result.Pass();
/external/chromium_org/gpu/gles2_conform_support/
H A Dgles2_conform_test.cc72 std::string output; local
73 bool success = base::GetAppOutput(cmdline, &output);
75 size_t success_index = output.find("Conformance PASSED all");
76 size_t failed_index = output.find("FAILED");
81 LOG(ERROR) << output;
/external/chromium_org/media/filters/
H A Dh264_to_annex_b_bitstream_converter_unittest.cc272 scoped_ptr<uint8[]> output; local
284 output.reset(new uint8[config_size]);
285 EXPECT_TRUE(output.get() != NULL);
288 output.get(),
297 output.reset(new uint8[output_size]);
298 EXPECT_TRUE(output.get() != NULL);
306 output.get(),
331 scoped_ptr<uint8[]> output; local
343 output.reset(new uint8[config_size]);
344 EXPECT_TRUE(output
381 scoped_ptr<uint8[]> output; local
460 scoped_ptr<uint8[]> output; local
[all...]
/external/chromium_org/mojo/services/html_viewer/
H A Dwebcookiejar_impl.cc13 void CopyBool(bool* output, bool input) { argument
14 *output = input;
17 void CopyString(String* output, const String& input) { argument
18 *output = input;
/external/chromium_org/net/spdy/
H A Dhpack_input_stream_test.cc520 string output, input(a2b_hex(kEncodedHuffmanFixture)); local
524 EXPECT_TRUE(input_stream.DecodeNextHuffmanString(huffman_table_, &output));
525 EXPECT_EQ(kDecodedHuffmanFixture, output);
530 string output, input(a2b_hex(kEncodedHuffmanFixture)); local
536 EXPECT_FALSE(input_stream.DecodeNextHuffmanString(huffman_table_, &output));
540 string output, input(a2b_hex(kEncodedHuffmanFixture)); local
546 EXPECT_FALSE(input_stream.DecodeNextHuffmanString(huffman_table_, &output));
H A Dhpack_output_stream.cc68 void HpackOutputStream::TakeString(string* output) { argument
72 buffer_.swap(*output);
/external/chromium_org/net/tools/flip_server/
H A Dloadtime_measurement.h41 void ProcessRequest(const std::string& uri, std::string& output) { argument
45 base::ReadFileToString(pageload_html_file_, &output);
51 output.append(buffer, strlen(buffer));
59 output.append(urls_[num]);
71 output.append("OK");
84 output.append("OK");
/external/chromium_org/ppapi/proxy/
H A Dflash_font_file_resource.cc35 void* output,
57 // If we are going to copy the data into |output|, it must be big enough.
58 if (output && *output_length < contents->size())
62 if (output)
63 memcpy(output, contents->c_str(), *output_length);
34 GetFontTable(uint32_t table, void* output, uint32_t* output_length) argument
H A Dnetwork_list_resource.cc53 const PP_ArrayOutput& output) {
54 ArrayWriter writer(output);
52 GetIpAddresses(uint32_t index, const PP_ArrayOutput& output) argument
H A Dproxy_array_output.h24 // scoped_refptr<RefCountedArrayOutputAdapter<PP_Resource> > output) {
25 // // Vector is in output->output().
29 // base::scoped_refptr<RefCountedArrayOutputAdapter<PP_Resource> > output;
31 // callback = factory.NewOptionalCallback(&OnCallbackComplete, output);
32 // DoSomethingAsynchronously(output->pp_array_output(),
38 // Non-templatized base class for the array output conversion. It provides the
74 // write into an output parameter supplied by the plugin. If the element size
87 ArrayOutputAdapter(std::vector<T>* output) : output_(output) {} argument
92 set_output(std::vector<T>* output) argument
116 std::vector<T>& output() { return output_storage_; } function in class:ppapi::proxy::ArrayOutputAdapterWithStorage
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_file_chooser_dev_thunk.cc53 struct PP_ArrayOutput output,
59 return enter.SetResult(enter.object()->Show(output, enter.callback()));
52 Show(PP_Resource chooser, struct PP_ArrayOutput output, struct PP_CompletionCallback callback) argument
/external/chromium_org/remoting/host/native_messaging/
H A Dpipe_messaging_channel.cc48 base::File output)
51 DuplicatePlatformFile(output.Pass()))),
46 PipeMessagingChannel( base::File input, base::File output) argument
/external/chromium_org/sdch/open-vcdiff/src/google/
H A Dvcdecoder.h31 // transmission, it can be passed to DecodeChunk(), which will then output
82 bool DecodeChunk(const char* data, size_t len, OutputType* output) { argument
83 OutputString<OutputType> output_string(output);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DChannelMergerNode.cpp66 AudioNodeOutput* output = this->output(0); local
67 ASSERT(output);
68 ASSERT_UNUSED(framesToProcess, framesToProcess == output->bus()->length());
70 // Output bus not updated yet, so just output silence.
71 if (m_desiredNumberOfOutputChannels != output->numberOfChannels()) {
72 output->bus()->zero();
76 // Merge all the channels from all the inputs into one output.
78 unsigned maxAllowedOutputChannels = output->numberOfChannels();
86 // output channel
123 AudioNodeOutput* output = this->output(0); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Ddct.c14 void vp8_short_fdct4x4_c(short *input, short *output, int pitch) argument
19 short *op = output;
38 ip = output;
39 op = output;
58 void vp8_short_fdct8x4_c(short *input, short *output, int pitch) argument
60 vp8_short_fdct4x4_c(input, output, pitch);
61 vp8_short_fdct4x4_c(input + 4, output + 16, pitch);
64 void vp8_short_walsh4x4_c(short *input, short *output, int pitch) argument
70 short *op = output;
88 ip = output;
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dcode_generator.cc54 vector<const FileDescriptor*>* output) {
60 vector<pair<string, string> >* output) {
74 output->push_back(value);
53 ListParsedFiles( vector<const FileDescriptor*>* output) argument
59 ParseGeneratorParameter(const string& text, vector<pair<string, string> >* output) argument
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_database.h70 // Find a file by file name. Fills in in *output and returns true if found.
71 // Otherwise, returns false, leaving the contents of *output undefined.
73 FileDescriptorProto* output) = 0;
76 // If found, fills in *output and returns true, otherwise returns false
77 // and leaves *output undefined.
79 FileDescriptorProto* output) = 0;
82 // with the given field number. If found, fills in *output and returns true,
83 // otherwise returns false and leaves *output undefined. containing_type
87 FileDescriptorProto* output) = 0;
90 // extendee_type, and appends them to output i
99 FindAllExtensionNumbers(const string& extendee_type, vector<int>* output) argument
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkPDFRasterizer.cpp29 bool SkPopplerRasterizePDF(SkStream* pdf, SkBitmap* output) { argument
76 output->swap(bitmap);
83 bool SkNativeRasterizePDF(SkStream* pdf, SkBitmap* output) { argument
84 return SkPDFNativeRenderToBitmap(pdf, output);
/external/chromium_org/third_party/webrtc/common_audio/
H A Dfir_filter_unittest.cc30 const float* output,
33 output,
39 float output[kInputLength]; local
42 filter->Filter(kInput, kInputLength, output);
44 VerifyOutput(kInput, output, kInputLength);
49 float output[kInputLength]; local
52 filter->Filter(kInput, kInputLength, output);
54 EXPECT_FLOAT_EQ(5.f, output[0]);
55 EXPECT_FLOAT_EQ(20.f, output[3]);
56 EXPECT_FLOAT_EQ(25.f, output[
29 VerifyOutput(const float* expected_output, const float* output, size_t length) argument
62 float output[kInputLength]; local
75 float output[kInputLength]; local
88 float output[kInputLength]; local
105 float output[kInputLength]; local
161 float output[kConstantInputLength]; local
180 float output[kHighFrequencyInputLength]; local
191 float output[kCoefficientsLength]; local
[all...]

Completed in 521 milliseconds

1234567891011>>