Searched defs:input (Results 51 - 75 of 900) sorted by relevance

1234567891011>>

/external/compiler-rt/test/Unit/ppc/
H A Dfloatunditf_test.h2 uint64_t input; member in struct:testCase
[all...]
/external/iproute2/tc/
H A Demp_ematch.y34 %start input
36 input: label
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DKeyNames.java1 package com.jme3.input;
3 import static com.jme3.input.KeyInput.*;
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DTrigger.java33 package com.jme3.input.controls;
36 * A trigger represents a physical input, such as a keyboard key, a mouse
/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
H A DDummyKeyInput.java33 package com.jme3.input.dummy;
35 import com.jme3.input.KeyInput;
39 * input events.
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderUtils.java37 public static String convertToGLSL130(String input, boolean isFrag){ argument
41 input = input.replaceAll("varying", "in");
43 input = input.replaceAll("attribute", "in");
44 input = input.replaceAll("varying", "out");
46 sb.append(input);
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/
H A DConverter.java38 public T convert(T input, Map<String, String> params); argument
/external/smali/smali/src/main/java/org/jf/smali/
H A DOdexedInstructionException.java37 OdexedInstructionException(IntStream input, String odexedInstruction) { argument
38 super(input);
/external/stlport/test/unit/
H A Dneq_test.cpp33 int input [3] = { 1, 2, 3 }; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitTestInput.java30 /** A class which contains input information of an individual testuite */
32 public String input; // a test input string for a testsuite field in class:gUnitTestInput
33 public boolean isFile; // if true, the input represents a filename
36 public gUnitTestInput(String input, boolean isFile, int line) { argument
37 this.input = input;
43 return JUnitCodeGen.escapeForJava(input);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRInputStream.cs45 public ANTLRInputStream(Stream input) argument
46 : this(input, null) {
49 public ANTLRInputStream(Stream input, int size) argument
50 : this(input, size, null) {
53 public ANTLRInputStream(Stream input, Encoding encoding) argument
54 : this(input, InitialBufferSize, encoding) {
57 public ANTLRInputStream(Stream input, int size, Encoding encoding) argument
58 : this(input, size, ReadBufferSize, encoding) {
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding) argument
62 : base(GetStreamReader(input, encodin
65 GetStreamReader(Stream input, Encoding encoding) argument
[all...]
H A DMismatchedNotSetException.cs51 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
52 : base(expecting, input) {
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
56 : base(message, expecting, input) {
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
60 : base(message, expecting, input, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRInputStream.cs47 public ANTLRInputStream( Stream input )
48 : this( input, null )
52 public ANTLRInputStream( Stream input, int size ) argument
53 : this( input, size, null )
57 public ANTLRInputStream( Stream input, Encoding encoding ) argument
58 : this( input, InitialBufferSize, encoding )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding ) argument
63 : this( input, size, ReadBufferSize, encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding ) argument
68 : base(GetStreamReader(input, encodin
72 GetStreamReader(Stream input, Encoding encoding) argument
[all...]
H A DMismatchedNotSetException.cs56 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
57 : base(expecting, input)
61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
62 : base(message, expecting, input)
66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
67 : base(message, expecting, input, innerException)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTracer.cs47 public IIntStream input; field in class:Antlr.Runtime.Debug.Tracer
50 public Tracer( IIntStream input )
52 this.input = input;
77 if ( input is ITokenStream )
79 return ( (ITokenStream)input ).LT( k );
81 return (char)input.LA( k );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRInputStream.java39 public ANTLRInputStream(InputStream input) throws IOException { argument
40 this(input, null);
43 public ANTLRInputStream(InputStream input, int size) throws IOException { argument
44 this(input, size, null);
47 public ANTLRInputStream(InputStream input, String encoding) throws IOException { argument
48 this(input, INITIAL_BUFFER_SIZE, encoding);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { argument
52 this(input, size, READ_BUFFER_SIZE, encoding);
55 public ANTLRInputStream(InputStream input, argument
63 isr = new InputStreamReader(input, encodin
[all...]
H A DFailedPredicateException.java42 public FailedPredicateException(IntStream input, argument
46 super(input);
H A DMismatchedRangeException.java36 public MismatchedRangeException(int a, int b, IntStream input) { argument
37 super(input);
H A DMissingTokenException.java38 public MissingTokenException(int expecting, IntStream input, Object inserted) { argument
39 super(expecting, input);
H A DNoViableAltException.java41 IntStream input)
43 super(input);
50 if ( input instanceof CharStream ) {
38 NoViableAltException(String grammarDecisionDescription, int decisionNumber, int stateNumber, IntStream input) argument
H A DUnwantedTokenException.java35 public UnwantedTokenException(int expecting, IntStream input) { argument
36 super(expecting, input);
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRecognitionException.h35 id<ANTLRIntStream> input; variable
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRecognitionException.h35 id<ANTLRIntStream> input; variable
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRecognitionException.h35 id<ANTLRIntStream> input; variable
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRecognitionException.h35 id<ANTLRIntStream> input; variable
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input; variable

Completed in 770 milliseconds

1234567891011>>