Home
last modified time | relevance | path

Searched full:input (Results 1 – 25 of 8580) sorted by relevance

12345678910>>...344

/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3inputstream.c2 /// Base functions to initialize and manipulate any input stream
37 // Generic 8 bit input such as latin-1
55 static void antlr3InputClose (pANTLR3_INPUT_STREAM input);
56 static void antlr3InputReset (pANTLR3_INPUT_STREAM input);
57 static void antlr38BitReuse (pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 i…
58 static void * antlr38BitLT (pANTLR3_INPUT_STREAM input, ANTLR3_INT32 lt);
59 static ANTLR3_UINT32 antlr38BitSize (pANTLR3_INPUT_STREAM input);
60 static pANTLR3_STRING antlr38BitSubstr (pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTL…
61 static ANTLR3_UINT32 antlr38BitGetLine (pANTLR3_INPUT_STREAM input);
62 static void * antlr38BitGetLineBuf (pANTLR3_INPUT_STREAM input);
[all …]
Dantlr3filestream.c3 * is a filesystem based input set and all the characters in the filestream
7 * sets can be supported from input files. The ANTLR3 C runtime expects
49 static void setupInputStream (pANTLR3_INPUT_STREAM input);
56 pANTLR3_INPUT_STREAM input; in antlr3FileStreamNew() local
63 input = antlr3CreateFileStream(fileName); in antlr3FileStreamNew()
64 if (input == NULL) in antlr3FileStreamNew()
72 input->encoding = encoding; in antlr3FileStreamNew()
77 setupInputStream(input); in antlr3FileStreamNew()
81 input->istream->streamName = input->strFactory->newStr8(input->strFactory, fileName); in antlr3FileStreamNew()
82 input->fileName = input->istream->streamName; in antlr3FileStreamNew()
[all …]
/external/boringssl/src/crypto/evp/
Devp_tests.txt8 Input = 308204bc020100300d06092a864886f70d0101010500048204a6308204a20201000282010100cd0081ea7b2ae1e…
13 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7…
17 Input = 30820120300b06092a864886f70d0101010382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c73d9f…
22 Input = 3083000122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7…
28 Input = 30820154020100300d06092a864886f70d01010105000482013e3082013a020100024100dd20403d976a38c9d79…
33 Input = 30820157020100300d06092a864886f70d0101010500048201413082013d0201000241054fa166e205e658bbe8a…
38 Input = 308187020100301306072a8648ce3d020106082a8648ce3d030107046d306b02010104208a872fb62893c4d1ffc…
43 Input = 3041020100301306072a8648ce3d020106082a8648ce3d0301070427302502010104208a872fb62893c4d1ffc5b…
48 Input = 308193020100301306072a8648ce3d020106082a8648ce3d0301070479307702010104208a872fb62893c4d1ffc…
54 Input = 308190020100301306072a8648ce3d020106082a8648ce3d0301070476307402010104208a872fb62893c4d1ffc…
[all …]
/external/ImageMagick/PerlMagick/t/
Dsetattribute.t31 testSetAttribute('input.miff','adjoin','True');
34 testSetAttribute('input.miff','adjoin','False');
37 testSetAttribute('input.miff','antialias','True');
40 testSetAttribute('input.miff','antialias','False');
43 testSetAttribute('input.miff','compression','None');
46 testSetAttribute('input.miff','compression','JPEG');
49 testSetAttribute('input.miff','compression','LZW');
52 testSetAttribute('input.miff','compression','RLE');
55 testSetAttribute('input.miff','compression','Zip');
58 testSetAttribute('input.miff','density','72x72');
[all …]
Dfilter.t33 testFilterCompare('input.miff', q//, 'reference/filter/AdaptiveThreshold.miff', 'AdaptiveThreshold…
36 testFilterCompare('input.miff', q//, 'reference/filter/Annotate.miff', 'Annotate', q/text=>'Magick…
39 testFilterCompare('input.miff', q//, 'reference/filter/Blur.miff', 'Blur', q/'5x2'/, 0.007, 0.7);
42 testFilterCompare('input.miff', q//, 'reference/filter/Border.miff', 'Border', q/geometry=>'6x6',c…
45 testFilterCompare('input.miff', q//, 'reference/filter/Channel.miff', 'Channel', q/channel=>'red'/…
48 testFilterCompare('input.miff', q//, 'reference/filter/Chop.miff', 'Chop', q/geometry=>'80x80+5+10…
51 testFilterCompare('input.miff', q//, 'reference/filter/Charcoal.miff', 'Charcoal', q/'0x1'/, 0.3, …
54 testFilterCompare('input.miff', "fuzz=>$fuzz", 'reference/filter/ColorFloodfill.miff', 'ColorFloodf…
57 testFilterCompare('input.miff', "fuzz=>$fuzz", 'reference/filter/Colorize.miff', 'Colorize', q/fill…
60 testFilterCompare('input.miff', q//, 'reference/filter/Contrast.miff', 'Contrast', q//, 0.0, 0.0);
[all …]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_ENUMINPUT.c46 struct v4l2_input input; in test_VIDIOC_ENUMINPUT() local
52 memset(&input, 0xff, sizeof(input)); in test_VIDIOC_ENUMINPUT()
53 input.index = i; in test_VIDIOC_ENUMINPUT()
54 ret_enum = ioctl(get_video_fd(), VIDIOC_ENUMINPUT, &input); in test_VIDIOC_ENUMINPUT()
63 CU_ASSERT_EQUAL(input.index, i); in test_VIDIOC_ENUMINPUT()
65 CU_ASSERT(0 < strlen((char *)input.name)); in test_VIDIOC_ENUMINPUT()
67 ((char *)input.name, sizeof(input.name))); in test_VIDIOC_ENUMINPUT()
69 //CU_ASSERT_EQUAL(input.type, ?); in test_VIDIOC_ENUMINPUT()
70 //CU_ASSERT_EQUAL(input.audioset, ?); in test_VIDIOC_ENUMINPUT()
71 //CU_ASSERT_EQUAL(input.tuner, ?); in test_VIDIOC_ENUMINPUT()
[all …]
/external/llvm/test/Transforms/StraightLineStrengthReduce/
Dslsr-gep.ll5 ; foo(input[0]);
6 ; foo(input[s]);
7 ; foo(input[s * 2]);
9 ; p0 = &input[0];
15 define void @slsr_gep(i32* %input, i64 %s) {
17 ; v0 = input[0];
18 %p0 = getelementptr inbounds i32, i32* %input, i64 0
21 ; v1 = input[s];
22 %p1 = getelementptr inbounds i32, i32* %input, i64 %s
23 ; CHECK: %p1 = getelementptr inbounds i32, i32* %input, i64 %s
[all …]
/external/bison/tests/
Dinput.at18 AT_BANNER([[Input Processing.]])
29 AT_DATA([input.y],
39 AT_CHECK([[$PERL -pi -e 's/\\(\d{3})/chr(oct($1))/ge' input.y || exit 77]])
41 AT_BISON_CHECK([input.y], [1], [],
42 [[input.y:1.1-2: error: invalid characters: '\0\001\002\377?'
43 input.y:3.1: error: invalid character: '?'
44 input.y:4.14: error: invalid character: '}'
45 input.y:5.1: error: invalid character: '%'
46 input.y:5.2: error: invalid character: '&'
47 input.y:6.1-17: error: invalid directive: '%a-does-not-exist'
[all …]
/external/desugar/java/com/google/devtools/common/options/
DConverters.java35 public Boolean convert(String input) throws OptionsParsingException { in convert() argument
36 if (input == null) { in convert()
39 input = input.toLowerCase(); in convert()
40 if (input.equals("true") in convert()
41 || input.equals("1") in convert()
42 || input.equals("yes") in convert()
43 || input.equals("t") in convert()
44 || input.equals("y")) { in convert()
47 if (input.equals("false") in convert()
48 || input.equals("0") in convert()
[all …]
/external/toybox/tests/
Dgrep.test10 testing "-c" "grep -c 123 input" "3\n" "123\ncount 123\n123\nfasdfasdf" ""
18 testing "-q" "grep -q test input && echo yes" "yes\n" "this is a test\n" ""
19 testing "-E" "grep -E '[0-9]' input" "1234123asdfas123123\n1\n" \
21 testing "-e" "grep -e '[0-9]' input" "1234123asdfas123123\n1\n" \
23 testing "-e -e" "grep -e one -e two -e three input" \
25 testing "-F" "grep -F is input" "this is test\nthis is test2\n" \
34 testing "-b" "grep -b is input" "0:this is test\n13:this is test2\n" \
36 testing "-i" "grep -i is input" "thisIs test\nthis is test2\n" \
38 testing "-n" "grep -n is input" "1:this is test\n2:this is test2\n" \
40 testing "-o" "grep -o is input" "is\nis\nis\nis\n" \
[all …]
/external/fmtlib/doc/bootstrap/
Dinput-groups.less2 // Input groups
7 .input-group {
10 …border-collapse: separate; // prevent input groups from inheriting border styles from table cells …
20 // Ensure that the input is always above the *appended* addon button for
26 // select elements in input groups. To fix it, we float the input. Details:
40 .input-group-lg > .form-control,
41 .input-group-lg > .input-group-addon,
42 .input-group-lg > .input-group-btn > .btn {
43 .input-lg();
45 .input-group-sm > .form-control,
[all …]
Dforms.less47 input[type="search"] {
52 input[type="radio"],
53 input[type="checkbox"] {
60 input[type="file"] {
65 input[type="range"] {
77 input[type="file"]:focus,
78 input[type="radio"]:focus,
79 input[type="checkbox"]:focus {
89 color: @input-color;
100 // input[type="text"]
[all …]
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3input.h3 * streams from any input source. Any character size and encoding
6 * to specific offsets into their input streams.
52 /// Master context structure for an ANTLR3 C runtime based input stream.
63 /** Whatever super structure is providing the INPUT stream needs a pointer to itself
69 /** Pointer the start of the input string, characters may be
70 * taken as offsets from here and in original input format encoding.
79 /** String factory for this input stream
84 /** Pointer to the next character to be consumed from the input data
86 * was read by the functions installed as pointer in this input stream
93 * input source is a stream such as a socket or something then we may
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_idct.c20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht4x4_16_add_c() argument
36 IHT_4[tx_type].rows(input, outptr); in vp9_iht4x4_16_add_c()
37 input += 4; in vp9_iht4x4_16_add_c()
59 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht8x8_64_add_c() argument
69 ht.rows(input, outptr); in vp9_iht8x8_64_add_c()
70 input += 8; in vp9_iht8x8_64_add_c()
92 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht16x16_256_add_c() argument
102 ht.rows(input, outptr); in vp9_iht16x16_256_add_c()
103 input += 16; in vp9_iht16x16_256_add_c()
119 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_idct4x4_add() argument
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Derror.rb59 the input to the point at which it started the decision
88 # problem occurred and/or what was the expected input. While the parser
89 # knows its state (such as current input symbol and line info) that
92 # perhaps print an entire line of input not just a single token, for example.
100 to the recognizer by the rules of a grammar and an input symbol which failed to
107 attr_accessor :input, :index, :line, :column, :symbol, :token, :source_name accessor in ANTLR3.Error.RecognitionError
109 def initialize( input = nil ) argument
112 if @input = input
113 @index = input.index
114 @source_name = @input.source_name rescue nil
[all …]
/external/boringssl/src/crypto/poly1305/
Dpoly1305_tests.txt4 Input = "Cryptographic Forum Research Group"
11 Input = 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000…
15 Input = 416e79207375626d697373696f6e20746f20746865204945544620696e74656e6465642062792074686520436f6…
19 Input = 416e79207375626d697373696f6e20746f20746865204945544620696e74656e6465642062792074686520436f6…
23 Input = 2754776173206272696c6c69672c20616e642074686520736c6974687920746f7665730a4469642067797265206…
27 Input = ffffffffffffffffffffffffffffffff
31 Input = 02000000000000000000000000000000
35 Input = fffffffffffffffffffffffffffffffff0ffffffffffffffffffffffffffffff110000000000000000000000000…
39 Input = fffffffffffffffffffffffffffffffffbfefefefefefefefefefefefefefefe010101010101010101010101010…
43 Input = fdffffffffffffffffffffffffffffff
[all …]
/external/libmojo/mojo/common/
Dcommon_type_converters.cc17 const base::StringPiece& input) { in Convert() argument
18 if (input.empty()) { in Convert()
22 return String(input.data(), input.size()); in Convert()
26 const String& input) { in Convert() argument
27 return input.get(); in Convert()
32 const base::string16& input) { in Convert() argument
34 base::UTF16ToUTF8(input)); in Convert()
38 const String& input) { in Convert() argument
39 return base::UTF8ToUTF16(input.To<base::StringPiece>()); in Convert()
43 const Array<uint8_t>& input) { in Convert() argument
[all …]
/external/webrtc/webrtc/libjingle/xmpp/
Dxmpplogintask_unittest.cc79 std::string input; in RunPartialLogin() local
99 input = "<stream:stream id=\"a5f2d8c9\" version=\"1.0\" " in RunPartialLogin()
102 engine_->HandleInput(input.c_str(), input.length()); in RunPartialLogin()
112 input = "<stream:features>" in RunPartialLogin()
115 engine_->HandleInput(input.c_str(), input.length()); in RunPartialLogin()
126 input = std::string("<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>"); in RunPartialLogin()
127 engine_->HandleInput(input.c_str(), input.length()); in RunPartialLogin()
140 input = std::string("<stream:stream id=\"01234567\" version=\"1.0\" " in RunPartialLogin()
143 engine_->HandleInput(input.c_str(), input.length()); in RunPartialLogin()
153 input = "<stream:features>" in RunPartialLogin()
[all …]
/external/eigen/unsupported/test/
Dcxx11_tensor_convolution.cpp20 Tensor<float, 2, DataLayout> input(3, 3); in test_evals() local
23 input.setRandom(); in test_evals()
30 typedef TensorEvaluator<decltype(input.convolve(kernel, dims3)), DefaultDevice> Evaluator; in test_evals()
31 Evaluator eval(input.convolve(kernel, dims3), DefaultDevice()); in test_evals()
37 VERIFY_IS_APPROX(result(0,0), input(0,0)*kernel(0) + input(1,0)*kernel(1)); // index 0 in test_evals()
38 VERIFY_IS_APPROX(result(0,1), input(0,1)*kernel(0) + input(1,1)*kernel(1)); // index 2 in test_evals()
39 VERIFY_IS_APPROX(result(0,2), input(0,2)*kernel(0) + input(1,2)*kernel(1)); // index 4 in test_evals()
40 VERIFY_IS_APPROX(result(1,0), input(1,0)*kernel(0) + input(2,0)*kernel(1)); // index 1 in test_evals()
41 VERIFY_IS_APPROX(result(1,1), input(1,1)*kernel(0) + input(2,1)*kernel(1)); // index 3 in test_evals()
42 VERIFY_IS_APPROX(result(1,2), input(1,2)*kernel(0) + input(2,2)*kernel(1)); // index 5 in test_evals()
[all …]
/external/icu/icu4c/source/io/
Duscanf_p.c318 u_scanf_skip_leading_ws(UFILE *input, in u_scanf_skip_leading_ws() argument
325 /* skip all leading ws in the input */ in u_scanf_skip_leading_ws()
326 while( (isNotEOF = ufile_getch(input, &c)) && (c == pad || u_isWhitespace(c)) ) in u_scanf_skip_leading_ws()
331 /* put the final character back on the input */ in u_scanf_skip_leading_ws()
333 u_fungetc(c, input); in u_scanf_skip_leading_ws()
340 u_scanf_skip_leading_positive_sign(UFILE *input, in u_scanf_skip_leading_positive_sign() argument
359 /* skip all leading ws in the input */ in u_scanf_skip_leading_positive_sign()
360 … while( (isNotEOF = ufile_getch(input, &c)) && (count < symbolLen && c == plusSymbol[count]) ) in u_scanf_skip_leading_positive_sign()
365 /* put the final character back on the input */ in u_scanf_skip_leading_positive_sign()
367 u_fungetc(c, input); in u_scanf_skip_leading_positive_sign()
[all …]
/external/libmojo/mojo/public/cpp/bindings/lib/
Darray_serialization.h40 explicit ArrayIterator(MaybeConstUserType& input) in ArrayIterator() argument
41 : input_(input), iter_(CallGetBeginIfExists<Traits>(input)) {} in ArrayIterator()
69 explicit ArrayIterator(MaybeConstUserType& input) : input_(input), iter_(0) {} in ArrayIterator() argument
122 static size_t GetSerializedSize(UserTypeIterator* input,
124 return sizeof(Data) + Align(input->GetSize() * sizeof(DataElement));
127 static void SerializeElements(UserTypeIterator* input,
137 size_t size = input->GetSize();
141 auto data = input->GetDataIfExists();
146 output->at(i) = input->GetNext();
150 static bool DeserializeElements(Data* input,
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
Dconstruction.rb374 input = opts[ :input ]
379 …essage ] || rule.to_s #"should parse %p with rule %s and make tree %s" % [input, rule, expected_tr…
382 lexer = ASTBuilder::Lexer.new( input )
394 ast_test :input => "1 + 2", :rule => :r1, :ast => "(+ 1 2)"
396 ast_test :input => "assert 2+3", :rule => :r2, :ast => "(assert (+ 2 3))"
398 ast_test :input => "assert 2+3 : 5", :rule => :r2, :ast => "(assert (+ 2 3) 5)"
400 ast_test :input => "if 1 fooze", :rule => :r3, :ast => "(if 1 fooze)"
402 ast_test :input => "if 1 fooze else fooze", :rule => :r3, :ast => "(if 1 fooze fooze)"
404 ast_test :input => "while 2 fooze", :rule => :r4, :ast => "(while 2 fooze)"
406 ast_test :input => "return;", :rule => :r5, :ast => "return"
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dfwd_txfm_sse2.c18 void vpx_fdct4x4_1_sse2(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct4x4_1_sse2() argument
22 in0 = _mm_loadl_epi64((const __m128i *)(input + 0 * stride)); in vpx_fdct4x4_1_sse2()
23 in1 = _mm_loadl_epi64((const __m128i *)(input + 1 * stride)); in vpx_fdct4x4_1_sse2()
25 in1, _mm_loadl_epi64((const __m128i *)(input + 2 * stride))); in vpx_fdct4x4_1_sse2()
27 in0, _mm_loadl_epi64((const __m128i *)(input + 3 * stride))); in vpx_fdct4x4_1_sse2()
47 void vpx_fdct8x8_1_sse2(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct8x8_1_sse2() argument
48 __m128i in0 = _mm_load_si128((const __m128i *)(input + 0 * stride)); in vpx_fdct8x8_1_sse2()
49 __m128i in1 = _mm_load_si128((const __m128i *)(input + 1 * stride)); in vpx_fdct8x8_1_sse2()
50 __m128i in2 = _mm_load_si128((const __m128i *)(input + 2 * stride)); in vpx_fdct8x8_1_sse2()
51 __m128i in3 = _mm_load_si128((const __m128i *)(input + 3 * stride)); in vpx_fdct8x8_1_sse2()
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dfwd_txfm.c15 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct4x4_c() argument
36 in_high[0] = input[0 * stride] * 16; in vpx_fdct4x4_c()
37 in_high[1] = input[1 * stride] * 16; in vpx_fdct4x4_c()
38 in_high[2] = input[2 * stride] * 16; in vpx_fdct4x4_c()
39 in_high[3] = input[3 * stride] * 16; in vpx_fdct4x4_c()
65 ++input; in vpx_fdct4x4_c()
81 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride) { in vpx_fdct4x4_1_c() argument
85 for (c = 0; c < 4; ++c) sum += input[r * stride + c]; in vpx_fdct4x4_1_c()
90 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *final_output, int stride) { in vpx_fdct8x8_c() argument
106 s0 = (input[0 * stride] + input[7 * stride]) * 4; in vpx_fdct8x8_c()
[all …]
/external/valgrind/memcheck/tests/s390x/
Dcu42.c8 /* Define various input buffers. */
68 uint8_t *input; in main() local
70 /* Input buffer is completely uninitialised */ in main()
71 input = malloc(10); in main()
72 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint in main()
74 /* Read 4 bytes from input buffer. First byte is uninitialised */ in main()
75 input = malloc(10); in main()
76 input[1] = input[2] = input[3] = 0x0; in main()
77 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint in main()
79 /* Read 4 bytes from input buffer. Second byte is uninitialised */ in main()
[all …]

12345678910>>...344