Searched defs:input (Results 151 - 175 of 1709) sorted by relevance

1234567891011>>

/external/lldb/test/functionalities/thread/multi_break/
H A Dmain.cpp35 thread_func (void *input) argument
/external/llvm/lib/MC/
H A DYAML.cpp27 StringRef yaml::ScalarTraits<yaml::BinaryRef>::input(StringRef Scalar, void *, function in class:yaml::ScalarTraits
/external/openfst/src/include/fst/
H A Dsymbol-table-ops.h39 bool input) {
46 typename Arc::Label sym = (input) ? aiter.Value().ilabel :
88 SymbolTable *FstReadSymbols(const string &filename, bool input);
38 PruneSymbolTable(const Fst<Arc> &fst, const SymbolTable &syms, bool input) argument
/external/oprofile/libregex/tests/
H A Djava_test.cpp26 void check_result(string const & input, string const & output, argument
30 cerr << "for:\n\"" << input << "\"\n"
/external/oprofile/libutil/
H A Dop_libiberty.c30 void * xmemdup (void const * input, size_t copy_size, size_t alloc_size) argument
34 memcpy(output, input, copy_size);
/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/skia/include/effects/
H A DSkTileImageFilter.h20 @param input Input from which the subregion defined by srcRect will be tiled
23 SkImageFilter* input) {
24 return SkNEW_ARGS(SkTileImageFilter, (srcRect, dstRect, input));
35 SkTileImageFilter(const SkRect& srcRect, const SkRect& dstRect, SkImageFilter* input) argument
36 : INHERITED(input), fSrcRect(srcRect), fDstRect(dstRect) {}
22 Create(const SkRect& srcRect, const SkRect& dstRect, SkImageFilter* input) argument
/external/smali/smali/src/main/java/org/jf/smali/
H A DLexerErrorInterface.java44 public ANTLRLexerWithErrorInterface(CharStream input, RecognizerSharedState state) { argument
45 super(input, state);
/external/stlport/test/unit/
H A Dlogic_test.cpp48 bool input [7] = { 1, 0, 0, 1, 1, 1, 1 }; local
50 int n = count_if(input, input + 7, logical_not<bool>());
/external/valgrind/main/memcheck/tests/s390x/
H A Dcu42.c8 /* Define various input buffers. */
68 uint8_t *input; local
71 input = malloc(10);
72 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint
74 /* Read 4 bytes from input buffer. First byte is uninitialised */
75 input = malloc(10);
76 input[1] = input[2] = input[3] = 0x0;
77 do_cu42(buf, sizeof buf, (void *)input,
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DInterp.java44 CharStream input = null;
45 /** If the input source is a testsuite file, where is it? */
52 input = new ANTLRFileStream(gunitFile);
57 input = new ANTLRInputStream(System.in);
59 GrammarInfo grammarInfo = parse(input);
67 input = new ANTLRFileStream(gunitFile);
72 input = new ANTLRInputStream(System.in);
74 gUnitExecutor executer = new gUnitExecutor(parse(input), testsuiteDir);
99 public static GrammarInfo parse(CharStream input) throws RecognitionException { argument
100 gUnitLexer lexer = new gUnitLexer(input);
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DAbstractInputEditor.java41 protected ITestCaseInput input; field in class:AbstractInputEditor
42 public void setInput(ITestCaseInput input) { argument
43 this.input = input;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DEarlyExitException.cs55 public EarlyExitException(int decisionNumber, IIntStream input) argument
56 : base(input) {
60 public EarlyExitException(string message, int decisionNumber, IIntStream input) argument
61 : base(message, input) {
65 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException) argument
66 : base(message, input, innerException) {
H A DFailedPredicateException.cs62 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) argument
63 : base(input) {
68 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) argument
69 : base(message, input) {
74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException) argument
75 : base(message, input, innerException) {
H A DMismatchedRangeException.cs55 public MismatchedRangeException(int a, int b, IIntStream input) argument
56 : base(input) {
61 public MismatchedRangeException(string message, int a, int b, IIntStream input) argument
62 : base(message, input) {
67 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException) argument
68 : base(message, input, innerException) {
H A DMismatchedSetException.cs54 public MismatchedSetException(BitSet expecting, IIntStream input) argument
55 : base(input) {
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) argument
60 : base(message, input) {
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
65 : base(message, input, innerException) {
H A DMismatchedTokenException.cs61 public MismatchedTokenException(int expecting, IIntStream input) argument
62 : this(expecting, input, null) {
65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames) argument
66 : base(input) {
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) argument
73 : base(message, input) {
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) argument
82 : base(message, input, innerException) {
H A DMismatchedTreeNodeException.cs55 public MismatchedTreeNodeException(int expecting, ITreeNodeStream input) argument
56 : base(input) {
60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) argument
61 : base(message, input) {
65 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException) argument
66 : base(message, input, innerException) {
H A DMissingTokenException.cs59 public MissingTokenException(int expecting, IIntStream input, object inserted) argument
60 : this(expecting, input, inserted, null) {
63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
64 : base(expecting, input, tokenNames) {
68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
69 : base(message, expecting, input, tokenNames) {
73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) argument
74 : base(message, expecting, input, tokenNames, innerException) {
H A DUnwantedTokenException.cs53 public UnwantedTokenException(int expecting, IIntStream input) argument
54 : base(expecting, input) {
57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames) argument
58 : base(expecting, input, tokenNames) {
61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) argument
62 : base(message, expecting, input, tokenNames) {
65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) argument
66 : base(message, expecting, input, tokenNames, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTracer.cs50 public IIntStream input; field in class:Antlr.Runtime.Debug.Tracer
53 public Tracer(IIntStream input) argument
55 this.input = input;
80 if (input is ITokenStream)
82 return ((ITokenStream) input).LT(k);
84 return (char) input.LA(k);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs38 public IIntStream input; field in class:Antlr.Runtime.Tree.CommonErrorNode
43 public CommonErrorNode(ITokenStream input, IToken start, IToken stop, argument
55 this.input = input;
74 j = ((ITokenStream)input).Count;
76 badText = ((ITokenStream)input).ToString(i, j);
78 badText = ((ITreeNodeStream)input).ToString(start, stop);
H A DTreeFilter.cs87 public TreeFilter( ITreeNodeStream input )
88 : this( input, new RecognizerSharedState() )
91 public TreeFilter( ITreeNodeStream input, RecognizerSharedState state ) argument
92 : base( input, state )
94 originalAdaptor = input.TreeAdaptor;
95 originalTokenStream = input.TokenStream;
107 input = new CommonTreeNodeStream( originalAdaptor, t );
108 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DEarlyExitException.cs60 public EarlyExitException(int decisionNumber, IIntStream input) argument
61 : base(input)
66 public EarlyExitException(string message, int decisionNumber, IIntStream input) argument
67 : base(message, input)
72 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException) argument
73 : base(message, input, innerException)
H A DFailedPredicateException.cs67 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) argument
68 : base(input)
74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) argument
75 : base(message, input)
81 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException) argument
82 : base(message, input, innerException)

Completed in 519 milliseconds

1234567891011>>