Searched defs:input (Results 226 - 250 of 1679) sorted by relevance

1234567891011>>

/external/chromium_org/ipc/
H A Dipc_message_unittest.cc30 base::ListValue input; local
31 input.Set(0, new base::FundamentalValue(42.42));
32 input.Set(1, new base::StringValue("forty"));
33 input.Set(2, base::Value::CreateNullValue());
36 IPC::WriteParam(&msg, input);
42 EXPECT_TRUE(input.Equals(&output));
52 base::DictionaryValue input; local
53 input.Set("null", base::Value::CreateNullValue());
54 input.Set("bool", new base::FundamentalValue(true));
55 input
[all...]
/external/chromium_org/net/base/
H A Dnet_log_logger_unittest.cc37 std::string input; local
38 ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
41 scoped_ptr<base::Value> root(reader.ReadToValue(input));
69 std::string input; local
70 ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
73 scoped_ptr<base::Value> root(reader.ReadToValue(input));
104 std::string input; local
105 ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
108 scoped_ptr<base::Value> root(reader.ReadToValue(input));
/external/chromium_org/net/cert/
H A Dx509_util_unittest.cc165 std::vector<uint8> input; local
166 input.resize(sizeof(private_key_info));
167 memcpy(&input.front(), private_key_info, sizeof(private_key_info));
170 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
/external/chromium_org/net/cookies/
H A Dparsed_cookie_unittest.cc46 std::string input(values[i]);
49 ParsedCookie pc("aBc=" + input + " ; path=\"/\" ; httponly ");
255 const char input[] = "ANCUUID=zohNumRKgI0oxyhSsV3Z7D ; " local
261 ParsedCookie pc(input);
/external/chromium_org/net/http/
H A Dhttp_chunked_decoder_unittest.cc28 std::string input = inputs[i]; local
29 int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
32 result.append(input.data(), n);
48 std::string input = inputs[i]; local
49 int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
100 // Same as above, but group carriage returns with previous input.
/external/chromium_org/net/quic/crypto/
H A Dcrypto_framer_test.cc257 unsigned char input[] = { local
281 framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
297 unsigned char input[] = { local
328 framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
345 unsigned char input[] = { local
368 for (size_t i = 0; i < arraysize(input); i++) {
369 EXPECT_TRUE(framer.ProcessInput(StringPiece(AsChars(input) + i, 1)));
385 unsigned char input[] local
413 unsigned char input[] = { local
441 unsigned char input[] = { local
461 unsigned char input[] = { local
[all...]
/external/chromium_org/net/spdy/fuzzing/
H A Dhpack_fuzz_mutator.cc19 // Number of bits to flip per 1,024 bytes of input.
28 // Reads length-prefixed input blocks, applies a bit-flipping mutation to each
52 DVLOG(1) << "Reading input from " << file_to_parse;
53 HpackFuzzUtil::Input input; local
55 &input.input));
62 DVLOG(1) << "Flipping " << flip_ratio << " bits per 1024 input bytes";
66 while (HpackFuzzUtil::NextHeaderBlock(&input, &block)) {
H A Dhpack_fuzz_util.h41 // Holds an input string, and manages an offset into that string.
47 return input.size() - offset;
50 return input.data() + offset;
53 std::string input; member in struct:net::HpackFuzzUtil::Input
58 // false if no input header blocks remain.
59 static bool NextHeaderBlock(Input* input, base::StringPiece* out);
65 // A FuzzerContext holds fuzzer input, as well as each of the decoder and
79 // processed the input without error.
H A Dhpack_fuzz_wrapper.cc43 DVLOG(1) << "Reading input from " << file_to_parse;
44 HpackFuzzUtil::Input input; local
46 &input.input));
53 while (HpackFuzzUtil::NextHeaderBlock(&input, &block)) {
/external/chromium_org/net/websockets/
H A Dwebsocket_inflater_test.cc102 std::string input("\xf2\x48\xcd\xc9\xc9\x07\x00", 7);
105 for (size_t i = 0; i < input.size(); ++i) {
106 ASSERT_TRUE(inflater.AddBytes(&input[i], 1));
187 std::vector<char> input; local
197 input.push_back(static_cast<char>(generator.Generate()));
199 ASSERT_TRUE(deflater.AddBytes(&input[0], input.size()));
219 EXPECT_EQ(output, input);
/external/chromium_org/ppapi/shared_impl/
H A Darray_writer.h54 bool StoreArray(const T* input, uint32_t count) { argument
68 if (input)
69 memcpy(dest, input, sizeof(T) * count);
76 bool StoreVector(const std::vector<T>& input) { argument
77 return StoreArray(input.size() ? &input[0] : NULL, input.size());
91 bool StoreResourceVector(const std::vector<scoped_refptr<Resource> >& input);
95 bool StoreResourceVector(const std::vector<PP_Resource>& input);
104 bool StoreVarVector(const std::vector<scoped_refptr<Var> >& input);
[all...]
/external/chromium_org/sandbox/win/src/
H A Dhandle_closer_agent.cc52 base::char16* input = entry->handle_type; local
53 HandleMap::mapped_type& handle_names = handles_to_close_[input];
54 input = reinterpret_cast<base::char16*>(reinterpret_cast<char*>(entry)
59 = handle_names.insert(input);
61 input += name.first->size() + 1;
68 DCHECK(reinterpret_cast<base::char16*>(entry) >= input);
69 DCHECK(reinterpret_cast<base::char16*>(entry) - input <
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQuerySetTest.cpp17 const char* input; member in struct:WebCore::__anon10329
38 ASSERT_STREQ(test.input, output.toString().ascii().data());
44 // The first string represents the input string.
163 for (unsigned i = 0; testCases[i].input; ++i) {
164 RefPtrWillBeRawPtr<MediaQuerySet> oldParserQuerySet = MediaQuerySet::create(testCases[i].input);
165 RefPtrWillBeRawPtr<MediaQuerySet> threadSafeQuerySet = MediaQuerySet::createOffMainThread(testCases[i].input);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryInputStream.cpp12 MediaQueryInputStream::MediaQueryInputStream(String input) argument
14 , m_string(input)
H A DMediaQueryTokenizerTest.cpp15 const char* input; member in struct:WebCore::__anon10337
20 const char* input; member in struct:WebCore::__anon10338
63 for (int i = 0; testCases[i].input; ++i) {
65 MediaQueryTokenizer::tokenize(testCases[i].input, tokens);
104 for (int i = 0; testCases[i].input; ++i) {
106 MediaQueryTokenizer::tokenize(testCases[i].input, tokens);
124 StringBuilder input; local
125 input.append(c);
126 MediaQueryTokenizer::tokenize(input.toString(), tokens);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInputMethodControllerTest.cpp41 document().write("<input id='sample'>");
42 HTMLInputElement* input = toHTMLInputElement(document().getElementById("sample")); local
44 input->focus();
46 input->setValue("fooX");
48 EXPECT_STREQ("fooX", input->value().utf8().data());
50 EXPECT_STREQ("fooX", input->value().utf8().data());
52 input->setValue("fooX");
54 EXPECT_STREQ("fooX", input->value().utf8().data());
56 EXPECT_STREQ("foo", input->value().utf8().data());
58 input
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DBackgroundHTMLInputStream.cpp38 void BackgroundHTMLInputStream::append(const String& input) argument
40 m_current.append(SegmentedString(input));
41 m_segments.append(input);
87 m_current = checkpoint.input;
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DHTMLInputElementFileSystem.cpp47 EntryHeapVector HTMLInputElementFileSystem::webkitEntries(ExecutionContext* executionContext, HTMLInputElement& input) argument
50 FileList* files = input.files();
55 DOMFileSystem* filesystem = DOMFileSystem::createIsolatedFileSystem(executionContext, input.droppedFileSystemId());
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DGainNode.cpp56 // happen in the summing junction input of the AudioNode we're connected to.
62 if (!isInitialized() || !input(0)->isConnected())
65 AudioBus* inputBus = input(0)->bus();
84 // As soon as we know the channel count of our input, we can lazily initialize.
87 void GainNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
91 ASSERT(input && input == this->input(0));
92 if (input != this->input(
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIInput.cpp43 RefPtrWillBeRawPtr<MIDIInput> input = adoptRefWillBeRefCountedGarbageCollected(new MIDIInput(access, id, manufacturer, name, version)); local
44 return input.release();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DZeroPole.cpp53 float input = *source++; local
56 float output1 = k1 * (input - zero * lastX);
57 lastX = input;
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DTokenizer.h26 Input input; member in struct:pp::Tokenizer::Context
29 // if text is buffered up in the scanner input buffer.
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsmatch.cpp27 void CharsetMatch::set(InputText *input, CharsetRecognizer *cr, int32_t conf) argument
29 textIn = input;
H A Dcsrutf8.cpp30 const uint8_t *input = det->fRawInput; local
36 input[0] == 0xEF && input[1] == 0xBB && input[2] == 0xBF) {
42 int32_t b = input[i];
73 b = input[i];
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvp8_decrypt_test.cc36 void test_decrypt_cb(void *decrypt_state, const uint8_t *input, argument
38 encrypt_buffer(input, output, count,
39 input - reinterpret_cast<uint8_t *>(decrypt_state));

Completed in 563 milliseconds

1234567891011>>