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

1 2 3

  /frameworks/compile/mclinker/lib/MC/
MCLDInput.cpp 17 // mcld::Input
19 Input::Input(llvm::StringRef pName)
30 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy)
41 Input::Input(llvm::StringRef pName,
55 Input::Input(llvm::StringRef pName,
70 Input::~Input(
    [all...]
  /external/chromium_org/third_party/angle_dx11/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[]);
39 // Input.
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
Input.java 33 package com.jme3.input;
36 * Abstract interface for an input device.
42 public interface Input {
50 * Queries the device for input. All events should be sent to the
53 * @see #setInputListener(com.jme3.input.RawInputListener)
70 * Sets the input listener to receive events from this device. The
  /external/chromium_org/v8/src/
liveedit.h 152 class Input {
159 virtual ~Input() {}
174 static void CalculateDifference(Input* input,
  /external/v8/src/
liveedit.h 148 class Input {
155 virtual ~Input() {}
170 static void CalculateDifference(Input* input,
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
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/
CommandLineTest.cpp 132 void testCommandLineTokenizer(ParserFunction *parse, const char *Input,
136 parse(Input, Saver, Actual);
146 const char *Input = "foo\\ bar \"foo bar\" \'foo bar\' 'foo\\\\bar' "
151 testCommandLineTokenizer(cl::TokenizeGNUCommandLine, Input, Output,
156 const char *Input = "a\\b c\\\\d e\\\\\"f g\" h\\\"i j\\\\\\\"k \"lmn\" o pqr "
160 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input, Output,
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;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Input.java 28 * Interface for a source for binary input. This is similar to
30 * are declared, and multibyte input is defined to be little-endian.
32 public interface Input {
  /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 191 unsigned Input = phi->getOperand(1).getReg();
199 if (Input != Output) {
201 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
202 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...]
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDInput.h 10 // Input class inherits MCLDFile, which is used to represent a input file
29 /** \class Input
30 * \brief Input provides the information of a input file.
32 class Input
48 explicit Input(llvm::StringRef pName);
50 Input(llvm::StringRef pName,
53 Input(llvm::StringRef pName,
58 Input(llvm::StringRef pName
    [all...]
  /external/llvm/lib/Support/
YAMLTraits.cpp 40 // Input
43 Input::Input(StringRef InputContent, void *Ctxt)
50 Input::~Input() {
54 error_code Input::error() {
58 void Input::setDiagHandler(SourceMgr::DiagHandlerTy Handler, void *Ctxt) {
62 bool Input::outputting() {
66 bool Input::setCurrentDocument() {
81 void Input::nextDocument()
601 StringRef ScalarTraits<bool>::input(StringRef Scalar, void *, bool &Val) { function in class:ScalarTraits
617 StringRef ScalarTraits<StringRef>::input(StringRef Scalar, void *, function in class:ScalarTraits
630 StringRef ScalarTraits<uint8_t>::input(StringRef Scalar, void *, uint8_t &Val) { function in class:ScalarTraits
645 StringRef ScalarTraits<uint16_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
661 StringRef ScalarTraits<uint32_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
677 StringRef ScalarTraits<uint64_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
692 StringRef ScalarTraits<int8_t>::input(StringRef Scalar, void *, int8_t &Val) { function in class:ScalarTraits
707 StringRef ScalarTraits<int16_t>::input(StringRef Scalar, void *, int16_t &Val) { function in class:ScalarTraits
722 StringRef ScalarTraits<int32_t>::input(StringRef Scalar, void *, int32_t &Val) { function in class:ScalarTraits
737 StringRef ScalarTraits<int64_t>::input(StringRef Scalar, void *, int64_t &Val) { function in class:ScalarTraits
749 StringRef ScalarTraits<double>::input(StringRef Scalar, void *, double &Val) { function in class:ScalarTraits
762 StringRef ScalarTraits<float>::input(StringRef Scalar, void *, float &Val) { function in class:ScalarTraits
776 StringRef ScalarTraits<Hex8>::input(StringRef Scalar, void *, Hex8 &Val) { function in class:ScalarTraits
791 StringRef ScalarTraits<Hex16>::input(StringRef Scalar, void *, Hex16 &Val) { function in class:ScalarTraits
806 StringRef ScalarTraits<Hex32>::input(StringRef Scalar, void *, Hex32 &Val) { function in class:ScalarTraits
821 StringRef ScalarTraits<Hex64>::input(StringRef Scalar, void *, Hex64 &Val) { function in class:ScalarTraits
    [all...]
  /external/chromium/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc 26 struct Input { // Fields of chromeos::ProxyConfigServiceImpl::ProxyConfig.
53 Input input; member in struct:chromeos::__anon4446::__anon4447
66 { // Input.
82 { // Input.
98 { // Input.
115 { // Input.
132 { // Input.
152 { // Input.
172 { // Input
455 const Input& input = tests[i].input; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
call_main.cc 64 void Input(const char * data, int len) {
196 // the the input voice and video streams.
212 // will get input from the console, parse it, and pass the appropriate
231 DEFINE_string(voiceinput, NULL, "RTP dump file for voice input.");
233 DEFINE_string(videoinput, NULL, "RTP dump file for video input.");
378 pump.client()->SignalLogInput.connect(&debug_log_, &DebugLog::Input);
  /external/chromium_org/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc 36 struct Input {
54 Input input; member in struct:chromeos::__anon7031::TestParams
64 { // Input.
77 { // Input.
90 { // Input.
104 { // Input.
118 { // Input.
135 { // Input.
152 { // Input
    [all...]
  /external/chromium_org/net/websockets/
websocket_frame_parser_unittest.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/clang/include/clang/Driver/
Action.h 29 /// it is a job to transform an input using some tool.
74 Action(ActionClass _Kind, Action *Input, types::ID _Type)
75 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {}
102 const llvm::opt::Arg &Input;
107 const llvm::opt::Arg &getInputArg() const { return Input; }
121 BindArchAction(Action *Input, const char *_ArchName);
133 JobAction(ActionClass Kind, Action *Input, types::ID Type);
146 PreprocessJobAction(Action *Input, types::ID OutputType);
156 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;

Completed in 2968 milliseconds

1 2 3