HomeSort by relevance Sort by last modified time
    Searched defs:Input (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Input.cpp 7 #include "Input.h"
16 Input::Input() : mCount(0), mString(0)
20 Input::Input(size_t count, const char *const string[], const int length[]) :
32 size_t Input::read(char *buf, size_t maxSize)
Input.h 16 // Holds and reads input for Lexer.
17 class Input
20 Input();
21 Input(size_t count, const char *const string[], const int length[]);
52 // Input.
  /external/chromium_org/net/spdy/fuzzing/
hpack_fuzz_util.h 41 // Holds an input string, and manages an offset into that string.
42 struct NET_EXPORT_PRIVATE Input {
43 Input(); // Initializes |offset| to zero.
44 ~Input();
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)
    [all...]
hpack_fuzz_util.cc 42 HpackFuzzUtil::Input::Input() : offset(0) {}
43 HpackFuzzUtil::Input::~Input() {}
114 bool HpackFuzzUtil::NextHeaderBlock(Input* input,
116 // ClusterFuzz may truncate input files if the fuzzer ran out of allocated
118 CHECK_LE(input->offset, input->input.size())
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
CheckCloseSupplier.java 40 abstract static class Input<T> extends CheckCloseSupplier<T>
44 public Input(InputSupplier<? extends T> delegate) {
  /external/llvm/unittests/Support/
YAMLParserTest.cpp 31 // Checks that the given input gives a parse error. Makes sure that an error
33 static void ExpectParseError(StringRef Message, StringRef Input) {
35 yaml::Stream Stream(Input, SM);
37 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input;
38 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input;
41 // Checks that the given input can be parsed without error.
42 static void ExpectParseSuccess(StringRef Message, StringRef Input) {
44 yaml::Stream Stream(Input, SM);
45 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input;
CommandLineTest.cpp 159 void testCommandLineTokenizer(ParserFunction *parse, const char *Input,
163 parse(Input, Saver, Actual);
173 const char *Input = "foo\\ bar \"foo bar\" \'foo bar\' 'foo\\\\bar' "
178 testCommandLineTokenizer(cl::TokenizeGNUCommandLine, Input, Output,
183 const char *Input = "a\\b c\\\\d e\\\\\"f g\" h\\\"i j\\\\\\\"k \"lmn\" o pqr "
187 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input, Output,
203 StackOption<std::string> Input(cl::Positional);
209 EXPECT_EQ(0, Input.getNumOccurrences());
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognitionException.cs 65 * 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)
128 : this("A recognition error occurred.", input, null) {
135 public RecognitionException(string message, IIntStream input)
136 : this(message, input, null) {
143 public RecognitionException(string message, IIntStream input, Exception innerException)
145 this._input = input;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognitionException.cs 66 * problem occurred and/or what was the expected input. While the parser
67 * knows its state (such as current input symbol and line info) that
70 * perhaps print an entire line of input not just a single token, for example.
78 /** <summary>What input stream did the error occur in?</summary> */
130 public RecognitionException( IIntStream input )
131 : this("A recognition error occurred.", input, null)
140 public RecognitionException(string message, IIntStream input)
141 : this(message, input, null)
150 public RecognitionException(string message, IIntStream input, Exception innerException)
153 this._input = input;
    [all...]
  /external/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 187 unsigned Input = phi->getOperand(1).getReg();
195 if (Input != Output) {
197 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
198 MRI.replaceRegWith(Output, Input);
  /external/chromium_org/third_party/webrtc/video/
video_send_stream.cc 284 VideoSendStreamInput* VideoSendStream::Input() { return this; }
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.hpp 71 struct Input
78 std::vector<Input> m_inputs;
  /external/chromium_org/v8/src/
liveedit.h 193 class Input {
200 virtual ~Input() {}
215 static void CalculateDifference(Input* input,
  /external/llvm/lib/Support/
YAMLTraits.cpp 42 // Input
45 Input::Input(StringRef InputContent,
57 Input::~Input() {
60 std::error_code Input::error() { return EC; }
63 void Input::HNode::anchor() {}
64 void Input::EmptyHNode::anchor() {}
65 void Input::ScalarHNode::anchor() {}
67 bool Input::outputting()
656 StringRef ScalarTraits<bool>::input(StringRef Scalar, void *, bool &Val) { function in class:ScalarTraits
672 StringRef ScalarTraits<StringRef>::input(StringRef Scalar, void *, function in class:ScalarTraits
683 StringRef ScalarTraits<std::string>::input(StringRef Scalar, void *, function in class:ScalarTraits
696 StringRef ScalarTraits<uint8_t>::input(StringRef Scalar, void *, uint8_t &Val) { function in class:ScalarTraits
711 StringRef ScalarTraits<uint16_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
727 StringRef ScalarTraits<uint32_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
743 StringRef ScalarTraits<uint64_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
758 StringRef ScalarTraits<int8_t>::input(StringRef Scalar, void *, int8_t &Val) { function in class:ScalarTraits
773 StringRef ScalarTraits<int16_t>::input(StringRef Scalar, void *, int16_t &Val) { function in class:ScalarTraits
788 StringRef ScalarTraits<int32_t>::input(StringRef Scalar, void *, int32_t &Val) { function in class:ScalarTraits
803 StringRef ScalarTraits<int64_t>::input(StringRef Scalar, void *, int64_t &Val) { function in class:ScalarTraits
815 StringRef ScalarTraits<double>::input(StringRef Scalar, void *, double &Val) { function in class:ScalarTraits
828 StringRef ScalarTraits<float>::input(StringRef Scalar, void *, float &Val) { function in class:ScalarTraits
842 StringRef ScalarTraits<Hex8>::input(StringRef Scalar, void *, Hex8 &Val) { function in class:ScalarTraits
857 StringRef ScalarTraits<Hex16>::input(StringRef Scalar, void *, Hex16 &Val) { function in class:ScalarTraits
872 StringRef ScalarTraits<Hex32>::input(StringRef Scalar, void *, Hex32 &Val) { function in class:ScalarTraits
887 StringRef ScalarTraits<Hex64>::input(StringRef Scalar, void *, Hex64 &Val) { function in class:ScalarTraits
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc 36 struct Input {
54 Input input; member in struct:chromeos::__anon8083::TestParams
64 { // Input.
77 { // Input.
90 { // Input.
104 { // Input.
118 { // Input.
135 { // Input.
152 { // Input
    [all...]
  /external/chromium_org/net/websockets/
websocket_frame_parser_test.cc 107 struct Input {
113 static const Input kInputs[] = {
131 std::vector<char> input; local
134 input.insert(input.end(),
142 EXPECT_TRUE(parser.Decode(&input.front(), input.size(), &frames));
313 std::vector<char> input(frame_header, frame_header + frame_header_length);
317 input.insert(input.end(), input_payload_size, 'a')
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_light.c 48 GLvector4f *input );
65 GLvector4f Input;
331 GLvector4f *input = ctx->_NeedEyeCoords ? VB->EyePtr : VB->AttribPtr[_TNL_ATTRIB_POS]; local
339 if (input->size <= 2 && input == VB->AttribPtr[_TNL_ATTRIB_POS]) {
341 _math_trans_4f( store->Input.data,
349 if (input->size <= 2) {
352 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 2);
355 if (input->size <= 1) {
358 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 1)
    [all...]
  /external/chromium_org/tools/usb_gadget/
hid_descriptors.py 94 Input = _DefineMainItem('Input', 8)
98 # Input, Output and Feature Item Properties
  /external/clang/include/clang/Driver/
Action.h 29 /// it is a job to transform an input using some tool.
75 Action(ActionClass _Kind, Action *Input, types::ID _Type)
76 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {}
103 const llvm::opt::Arg &Input;
108 const llvm::opt::Arg &getInputArg() const { return Input; }
122 BindArchAction(Action *Input, const char *_ArchName);
134 JobAction(ActionClass Kind, Action *Input, types::ID Type);
147 PreprocessJobAction(Action *Input, types::ID OutputType);
157 PrecompileJobAction(Action *Input, types::ID OutputType)
    [all...]
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 34 : Input(CommandLine), Position(Input.begin()-1) {}
47 // All private methods return true if there is more input available.
106 return Position != Input.end();
109 const StringRef Input;
Tooling.cpp 213 // Since the input might only be virtual, don't check whether it exists.
226 auto *Input = llvm::MemoryBuffer::getMemBuffer(It.getValue());
227 Invocation->getPreprocessorOpts().addRemappedFile(It.getKey(), Input);
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 45 FileID ID = Context.createInMemoryFile("input.cpp", "text");
53 FileID ID = Context.createInMemoryFile("input.cpp", "line1\nline2\nline3");
61 FileID ID = Context.createInMemoryFile("input.cpp", "");
69 FileID ID = Context.createInMemoryFile("input.cpp",
78 FileID ID = Context.createInMemoryFile("input.cpp",
112 FileID ID = Context.createInMemoryFile("input.cpp",
127 FileID ID = Context.createInMemoryFile("input.cpp",
139 FileID ID = Context.createInMemoryFile("input.cpp",
264 FileID ID = createFile("input.cpp", "line1\nline2\nline3\nline4");
271 getFileContentFromDisk("input.cpp"))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboTestUtil.hpp 101 struct Input
108 std::vector<Input> m_inputs;
  /external/mesa3d/src/mesa/tnl/
t_vb_light.c 48 GLvector4f *input );
65 GLvector4f Input;
331 GLvector4f *input = ctx->_NeedEyeCoords ? VB->EyePtr : VB->AttribPtr[_TNL_ATTRIB_POS]; local
339 if (input->size <= 2 && input == VB->AttribPtr[_TNL_ATTRIB_POS]) {
341 _math_trans_4f( store->Input.data,
349 if (input->size <= 2) {
352 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 2);
355 if (input->size <= 1) {
358 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 1)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
call_main.cc 71 void Input(const char * data, int len) {
217 // will get input from the console, parse it, and pass the appropriate
243 DEFINE_string(voiceinput, NULL, "RTP dump file for voice input.");
245 DEFINE_string(videoinput, NULL, "RTP dump file for video input.");
483 pump.client()->SignalLogInput.connect(&debug_log_, &DebugLog::Input);

Completed in 1641 milliseconds

1 2