HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 201 - 225 of 9338) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webrtc/webrtc/test/
video_capturer.cc 29 VideoCapturer::VideoCapturer(VideoCaptureInput* input) : input_(input) {
32 VideoCapturer* VideoCapturer::Create(VideoCaptureInput* input,
37 VcmCapturer* vcm_capturer = VcmCapturer::Create(input, width, height, fps);
45 FrameGeneratorCapturer::Create(input, width, height, fps, clock);
  /frameworks/native/cmds/surfacereplayer/replayer/trace_creator/
trace_creator.py 20 increment.time_stamp = int(input("Time stamp of action: "))
60 return int(input("> "))
86 return int(input("> "))
92 = bool(input("Is transaction synchronous (True/False): "))
94 = bool(input("Is transaction animated (True/False): "))
108 change.id = int(input("ID of layer/display to undergo a change: "))
163 increment.surface_creation.id = int(input("Enter id: "))
166 increment.surface_creation.w = input("Enter w: ")
167 increment.surface_creation.h = input("Enter h: ")
170 increment.surface_deletion.id = int(input("Enter id: ")
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/view/animation/
LookupTableInterpolator.java 23 * given input.
36 public float getInterpolation(float input) {
37 if (input >= 1.0f) {
40 if (input <= 0f) {
46 int position = Math.min((int) (input * (mValues.length - 1)), mValues.length - 2);
50 float diff = input - quantized;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.java 82 * Method Input Output Dependency
133 * @param input the byte array to read from
137 public static void copy(byte[] input, OutputStream output)
139 output.write(input);
150 * @param input the byte array to read from
154 public static void copy(byte[] input, Writer output)
156 ByteArrayInputStream in = new ByteArrayInputStream(input);
164 * @param input the byte array to read from
172 byte[] input,
176 ByteArrayInputStream in = new ByteArrayInputStream(input);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
input.h 2 * \file include/input.h
36 * \defgroup Input Input Interface
38 * The input functions present an interface similar to the stdio functions
39 * on top of different underlying input sources.
41 * The #snd_config_load function uses such an input handle to be able to
49 * \brief Internal structure for an input object.
52 * input object. Applications don't access its contents directly.
56 /** Input type. */
58 /** Input from a stdio stream. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
input.h 2 * \file include/input.h
36 * \defgroup Input Input Interface
38 * The input functions present an interface similar to the stdio functions
39 * on top of different underlying input sources.
41 * The #snd_config_load function uses such an input handle to be able to
49 * \brief Internal structure for an input object.
52 * input object. Applications don't access its contents directly.
56 /** Input type. */
58 /** Input from a stdio stream. *
    [all...]
  /frameworks/base/tools/aapt2/io/
StringInputStream_test.cpp 31 std::string input; local
32 input.resize(kCount, 0x7f);
33 input[0] = 0x00;
34 input[kCount - 1] = 0xff;
35 StringInputStream in(input);
51 std::string input = "hello this is a string"; local
52 StringInputStream in(input);
57 ASSERT_THAT(size, Eq(input.size()));
59 EXPECT_THAT(in.ByteCount(), Eq(input.size()));
62 EXPECT_THAT(in.ByteCount(), Eq(input.size() - 6u))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 41 public SimpleCTP(TreeNodeStream input) {
42 this(input, new RecognizerSharedState());
44 public SimpleCTP(TreeNodeStream input, RecognizerSharedState state) {
45 super(input, state);
67 int LA1_0 = input.LA(1);
90 new EarlyExitException(1, input);
102 recover(input,re);
117 switch ( input.LA(1) ) {
135 new NoViableAltException("", 2, 0, input);
155 match(input,FUNC_DECL,FOLLOW_FUNC_DECL_in_declaration74);
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 41 public SimpleCTP(TreeNodeStream input) {
42 this(input, new RecognizerSharedState());
44 public SimpleCTP(TreeNodeStream input, RecognizerSharedState state) {
45 super(input, state);
67 int LA1_0 = input.LA(1);
90 new EarlyExitException(1, input);
102 recover(input,re);
117 switch ( input.LA(1) ) {
135 new NoViableAltException("", 2, 0, input);
155 match(input,FUNC_DECL,FOLLOW_FUNC_DECL_in_declaration74);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Tracer.cs 47 public IIntStream input; field in class:Antlr.Runtime.Debug.Tracer
50 public Tracer( IIntStream input )
52 this.input = input;
77 if ( input is ITokenStream )
79 return ( (ITokenStream)input ).LT( k );
81 return (char)input.LA( k );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Tracer.java 38 public IntStream input; field in class:Tracer
41 public Tracer(IntStream input) {
42 this.input = input;
58 if ( input instanceof TokenStream ) {
59 return ((TokenStream)input).LT(k);
61 return new Character((char)input.LA(k));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeInputStream.java 8 * An input stream which copies anything read through it to another stream.
13 private final InputStream input; field in class:TeeInputStream
19 * @param input input stream to be wrapped.
20 * @param output output stream to copy any input read to.
22 public TeeInputStream(InputStream input, OutputStream output)
24 this.input = input;
37 int i = input.read(buf, off, len);
50 int i = input.read()
    [all...]
  /external/compiler-rt/lib/builtins/
ashrdi3.c 27 dwords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
ashrti3.c 27 twords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
  /external/skia/debugger/
debuggermain.cpp 14 SkDebugf("%s <input> \n", argv0);
17 SkDebugf(" input: Either a directory or a single .skp file.\n");
35 SkString input; local
46 } else if (input.isEmpty()) {
47 input = SkString(iter->toAscii().data());
56 if (!input.isEmpty()) {
57 if (SkStrEndsWith(input.c_str(), ".skp")) {
58 w.openFile(input.c_str());
60 w.setupDirectoryWidget(input.c_str());
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StyleUtils.java 46 public static void stripUnderlinesAndLinkUrls(Spannable input,
48 final URLSpan[] urls = input.getSpans(0, input.length(), URLSpan.class);
51 final int start = input.getSpanStart(span);
52 final int end = input.getSpanEnd(span);
53 input.removeSpan(span);
54 input.setSpan(new LinkStyleSpan(onClickListener), start, end,
  /art/runtime/base/
transform_iterator_test.cc 45 std::vector<ValueHolder> input({ 1, 7, 3, 8 });
48 using vector_titer = decltype(MakeTransformIterator(input.begin(), add1));
55 using vector_ctiter = decltype(MakeTransformIterator(input.cbegin(), add1));
62 using vector_rtiter = decltype(MakeTransformIterator(input.rbegin(), add1));
69 using vector_crtiter = decltype(MakeTransformIterator(input.crbegin(), add1));
76 std::copy(MakeTransformIterator(input.begin(), add1),
77 MakeTransformIterator(input.end(), add1),
82 std::copy(MakeTransformIterator(input.cbegin(), add1),
83 MakeTransformIterator(input.cend(), add1),
88 std::copy(MakeTransformIterator(input.rbegin(), add1)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
13 """Encode the input, returning a tuple (output object, length consumed).
22 f = StringIO(str(input))
26 return (output, len(input))
28 def quopri_decode(input, errors='strict'):
29 """Decode the input, returning a tuple (output object, length consumed).
37 f = StringIO(str(input))
41 return (output, len(input))
45 def encode(self, input,errors='strict'):
46 return quopri_encode(input,errors)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
13 """Encode the input, returning a tuple (output object, length consumed).
22 f = StringIO(str(input))
26 return (output, len(input))
28 def quopri_decode(input, errors='strict'):
29 """Decode the input, returning a tuple (output object, length consumed).
37 f = StringIO(str(input))
41 return (output, len(input))
45 def encode(self, input,errors='strict'):
46 return quopri_encode(input,errors)
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognitionException.pm 11 has 'input' => (
64 my $input = $args->{input};
65 $new_args->{input} = $input;
66 $new_args->{index} = $input->index();
68 if ($input->does('ANTLR::Runtime::TokenStream')) {
69 my $token = $input->LT(1);
75 if ($input->does('ANTLR::Runtime::TreeNodeStream')) {
76 # extract_information_from_tree_node_stream($input);
    [all...]
  /external/mesa3d/src/util/
roundeven_test.c 35 float input, expected; member in struct:__anon28805
52 double input, expected; member in struct:__anon28806
72 float output = _mesa_roundevenf(float_data[i].input);
79 float_data[i].input,
80 float_data[i].input,
89 float output = _mesa_roundevenf(-float_data[i].input);
97 -float_data[i].input,
98 -float_data[i].input,
106 double output = _mesa_roundeven(double_data[i].input);
113 double_data[i].input,
    [all...]
  /external/python/cpython2/Lib/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
13 """Encode the input, returning a tuple (output object, length consumed).
22 f = StringIO(str(input))
26 return (output, len(input))
28 def quopri_decode(input, errors='strict'):
29 """Decode the input, returning a tuple (output object, length consumed).
37 f = StringIO(str(input))
41 return (output, len(input))
45 def encode(self, input,errors='strict'):
46 return quopri_encode(input,errors
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
13 """Encode the input, returning a tuple (output object, length consumed).
22 f = StringIO(str(input))
26 return (output, len(input))
28 def quopri_decode(input, errors='strict'):
29 """Decode the input, returning a tuple (output object, length consumed).
37 f = StringIO(str(input))
41 return (output, len(input))
45 def encode(self, input,errors='strict'):
46 return quopri_encode(input,errors
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
13 """Encode the input, returning a tuple (output object, length consumed).
22 f = StringIO(str(input))
26 return (output, len(input))
28 def quopri_decode(input, errors='strict'):
29 """Decode the input, returning a tuple (output object, length consumed).
37 f = StringIO(str(input))
41 return (output, len(input))
45 def encode(self, input,errors='strict'):
46 return quopri_encode(input,errors
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
13 """Encode the input, returning a tuple (output object, length consumed).
22 f = StringIO(str(input))
26 return (output, len(input))
28 def quopri_decode(input, errors='strict'):
29 """Decode the input, returning a tuple (output object, length consumed).
37 f = StringIO(str(input))
41 return (output, len(input))
45 def encode(self, input,errors='strict'):
46 return quopri_encode(input,errors
    [all...]

Completed in 5720 milliseconds

1 2 3 4 5 6 7 891011>>