Searched refs:input (Results 1 - 25 of 3184) sorted by relevance

1234567891011>>

/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/libvpx/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/chromium_org/tools/gn/
H A Dfilesystem_utils_unittest.cc21 std::string input; local
22 EXPECT_EQ("", FindExtension(&input).as_string());
23 input = "foo/bar/baz";
24 EXPECT_EQ("", FindExtension(&input).as_string());
25 input = "foo.";
26 EXPECT_EQ("", FindExtension(&input).as_string());
27 input = "f.o.bar";
28 EXPECT_EQ("bar", FindExtension(&input).as_string());
29 input = "foo.bar/";
30 EXPECT_EQ("", FindExtension(&input)
66 std::string input; local
86 std::string input; local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dntohs.c12 uint8_t input[2]; local
13 memcpy(input, &networkshort, 2);
15 return ((((uint32_t) input[0]) << 8) |
16 ((uint32_t) input[1]));
H A Dntohl.c12 uint8_t input[4]; local
13 memcpy(input, &networklong, 4);
15 return ((((uint32_t) input[0]) << 24) |
16 (((uint32_t) input[1]) << 16) |
17 (((uint32_t) input[2]) << 8) |
18 ((uint32_t) input[3]));
/external/compiler-rt/lib/asan/lit_tests/TestCases/Helpers/
H A Dinit-order-pthread-create-extra.cc1 void *bar(void *input);
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DInputListener.java33 package com.jme3.input.controls;
36 * A generic interface for input listeners, the {@link AnalogListener} and
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A Dxxd.pl36 open($input, '<', $fname) or die "Can't open file for read: $fname $!";
38 $text = <$input>;
39 close($input);
/external/clang/test/Sema/
H A Dformat-strings-enum.c19 void test(TestEnum input) { argument
20 printf("%d", input); // no-warning
23 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has type 'TestEnum'}}
30 void testLong(LongEnum input) { argument
31 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has type 'LongEnum'}}
34 printf("%lu", input);
H A Dformat-strings-enum-fixed-type.cpp18 void test(TestEnum input) { argument
19 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has type 'TestEnum'}}
22 printf("%hd", input); // no-warning
26 printf("%d", input); // no-warning
29 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has type 'TestEnum'}}
36 void testLong(LongEnum input) { argument
37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has type 'LongEnum'}}
40 printf("%lu", input);
48 void testUnderlyingTypedef(ShortEnum input) { argument
49 printf("%hhd", input); // expecte
66 testTypedefChain(ShortEnum2 input) argument
78 testChar(CharEnum input) argument
[all...]
/external/qemu/android/utils/
H A Dlineinput.h17 /* A LineInput is used to read input text, one line at a time,
25 /* Read next line from input. The result is zero-terminated with
34 const char* lineInput_getLine( LineInput* input );
39 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize );
42 int lineInput_getLineNumber( LineInput* input );
45 int lineInput_isEof( LineInput* input );
51 int lineInput_getError( LineInput* input );
54 void lineInput_free( LineInput* input );
H A Dlineinput.c41 LineInput* input; local
43 ANEW0(input);
44 input->line = input->line0;
45 input->line_size = sizeof(input->line0);
47 return input;
54 LineInput* input = _lineInput_new(); local
56 input->std.file = file;
57 return input;
85 lineInput_getLineAndSize( LineInput* input, size_t *pSize ) argument
174 _lineInput_getLineFromStdFile( LineInput* input, FILE* file ) argument
[all...]
/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/runtime/Java/src/main/java/org/antlr/runtime/
H A DParser.java36 public TokenStream input; field in class:Parser
38 public Parser(TokenStream input) { argument
40 setTokenStream(input);
43 public Parser(TokenStream input, RecognizerSharedState state) { argument
45 this.input = input;
50 if ( input!=null ) {
51 input.seek(0); // rewind the input
55 protected Object getCurrentInputSymbol(IntStream input) { argument
59 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
80 setTokenStream(TokenStream input) argument
[all...]
/external/clang/lib/Basic/
H A DVersionTuple.cpp38 static bool parseInt(StringRef &input, unsigned &value) { argument
40 if (input.empty()) return true;
42 char next = input[0];
43 input = input.substr(1);
47 while (!input.empty()) {
48 next = input[0];
50 input = input.substr(1);
57 bool VersionTuple::tryParse(StringRef input) { argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3filestream.c3 * is a filesystem based input set and all the characters in the filestream
7 * sets can be supported from input files. The ANTLR3 C runtime expects
49 static void setupInputStream (pANTLR3_INPUT_STREAM input);
56 pANTLR3_INPUT_STREAM input; local
63 input = antlr3CreateFileStream(fileName);
64 if (input == NULL)
72 input->encoding = encoding;
77 setupInputStream(input);
81 input->istream->streamName = input
91 pANTLR3_INPUT_STREAM input; local
130 setupInputStream(pANTLR3_INPUT_STREAM input) argument
312 pANTLR3_INPUT_STREAM input; local
353 antlr3read8Bit(pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 fileName) argument
446 pANTLR3_INPUT_STREAM input; local
[all...]
H A Dantlr3inputstream.c2 /// Base functions to initialize and manipulate any input stream
37 // Generic 8 bit input such as latin-1
55 static void antlr3InputClose (pANTLR3_INPUT_STREAM input);
56 static void antlr3InputReset (pANTLR3_INPUT_STREAM input);
57 static void antlr38BitReuse (pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 inString, ANTLR3_UINT32 size, pANTLR3_UINT8 name);
58 static void * antlr38BitLT (pANTLR3_INPUT_STREAM input, ANTLR3_INT32 lt);
59 static ANTLR3_UINT32 antlr38BitSize (pANTLR3_INPUT_STREAM input);
60 static pANTLR3_STRING antlr38BitSubstr (pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTLR3_MARKER stop);
61 static ANTLR3_UINT32 antlr38BitGetLine (pANTLR3_INPUT_STREAM input);
62 static void * antlr38BitGetLineBuf (pANTLR3_INPUT_STREAM input);
125 antlr38BitSetupStream(pANTLR3_INPUT_STREAM input) argument
136 antlr3GenericSetupStream(pANTLR3_INPUT_STREAM input) argument
203 antlr3InputClose(pANTLR3_INPUT_STREAM input) argument
239 antlr38BitSetUcaseLA(pANTLR3_INPUT_STREAM input, ANTLR3_BOOLEAN flag) argument
261 antlr3InputReset(pANTLR3_INPUT_STREAM input) argument
288 antlr38BitReuse(pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 inString, ANTLR3_UINT32 size, pANTLR3_UINT8 name) argument
317 pANTLR3_INPUT_STREAM input; local
352 pANTLR3_INPUT_STREAM input; local
379 pANTLR3_INPUT_STREAM input; local
402 antlr38BitLT(pANTLR3_INPUT_STREAM input, ANTLR3_INT32 lt) argument
418 pANTLR3_INPUT_STREAM input; local
433 antlr38BitSize(pANTLR3_INPUT_STREAM input) argument
448 pANTLR3_INPUT_STREAM input; local
514 pANTLR3_INPUT_STREAM input; local
552 pANTLR3_INPUT_STREAM input; local
573 pANTLR3_INPUT_STREAM input; local
603 antlr38BitSubstr(pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTLR3_MARKER stop) argument
614 antlr38BitGetLine(pANTLR3_INPUT_STREAM input) argument
626 antlr38BitGetLineBuf(pANTLR3_INPUT_STREAM input) argument
637 antlr38BitGetCharPosition(pANTLR3_INPUT_STREAM input) argument
654 antlr38BitSetLine(pANTLR3_INPUT_STREAM input, ANTLR3_UINT32 line) argument
669 antlr38BitSetCharPosition(pANTLR3_INPUT_STREAM input, ANTLR3_UINT32 position) argument
685 antlr38BitSetNewLineChar(pANTLR3_INPUT_STREAM input, ANTLR3_UINT32 newlineChar) argument
702 antlr3UTF16SetupStream(pANTLR3_INPUT_STREAM input, ANTLR3_BOOLEAN machineBigEndian, ANTLR3_BOOLEAN inputBigEndian) argument
780 pANTLR3_INPUT_STREAM input; local
859 pANTLR3_INPUT_STREAM input; local
998 pANTLR3_INPUT_STREAM input; local
1015 pANTLR3_INPUT_STREAM input; local
1046 antlr3UTF16Substr(pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTLR3_MARKER stop) argument
1062 pANTLR3_INPUT_STREAM input; local
1139 pANTLR3_INPUT_STREAM input; local
1281 pANTLR3_INPUT_STREAM input; local
1360 pANTLR3_INPUT_STREAM input; local
1500 antlr3UTF32SetupStream(pANTLR3_INPUT_STREAM input, ANTLR3_BOOLEAN machineBigEndian, ANTLR3_BOOLEAN inputBigEndian) argument
1572 pANTLR3_INPUT_STREAM input; local
1605 pANTLR3_INPUT_STREAM input; local
1620 antlr3UTF32Substr(pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTLR3_MARKER stop) argument
1635 pANTLR3_INPUT_STREAM input; local
1669 pANTLR3_INPUT_STREAM input; local
1693 pANTLR3_INPUT_STREAM input; local
1724 pANTLR3_INPUT_STREAM input; local
1750 antlr3UTF8SetupStream(pANTLR3_INPUT_STREAM input) argument
1806 pANTLR3_INPUT_STREAM input; local
1872 pANTLR3_INPUT_STREAM input; local
2013 antlr3EBCDICSetupStream(pANTLR3_INPUT_STREAM input) argument
2036 pANTLR3_INPUT_STREAM input; local
[all...]
/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 DParser.cs42 public ITokenStream input; field in class:Antlr.Runtime.Parser
44 public Parser(ITokenStream input) argument
47 TokenStream = input;
50 public Parser(ITokenStream input, RecognizerSharedState state) argument
53 this.input = input;
58 if (input != null) {
59 input.Seek(0); // rewind the input
63 protected override object GetCurrentInputSymbol(IIntStream input) { argument
67 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
[all...]
/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...]
/external/chromium_org/content/browser/gamepad/
H A Dgamepad_standard_mappings_linux.cc13 float AxisToButton(float input) { argument
14 return (input + 1.f) / 2.f;
17 float AxisNegativeAsButton(float input) { argument
18 return (input < -0.5f) ? 1.f : 0.f;
21 float AxisPositiveAsButton(float input) { argument
22 return (input > 0.5f) ? 1.f : 0.f;
26 const WebKit::WebGamepad& input,
28 *mapped = input;
29 mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[2]);
30 mapped->buttons[kButtonRightTrigger] = AxisToButton(input
25 MapperXInputStyleGamepad( const WebKit::WebGamepad& input, WebKit::WebGamepad* mapped) argument
46 MapperLakeviewResearch( const WebKit::WebGamepad& input, WebKit::WebGamepad* mapped) argument
67 MapperPlaystationSixAxis( const WebKit::WebGamepad& input, WebKit::WebGamepad* mapped) argument
93 MapperXGEAR( const WebKit::WebGamepad& input, WebKit::WebGamepad* mapped) argument
116 MapperDragonRiseGeneric( const WebKit::WebGamepad& input, WebKit::WebGamepad* mapped) argument
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCase.java32 private ITestCaseInput input; field in class:TestCase
45 return this.input;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) { argument
53 this.input = input;
59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
63 this.input = in;
70 public static String convertPreservedChars(String input) { argument
71 //return input.replace("\"", "\\\"");
72 return input;
[all...]
/external/apache-http/src/org/apache/http/conn/util/
H A DInetAddressUtils.java56 public static boolean isIPv4Address(final String input) { argument
57 return IPV4_PATTERN.matcher(input).matches();
60 public static boolean isIPv6StdAddress(final String input) { argument
61 return IPV6_STD_PATTERN.matcher(input).matches();
64 public static boolean isIPv6HexCompressedAddress(final String input) { argument
65 return IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches();
68 public static boolean isIPv6Address(final String input) { argument
69 return isIPv6StdAddress(input) || isIPv6HexCompressedAddress(input);
/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/libvpx/libvpx/vp8/common/mips/dspr2/
H A Ddequantize_dspr2.c17 void vp8_dequant_idct_add_dspr2(short *input, short *dq, argument
24 input[i] = dq[i] * input[i];
27 vp8_short_idct4x4llm_dspr2(input, dest, stride, dest, stride);
29 vpx_memset(input, 0, 32);

Completed in 1606 milliseconds

1234567891011>>