Searched refs:input (Results 151 - 175 of 3771) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeInputStream.java10 private final InputStream input; field in class:TeeInputStream
13 public TeeInputStream(InputStream input, OutputStream output) argument
15 this.input = input;
28 int i = input.read(buf, off, len);
41 int i = input.read();
54 this.input.close();
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_entry_conversion.cc19 const google_apis::ChangeResource& input,
27 if (input.file() &&
28 !ConvertFileResourceToResourceEntry(*input.file(), &converted,
32 converted.set_resource_id(input.file_id());
33 converted.set_deleted(converted.deleted() || input.is_deleted());
34 converted.set_modification_date(input.modification_date().ToInternalValue());
42 const google_apis::FileResource& input,
53 converted.set_title(input.title());
55 converted.set_resource_id(input.file_id());
62 if (!input
18 ConvertChangeResourceToResourceEntry( const google_apis::ChangeResource& input, ResourceEntry* out_entry, std::string* out_parent_resource_id) argument
41 ConvertFileResourceToResourceEntry( const google_apis::FileResource& input, ResourceEntry* out_entry, std::string* out_parent_resource_id) argument
[all...]
/external/chromium_org/third_party/skia/debugger/
H A Ddebuggermain.cpp13 SkDebugf("%s <input> \n", argv0);
16 SkDebugf(" input: Either a directory or a single .skp file.\n");
28 SkString input; local
39 } else if (input.isEmpty()) {
40 input = SkString(iter->toAscii().data());
49 if (!input.isEmpty()) {
50 if (SkStrEndsWith(input.c_str(), ".skp")) {
51 w.openFile(input.c_str());
53 w.setupDirectoryWidget(input.c_str());
/external/compiler-rt/lib/builtins/
H A Dashrdi3.c27 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);
H A Dashrti3.c27 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/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/bool
23 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_short
27 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/pointer
31 test_name := input.output/iostream.format/input
[all...]
/external/skia/debugger/
H A Ddebuggermain.cpp13 SkDebugf("%s <input> \n", argv0);
16 SkDebugf(" input: Either a directory or a single .skp file.\n");
28 SkString input; local
39 } else if (input.isEmpty()) {
40 input = SkString(iter->toAscii().data());
49 if (!input.isEmpty()) {
50 if (SkStrEndsWith(input.c_str(), ".skp")) {
51 w.openFile(input.c_str());
53 w.setupDirectoryWidget(input.c_str());
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DRecognitionException.pm11 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/chromium_org/tools/json_comment_eater/
H A Djson_comment_eater.py32 def _ReadString(input, start, output):
34 start_range, end_range = (start, input.find('"', start))
37 _Rcount(input[start_range:end_range], '\\') % 2 == 1):
38 start_range, end_range = (end_range, input.find('"', end_range + 1))
41 output.append(input[start:end_range + 1])
45 def _ReadComment(input, start, output):
47 eol_token_index, eol_token = _FindNextToken(input, eol_tokens, start)
49 return len(input)
54 def Nom(input):
61 while pos < len(input)
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognitionException.java54 * problem occurred and/or what was the expected input. While the parser
55 * knows its state (such as current input symbol and line info) that
58 * perhaps print an entire line of input not just a single token, for example.
63 /** What input stream did the error occur in? */
64 public transient IntStream input; field in class:RecognitionException
102 public RecognitionException(IntStream input) { argument
103 this.input = input;
104 this.index = input.index();
105 if ( input instanceo
123 extractInformationFromTreeNodeStream(IntStream input) argument
[all...]
H A DLexer.java30 /** A lexer is recognizer that draws input symbols from a character stream.
37 protected CharStream input; field in class:Lexer
42 public Lexer(CharStream input) { argument
43 this.input = input;
46 public Lexer(CharStream input, RecognizerSharedState state) { argument
48 this.input = input;
54 if ( input!=null ) {
55 input
127 setCharStream(CharStream input) argument
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js18 * problem occurred and/or what was the expected input. While the parser
19 * knows its state (such as current input symbol and line info) that
22 * perhaps print an entire line of input not just a single token, for example.
27 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
31 org.antlr.runtime.RecognitionException = function(input) {
33 this.input = input;
34 this.index = input.index();
35 if ( input instanceo
[all...]
/external/chromium_org/tools/gn/
H A Dparser_unittest.cc15 bool GetTokens(const InputFile* input, std::vector<Token>* result) { argument
18 *result = Tokenizer::Tokenize(input, &err);
22 void DoParserPrintTest(const char* input, const char* expected) { argument
25 input_file.SetContents(input);
40 void DoExpressionPrintTest(const char* input, const char* expected) { argument
43 input_file.SetContents(input);
58 void DoParserErrorTest(const char* input, int err_line, int err_char) { argument
60 input_file.SetContents(input);
76 void DoExpressionErrorTest(const char* input, int err_line, int err_char) { argument
78 input_file.SetContents(input);
132 const char* input = "(foo(1)) + (a + (b - c) + d)"; local
150 const char* input = "5 - 1 - 2\\n"; local
161 const char* input = local
290 const char* input = local
319 const char* input = local
367 const char* input = "{cc_test(\\"foo\\") {{foo=1}\\n{}}}"; local
435 const char* input = "a = b[1]"; local
465 const char* input = "func(\\"stuff\\") {\\n}"; local
479 const char* input = "a = b + c && d || e"; local
495 const char* input = local
510 const char* input = local
524 const char* input = local
552 const char* input = local
572 const char* input = local
593 const char* input = local
618 const char* input = local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmpplogintask_unittest.cc72 std::string input; local
91 input = "<stream:stream id=\"a5f2d8c9\" version=\"1.0\" "
94 engine_->HandleInput(input.c_str(), input.length());
103 input = "<stream:features>"
106 engine_->HandleInput(input.c_str(), input.length());
116 input = std::string("<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
117 engine_->HandleInput(input.c_str(), input
230 std::string input = "<?xml version='1.0' encoding='UTF-8'?>" local
243 std::string input = "<?xml version='1.0' encoding='ISO-8859-1'?>" local
256 std::string input = "<iq type='get' id='1'/>"; local
267 std::string input = "<stream:features>" local
283 std::string input = "<stream:features>" local
305 std::string input = "<stream:features>" local
326 std::string input = "<stream:features>" local
348 std::string input = "<stream:features>" local
369 std::string input = "<stream:features>" local
390 std::string input = "<failure xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>"; local
401 std::string input = "<wrongtag>"; local
412 std::string input = "<stream:features>" local
427 std::string input = "<failure xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>"; local
438 std::string input = "<wrongtag>"; local
449 std::string input = "<stream:features>" local
461 std::string input = "<stream:features>" local
491 std::string input = "<iq type='result' id='0'>" local
504 std::string input = "<iq type='error' id='0'/>"; local
516 std::string input = "<iq type='error' id='1'/>"; local
526 std::string input = "<iq type='error' id='1'/>"; local
538 std::string input = "<iq type='get' id='1'/>"; local
555 std::string input; local
589 std::string input = "<stream:error>" local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLexer.cs37 * A lexer is recognizer that draws input symbols from a character stream.
45 protected ICharStream input; field in class:Antlr.Runtime.Lexer
50 public Lexer(ICharStream input) { argument
51 this.input = input;
54 public Lexer(ICharStream input, RecognizerSharedState state) argument
56 this.input = input;
66 return input.Substring(state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex);
75 return input
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLexer.cs38 * A lexer is recognizer that draws input symbols from a character stream.
47 protected ICharStream input; field in class:Antlr.Runtime.Lexer
53 public Lexer( ICharStream input )
55 this.input = input;
58 public Lexer( ICharStream input, RecognizerSharedState state ) argument
61 this.input = input;
74 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
86 return input
[all...]
/external/chromium_org/mojo/services/public/cpp/surfaces/lib/
H A Dsurfaces_type_converters.cc51 cc::SharedQuadState* ConvertSharedQuadState(const SharedQuadStatePtr& input, argument
54 state->SetAll(input->content_to_target_transform.To<gfx::Transform>(),
55 input->content_bounds.To<gfx::Size>(),
56 input->visible_content_rect.To<gfx::Rect>(),
57 input->clip_rect.To<gfx::Rect>(),
58 input->is_clipped,
59 input->opacity,
60 static_cast<::SkXfermode::Mode>(input->blend_mode),
61 input->sorting_context_id);
65 bool ConvertDrawQuad(const QuadPtr& input, argument
190 Convert( const cc::SurfaceId& input) argument
198 Convert( const SurfaceIdPtr& input) argument
204 Convert(const SkColor& input) argument
211 Convert(const ColorPtr& input) argument
216 Convert( const cc::RenderPassId& input) argument
225 Convert( const RenderPassIdPtr& input) argument
231 Convert( const cc::DrawQuad& input) argument
332 Convert( const cc::SharedQuadState& input) argument
348 Convert( const cc::RenderPass& input) argument
386 Convert( const PassPtr& input) argument
411 Convert( const gpu::Mailbox& input) argument
423 Convert( const MailboxPtr& input) argument
432 Convert( const gpu::MailboxHolder& input) argument
442 Convert( const MailboxHolderPtr& input) argument
453 Convert( const cc::TransferableResource& input) argument
468 Convert( const TransferableResourcePtr& input) argument
484 Convert(const cc::TransferableResourceArray& input) argument
496 Convert(const Array<TransferableResourcePtr>& input) argument
506 Convert( const cc::ReturnedResource& input) argument
518 Convert( const ReturnedResourcePtr& input) argument
530 Convert( const cc::ReturnedResourceArray& input) argument
540 Convert( const cc::CompositorFrame& input) argument
557 Convert( const FramePtr& input) argument
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as39 protected var input:TreeNodeStream;
41 public function TreeParser(input:TreeNodeStream, state:RecognizerSharedState = null) {
43 treeNodeStream = input;
48 if ( input!=null ) {
49 input.seek(0); // rewind the input
53 /** Set the input stream */
54 public function set treeNodeStream(input:TreeNodeStream):void {
55 this.input = input;
[all...]
/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/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11blit.hlsl42 VS2PS vs_blit(IA2VS input)
45 result.position = input.position;
46 result.texcoord = input.texcoord;
50 float4 ps_blit(VS2PS input) : SV_TARGET
52 return tex.Sample(samp, input.texcoord);
/external/chromium_org/third_party/webrtc/test/
H A Dfake_decoder.cc33 int32_t FakeDecoder::Decode(const EncodedImage& input, argument
38 frame_.set_timestamp(input._timeStamp);
39 frame_.set_ntp_time_ms(input.ntp_time_ms_);
60 int32_t FakeH264Decoder::Decode(const EncodedImage& input, argument
66 for (size_t i = 0; i < input._length; ++i) {
68 if (i < input._length - sizeof(kStartCode) &&
69 !memcmp(&input._buffer[i], kStartCode, sizeof(kStartCode))) {
72 if (input._buffer[i] != value) {
73 EXPECT_EQ(value, input._buffer[i])
79 return FakeDecoder::Decode(input,
[all...]
/external/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.unformatted/peek
23 test_name := input.output/iostream.format/input.streams/istream.unformatted/sync
27 test_name := input.output/iostream.format/input.streams/istream.unformatted/unget
31 test_name := input.output/iostream.format/input
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11blit.hlsl42 VS2PS vs_blit(IA2VS input)
45 result.position = input.position;
46 result.texcoord = input.texcoord;
50 float4 ps_blit(VS2PS input) : SV_TARGET
52 return tex.Sample(samp, input.texcoord);
/external/smali/smali/src/main/java/org/jf/smali/
H A DSemanticException.java41 SemanticException(IntStream input, String errorMessage, Object... messageArguments) { argument
42 super(input);
46 SemanticException(IntStream input, Exception ex) { argument
47 super(input);
51 SemanticException(IntStream input, CommonTree tree, String errorMessage, Object... messageArguments) { argument
53 this.input = input;
61 SemanticException(IntStream input, Token token, String errorMessage, Object... messageArguments) { argument
63 this.input = input;
[all...]
/external/tcpdump/tests/
H A DTESTonce15 ($name,$input,$output,$options)=split(/\s+/,$_, 4);
20 die "Can not find test $wanted\n" unless defined($input);
24 $input=$ARGV[1];
28 print "Usage: TESTonce name [input output options]\n";
33 print " Input: $input, OUTPUT: $output, OPTIONS: $options\n" if $debug;
36 exec("../tcpdump 2>/dev/null -n -r $input $options | tee NEW/$output | diff -w - $output >DIFF/$output.diff");

Completed in 789 milliseconds

1234567891011>>