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

1234567891011>>

/external/chromium_org/net/quic/crypto/
H A Dcrypto_utils_test.cc32 const char *input, *expected; member in struct:net::test::__anon9432::__anon9433
44 CryptoUtils::NormalizeHostname(tests[i].input));
59 // Try a typical input
/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 DMediaQueryEvaluatorTest.cpp21 const char* input; member in struct:blink::__anon11017
80 for (unsigned i = 0; testCases[i].input; ++i) {
81 RefPtrWillBeRawPtr<MediaQuerySet> querySet = MediaQuerySet::create(testCases[i].input);
H A DMediaQuerySetTest.cpp17 const char* input; member in struct:blink::__anon11019
38 ASSERT_STREQ(test.input, output.toString().ascii().data());
44 // The first string represents the input string.
165 for (unsigned i = 0; testCases[i].input; ++i) {
166 RefPtrWillBeRawPtr<MediaQuerySet> oldParserQuerySet = MediaQuerySet::create(testCases[i].input);
167 RefPtrWillBeRawPtr<MediaQuerySet> threadSafeQuerySet = MediaQuerySet::createOffMainThread(testCases[i].input);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DBisonCSSParserTest.cpp37 const char* input; member in struct:blink::__anon11026
51 RefPtrWillBeRawPtr<StyleRuleBase> rule = parser.parseRule(nullptr, String(testCases[i].input));
H A DMediaQueryInputStream.cpp12 MediaQueryInputStream::MediaQueryInputStream(String input) argument
14 , m_string(input)
H A DMediaQueryTokenizerTest.cpp15 const char* input; member in struct:blink::__anon11033
20 const char* input; member in struct:blink::__anon11034
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/html/
H A DHTMLFormControlElementTest.cpp42 document().documentElement()->setInnerHTML("<body><input required id=input></body>", ASSERT_NO_EXCEPTION);
45 HTMLInputElement* input = toHTMLInputElement(document().getElementById("input")); local
46 input->setCustomValidity(String::fromUTF8("\xD8\xB9\xD8\xB1\xD8\xA8\xD9\x89"));
47 input->setAttribute(HTMLNames::titleAttr, AtomicString::fromUTF8("\xD8\xB9\xD8\xB1\xD8\xA8\xD9\x89"));
49 String message = input->validationMessage().stripWhiteSpace();
54 input->findCustomValidationMessageTextDirection(message, messageDir, subMessage, subMessageDir);
58 input->renderer()->style()->setDirection(RTL);
59 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/encoding/
H A DTextEncoder.cpp75 PassRefPtr<Uint8Array> TextEncoder::encode(const String& input) argument
78 if (input.is8Bit())
79 result = m_codec->encode(input.characters8(), input.length(), WTF::QuestionMarksForUnencodables);
81 result = m_codec->encode(input.characters16(), input.length(), WTF::QuestionMarksForUnencodables);
/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.cpp55 // happen in the summing junction input of the AudioNode we're connected to.
61 if (!isInitialized() || !input(0)->isConnected())
64 AudioBus* inputBus = input(0)->bus();
83 // As soon as we know the channel count of our input, we can lazily initialize.
86 void GainNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
90 ASSERT(input && input == this->input(0));
91 if (input != this->input(
[all...]
/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, const CharsetRecognizer *cr, int32_t conf, argument
30 textIn = input;
H A Dcsrutf8.cpp27 UBool CharsetRecog_UTF8::match(InputText* input, CharsetMatch *results) const { argument
31 const uint8_t *inputBytes = input->fRawInput;
36 if (input->fRawLength >= 3 &&
42 for (i=0; i < input->fRawLength; i += 1) {
70 if (i >= input->fRawLength) {
108 results->set(input, this, confidence);
/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));
H A Dvp9_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));
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
H A Diwalsh_neon.c14 int16_t *input,
22 q0s16 = vld1q_s16(input);
23 q1s16 = vld1q_s16(input + 8);
13 vp8_short_inv_walsh4x4_neon( int16_t *input, int16_t *mb_dqcoeff) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Ddequantize.c29 void vp8_dequant_idct_add_c(short *input, short *dq, argument
36 input[i] = dq[i] * input[i];
39 vp8_short_idct4x4llm_c(input, dest, stride, dest, stride);
41 vpx_memset(input, 0, 32);

Completed in 497 milliseconds

1234567891011>>