Searched defs:Input (Results 1 - 25 of 66) sorted by relevance

123

/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DInput.cpp7 #include "Input.h"
16 Input::Input() : mCount(0), mString(0) function in class:pp::Input
20 Input::Input(size_t count, const char *const string[], const int length[]) : function in class:pp::Input
32 size_t Input::read(char *buf, size_t maxSize)
H A DInput.h17 class Input class in namespace:pp
20 Input();
21 Input(size_t count, const char *const string[], const int length[]);
52 // Input.
/external/llvm/unittests/Support/
H A DMD5Test.cpp22 /// \brief Tests an arbitrary set of bytes passed as \p Input.
23 void TestMD5Sum(ArrayRef<uint8_t> Input, StringRef Final) { argument
25 Hash.update(Input);
33 void TestMD5Sum(StringRef Input, StringRef Final) { argument
35 Hash.update(Input);
H A DCompressionTest.cpp26 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) { argument
29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level));
32 zlib::uncompress(Compressed, Uncompressed, Input.size()));
33 EXPECT_EQ(Input, Uncompressed);
34 if (Input.size() > 0) {
37 zlib::uncompress(Compressed, Uncompressed, Input.size() - 1));
H A DYAMLParserTest.cpp33 static void ExpectParseError(StringRef Message, StringRef Input) { argument
35 yaml::Stream Stream(Input, SM);
37 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input; local
38 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input; local
42 static void ExpectParseSuccess(StringRef Message, StringRef Input) { argument
44 yaml::Stream Stream(Input, SM);
45 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input; local
H A DCommandLineTest.cpp159 void testCommandLineTokenizer(ParserFunction *parse, const char *Input, argument
163 parse(Input, Saver, Actual);
173 const char *Input = "foo\\ bar \"foo bar\" \'foo bar\' 'foo\\\\bar' " local
178 testCommandLineTokenizer(cl::TokenizeGNUCommandLine, Input, Output,
183 const char *Input = "a\\b c\\\\d e\\\\\"f g\" h\\\"i j\\\\\\\"k \"lmn\" o pqr " local
187 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input, Output,
203 StackOption<std::string> Input(cl::Positional);
209 EXPECT_EQ(0, Input.getNumOccurrences());
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImageCommon.h39 ObjectImageCommon(ObjectBuffer *Input, std::unique_ptr<object::ObjectFile> Obj) argument
40 : ObjectImage(Input), // saves Input as Buffer and takes ownership
46 ObjectImageCommon(ObjectBuffer* Input) argument
47 : ObjectImage(Input) // saves Input as Buffer and takes ownership
54 ObjectImageCommon(std::unique_ptr<object::ObjectFile> Input) argument
55 : ObjectImage(nullptr), ObjFile(std::move(Input)) {}
/external/chromium_org/net/spdy/fuzzing/
H A Dhpack_fuzz_util.h42 struct NET_EXPORT_PRIVATE Input { struct in class:net::HpackFuzzUtil
43 Input(); // Initializes |offset| to zero.
44 ~Input();
59 static bool NextHeaderBlock(Input* input, base::StringPiece* out);
H A Dhpack_fuzz_util.cc42 HpackFuzzUtil::Input::Input() : offset(0) {} function in class:net::HpackFuzzUtil::Input
43 HpackFuzzUtil::Input::~Input() {}
114 bool HpackFuzzUtil::NextHeaderBlock(Input* input,
/external/llvm/include/llvm/ExecutionEngine/
H A DObjectImage.h34 ObjectImage(ObjectBuffer *Input) : Buffer(Input) {} argument
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_utf.cpp17 void CFX_UTF8Decoder::Input(FX_BYTE byte) function in class:CFX_UTF8Decoder
48 void CFX_UTF8Encoder::Input(FX_WCHAR unicode) function in class:CFX_UTF8Encoder
87 encoder.Input(*pwsStr ++);
99 encoder.Input(*pwsStr ++);
/external/guava/guava-tests/test/com/google/common/io/
H A DCheckCloseSupplier.java40 abstract static class Input<T> extends CheckCloseSupplier<T> class in class:CheckCloseSupplier
44 public Input(InputSupplier<? extends T> delegate) { method in class:CheckCloseSupplier.Input
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs203 public IIntStream Input { property in class:Antlr.Runtime.RecognitionException
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs232 public IIntStream Input property in class:Antlr.Runtime.RecognitionException
/external/clang/lib/Driver/
H A DAction.cpp46 : Action(InputClass, _Type), Input(_Input) {
51 BindArchAction::BindArchAction(Action *Input, const char *_ArchName) argument
52 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) {
57 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) argument
58 : Action(Kind, Input, Type) {
67 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) argument
68 : JobAction(PreprocessJobClass, Input, OutputType) {
73 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) argument
74 : JobAction(PrecompileJobClass, Input, OutputTyp
79 AnalyzeJobAction(Action *Input, types::ID OutputType) argument
85 MigrateJobAction(Action *Input, types::ID OutputType) argument
91 CompileJobAction(Action *Input, types::ID OutputType) argument
97 AssembleJobAction(Action *Input, types::ID OutputType) argument
121 VerifyJobAction(ActionClass Kind, Action *Input, types::ID Type) argument
137 VerifyDebugInfoJobAction(Action *Input, types::ID Type) argument
144 VerifyPCHJobAction(Action *Input, types::ID Type) argument
[all...]
/external/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp187 unsigned Input = phi->getOperand(1).getReg(); local
195 if (Input != Output) {
197 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
198 MRI.replaceRegWith(Output, Input);
/external/clang/tools/clang-format/
H A DClangFormat.cpp117 static bool parseLineRange(StringRef Input, unsigned &FromLine, argument
119 std::pair<StringRef, StringRef> LineRange = Input.split(':');
/external/deqp/modules/gles31/functional/
H A Des31fFboTestUtil.hpp71 struct Input struct in class:deqp::gles31::Functional::FboTestUtil::Texture2DShader
78 std::vector<Input> m_inputs;
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp168 static void reportError(StringRef Input, std::error_code EC) { argument
169 if (Input == "-")
170 Input = "<stdin>";
172 errs() << Input << ": " << EC.message() << "\n";
177 static void reportError(StringRef Input, StringRef Message) { argument
178 if (Input == "-")
179 Input = "<stdin>";
181 errs() << Input << ": " << Message << "\n";
/external/chromium_org/v8/src/
H A Dliveedit.h193 class Input { class in class:v8::internal::Comparator
200 virtual ~Input() {}
215 static void CalculateDifference(Input* input,
/external/llvm/lib/Support/
H A DYAMLTraits.cpp42 // Input
45 Input::Input(StringRef InputContent, function in class:Input
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
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dproxy_config_service_impl_unittest.cc36 struct Input { struct in namespace:chromeos::__anon3458
54 Input input;
64 { // Input.
77 { // Input.
90 { // Input.
104 { // Input.
118 { // Input.
135 { // Input.
152 { // Input.
169 { // Input
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_frame_parser_test.cc107 struct Input { struct
113 static const Input kInputs[] = {
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_light.c65 GLvector4f Input; member in struct:light_stage_data
341 _math_trans_4f( store->Input.data,
352 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 2);
358 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 1);
361 input = &store->Input;
433 _mesa_vector4f_alloc( &store->Input, 0, size, 32 );
455 _mesa_vector4f_free( &store->Input );
/external/chromium_org/third_party/webrtc/video/
H A Dvideo_send_stream.cc284 VideoSendStreamInput* VideoSendStream::Input() { return this; } function in class:webrtc::internal::VideoSendStream

Completed in 641 milliseconds

123