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

1 2 3

  /frameworks/compile/mclinker/lib/MC/
Input.cpp 1 //===- Input.cpp ----------------------------------------------------------===//
9 #include <mcld/MC/Input.h>
16 // mcld::Input
18 Input::Input(llvm::StringRef pName)
30 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy)
42 Input::Input(llvm::StringRef pName,
57 Input::Input(llvm::StringRef pName
    [all...]
  /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.
  /frameworks/av/media/img_utils/include/img_utils/
Input.h 30 class ANDROID_API Input {
32 virtual ~Input();
35 * Open this Input.
52 * Skips bytes in the input.
60 * Close the Input. It is not valid to call open on a previously closed Input.
  /external/pdfium/core/src/fxcrt/
fx_basic_utf.cpp 17 void CFX_UTF8Decoder::Input(FX_BYTE byte)
48 void CFX_UTF8Encoder::Input(FX_WCHAR unicode)
87 encoder.Input(*pwsStr ++);
99 encoder.Input(*pwsStr ++);
  /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...]
  /frameworks/av/media/img_utils/src/
Input.cpp 17 #include <img_utils/Input.h>
22 Input::~Input() {}
24 status_t Input::open() { return OK; }
26 status_t Input::close() { return OK; }
28 ssize_t Input::skip(size_t count) {
  /frameworks/compile/mclinker/include/mcld/Script/
StrToken.h 30 Input,
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
local_sync_operation_resolver_unittest.cc 19 struct Input {
33 Input(FileChange* remote_file_change,
45 ScopedVector<Input> CreateInput() {
48 ScopedVector<Input> vector;
49 vector.push_back(new Input(NULL, SYNC_FILE_TYPE_UNKNOWN));
50 vector.push_back(new Input(NULL, SYNC_FILE_TYPE_FILE));
51 vector.push_back(new Input(NULL, SYNC_FILE_TYPE_DIRECTORY));
55 vector.push_back(new Input(
59 vector.push_back(new Input(
63 vector.push_back(new Input(
    [all...]
remote_sync_operation_resolver_unittest.cc 18 struct Input {
67 std::vector<Input> CreateInput() {
68 const Input inputs[] = {
126 std::vector<Input> inputs = CreateInput();
158 std::vector<Input> inputs = CreateInput();
190 std::vector<Input> inputs = CreateInput();
222 std::vector<Input> inputs = CreateInput();
254 std::vector<Input> inputs = CreateInput();
286 std::vector<Input> inputs = CreateInput();
318 std::vector<Input> inputs = CreateInput()
    [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);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 24 * Container class for CAT GET INPUT, GET IN KEY commands parameters.
27 public class Input implements Parcelable {
41 Input() {
56 private Input(Parcel in) {
92 public static final Parcelable.Creator<Input> CREATOR = new Parcelable.Creator<Input>() {
94 public Input createFromParcel(Parcel in) {
95 return new Input(in);
99 public Input[] newArray(int size) {
100 return new Input[size]
    [all...]
  /external/chromium_org/third_party/webrtc/video/
video_send_stream.cc 277 VideoSendStreamInput* VideoSendStream::Input() { return this; }
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.hpp 71 struct Input
78 std::vector<Input> m_inputs;
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 34 // SectionMap::Input
36 SectionMap::Input::Input(const std::string& pName,
56 SectionMap::Input::Input(const InputSectDesc& pInputDesc)
189 return std::make_pair((const Output*)NULL, (const Input*)NULL);
203 return std::make_pair((Output*)NULL, (Input*)NULL);
248 Input* input = new Input(pInputSection, pPolicy) local
256 Input* input = new Input(pInputSection, pPolicy); local
285 Input* input = new Input(pInputDesc); local
293 Input* input = new Input(pInputDesc); local
    [all...]
  /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::__anon7974::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...]

Completed in 2486 milliseconds

1 2 3