Searched refs:input (Results 276 - 300 of 3771) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/mojo/services/gles2/
H A Dcommand_buffer_type_conversions.h18 static CommandBufferStatePtr Convert(const gpu::CommandBuffer::State& input);
23 static gpu::CommandBuffer::State Convert(const CommandBufferStatePtr& input);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
H A Dupdate_webgl_conformance_tests_unittest.py48 def assert_translate(self, input, output):
49 self.assertEqual(output, webgl.translate_khronos_test(input))
87 for input, output in styles.items():
88 input_text += construct_style(input)
89 output_text += construct_style(output if output else input)
90 for input, output in scripts.items():
91 input_text += construct_script(input)
92 output_text += construct_script(output if output else input)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dpunyref.h55 const punycode_uint input[],
60 /* punycode_encode() converts Unicode to Punycode. The input */
65 /* zeros if and only if the input contains zeros. (Of course */
68 /* the input. The output_length is an in/out argument: the */
87 const char input[],
92 /* punycode_decode() converts Punycode to Unicode. The input is */
95 /* input_length is the number of code points in the input. The */
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daccelerate.cc18 const int16_t* input,
26 // Length of input data too short to do accelerate. Simply move all data
27 // from input to output.
28 output->PushBackInterleaved(input, input_length);
31 return TimeStretch::Process(input, input_length, output,
44 const int16_t* input, size_t input_length, size_t peak_index,
57 output->PushBackInterleaved(input, fs_mult_120 * num_channels_);
60 temp_vector.PushBackInterleaved(&input[fs_mult_120 * num_channels_],
66 &input[(fs_mult_120 + peak_index) * num_channels_],
76 output->PushBackInterleaved(input, input_lengt
17 Process( const int16_t* input, size_t input_length, AudioMultiVector* output, int16_t* length_change_samples) argument
43 CheckCriteriaAndStretch( const int16_t* input, size_t input_length, size_t peak_index, int16_t best_correlation, bool active_speech, AudioMultiVector* output) const argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dinput_audio_file_unittest.cc23 int16_t input[kSamples]; local
25 input[i] = i;
28 InputAudioFile::DuplicateInterleaved(input, kSamples, kChannels, output);
42 int16_t input[kSamples * kChannels]; local
44 input[i] = i;
46 InputAudioFile::DuplicateInterleaved(input, kSamples, kChannels, input);
49 int16_t* output_ptr = input;
/external/deqp/framework/delibs/destream/
H A DdeStreamCpyThread.h34 deInStream* input; member in struct:deStreamCpyThread_s
40 deStreamCpyThread* deStreamCpyThread_create (deInStream* input, deOutStream* output, deInt32 bufferSize);
/external/icu/icu4c/source/test/intltest/
H A Dpunyref.h55 const punycode_uint input[],
60 /* punycode_encode() converts Unicode to Punycode. The input */
65 /* zeros if and only if the input contains zeros. (Of course */
68 /* the input. The output_length is an in/out argument: the */
87 const char input[],
92 /* punycode_decode() converts Punycode to Unicode. The input is */
95 /* input_length is the number of code points in the input. The */
/external/jsilver/src/com/google/streamhtmlparser/
H A DParser.java41 * @param input the character read
44 void parse(char input) throws ParseException; argument
50 * @param input the {@code String} to parse
53 void parse(String input) throws ParseException; argument
/external/libcxx/test/input.output/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/Android.mk
19 test_name := input.output/nothing_to_do
/external/libxml2/
H A Denc.h23 int xmlCharEncFirstLineInput(xmlParserInputBufferPtr input, int len);
24 int xmlCharEncInput(xmlParserInputBufferPtr input, int flush);
/external/oprofile/libutil/
H A Dop_libiberty.c30 void * xmemdup (void const * input, size_t copy_size, size_t alloc_size) argument
34 memcpy(output, input, copy_size);
/external/smali/smali/src/main/java/org/jf/smali/
H A DLexerErrorInterface.java44 public ANTLRLexerWithErrorInterface(CharStream input, RecognizerSharedState state) { argument
45 super(input, state);
H A DOdexedInstructionException.java37 OdexedInstructionException(IntStream input, String odexedInstruction) { argument
38 super(input);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dstreams.c15 Functions for streaming input and output.
29 BrotliMemInput* input = (BrotliMemInput*)data; local
30 if (input->pos > input->length) {
33 if (input->pos + count > input->length) {
34 count = input->length - input->pos;
36 memcpy(buf, input->buffer + input
43 BrotliInput input; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.hlsl51 VS2PS vs(IA2VS input)
55 float3 view = mul((float3x4)modelview, input.position);
59 result.normal = mul((float3x3)modelview, input.normal);
64 float4 ps(VS2PS input) : SV_TARGET
66 float3 nlight = normalize(input.light);
67 float3 nnormal = normalize(input.normal);
70 float specular_c = pow(saturate(dot(nnormal, normalize(normalize(input.eye) + nlight))), specular_power);
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dlist.css56 input[type='input'],
57 input[type='password'],
58 input[type='search'],
59 input[type='text'],
60 input[type='url']),
63 input[type='button'],
64 input[type='submit'],
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.hlsl51 VS2PS vs(IA2VS input)
55 float3 view = mul((float3x4)modelview, input.position);
59 result.normal = mul((float3x3)modelview, input.normal);
64 float4 ps(VS2PS input) : SV_TARGET
66 float3 nlight = normalize(input.light);
67 float3 nnormal = normalize(input.normal);
70 float specular_c = pow(saturate(dot(nnormal, normalize(normalize(input.eye) + nlight))), specular_power);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs65 * problem occurred and/or what was the expected input. While the parser
66 * knows its state (such as current input symbol and line info) that
69 * perhaps print an entire line of input not just a single token, for example.
76 /** <summary>What input stream did the error occur in?</summary> */
127 public RecognitionException(IIntStream input) argument
128 : this("A recognition error occurred.", input, null) {
135 public RecognitionException(string message, IIntStream input) argument
136 : this(message, input, null) {
143 public RecognitionException(string message, IIntStream input, Exception innerException) argument
145 this._input = input;
278 ExtractInformationFromTreeNodeStream(IIntStream input) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
H A DProgram.cs11 // input "x = 2*(3+3)"
13 ICharStream input;
20 input = new ANTLRFileStream(args[1]);
24 throw new Exception("No input file specified.");
29 input = new ANTLRStringStream(args[0]);
34 input = new ANTLRInputStream(Console.OpenStandardInput());
37 var lex = new VecMathLexer(input);
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_regexes_unittest.cc18 const char* const input; member in struct:autofill::TestCase
39 SCOPED_TRACE(test_case.input);
41 EXPECT_TRUE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
59 SCOPED_TRACE(test_case.input);
61 EXPECT_FALSE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DValidationTestUtilTest.java20 * Check that the input parser is correct on a given input.
23 String input, boolean isInputValid, ByteBuffer expectedData, int expectedHandlesCount) {
24 ValidationTestUtil.Data data = ValidationTestUtil.parseData(input);
41 // Test empty input.
42 String input = "";
46 checkInputParser(input, true, expected, 0);
49 // Test input that only consists of comments and whitespaces.
50 String input = " \t // hello world \n\r \t// the answer is 42 ";
54 checkInputParser(input, tru
22 checkInputParser( String input, boolean isInputValid, ByteBuffer expectedData, int expectedHandlesCount) argument
[all...]
/external/chromium_org/net/cert/
H A Dct_serialization.h22 // If |input.signature_data| is less than kMaxSignatureLength, encodes the
23 // |input| to |output| and returns true. Otherwise, returns false.
24 NET_EXPORT_PRIVATE bool EncodeDigitallySigned(const DigitallySigned& input,
27 // Reads and decodes a DigitallySigned object from |input|.
28 // The bytes read from |input| are discarded (i.e. |input|'s prefix removed)
30 NET_EXPORT_PRIVATE bool DecodeDigitallySigned(base::StringPiece* input,
33 // Encodes the |input| LogEntry to |output|. Returns true if the entry size
35 NET_EXPORT_PRIVATE bool EncodeLogEntry(const LogEntry& input,
61 // string in |input| t
[all...]
/external/chromium_org/third_party/brotli/src/woff2/
H A Dwoff2_decompress.cc28 fprintf(stderr, "One argument, the input filename, must be provided.\n");
36 string input = woff2::GetFileContent(filename); local
39 reinterpret_cast<const uint8_t*>(input.data()), input.size());
43 reinterpret_cast<const uint8_t*>(input.data()), input.size());
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeParser.java49 protected TreeNodeStream input; field in class:TreeParser
51 public TreeParser(TreeNodeStream input) { argument
53 setTreeNodeStream(input);
56 public TreeParser(TreeNodeStream input, RecognizerSharedState state) { argument
58 setTreeNodeStream(input);
63 if ( input!=null ) {
64 input.seek(0); // rewind the input
68 /** Set the input stream */
69 public void setTreeNodeStream(TreeNodeStream input) { argument
81 getCurrentInputSymbol(IntStream input) argument
85 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
130 recoverFromMismatchedToken(IntStream input, int ttype, BitSet follow) argument
[all...]
/external/chromium_org/content/common/
H A Dcommon_param_traits_unittest.cc30 GURL input(serialize_cases[i]);
32 IPC::ParamTraits<GURL>::Write(&msg, input);
40 EXPECT_EQ(input.possibly_invalid_spec(), output.possibly_invalid_spec());
41 EXPECT_EQ(input.is_valid(), output.is_valid());
42 EXPECT_EQ(input.scheme(), output.scheme());
43 EXPECT_EQ(input.username(), output.username());
44 EXPECT_EQ(input.password(), output.password());
45 EXPECT_EQ(input.host(), output.host());
46 EXPECT_EQ(input.port(), output.port());
47 EXPECT_EQ(input
126 base::ListValue input; local
148 base::DictionaryValue input; local
[all...]

Completed in 9363 milliseconds

<<11121314151617181920>>