HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 26 - 50 of 11185) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCase.java 32 private ITestCaseInput input; field in class:TestCase
45 return this.input;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) {
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) {
71 //return input.replace("\"", "\\\"");
72 return input;
    [all...]
  /external/apache-http/src/org/apache/http/conn/util/
InetAddressUtils.java 61 public static boolean isIPv4Address(final String input) {
62 return IPV4_PATTERN.matcher(input).matches();
65 public static boolean isIPv6StdAddress(final String input) {
66 return IPV6_STD_PATTERN.matcher(input).matches();
69 public static boolean isIPv6HexCompressedAddress(final String input) {
70 return IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches();
73 public static boolean isIPv6Address(final String input) {
74 return isIPv6StdAddress(input) || isIPv6HexCompressedAddress(input);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
DemuxInputStream.java 17 package org.apache.commons.io.input;
37 * @param input the stream to bind
40 public InputStream bindStream( InputStream input )
43 m_streams.set( input );
56 InputStream input = getStream(); local
57 if( null != input )
59 input.close();
73 InputStream input = getStream(); local
74 if( null != input )
76 return input.read()
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestInput.java 30 /** 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) {
37 this.input = input;
43 return JUnitCodeGen.escapeForJava(input);
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
dequantize_dspr2.c 16 void vp8_dequant_idct_add_dspr2(short *input, short *dq, unsigned char *dest,
21 input[i] = dq[i] * input[i];
24 vp8_short_idct4x4llm_dspr2(input, dest, stride, dest, stride);
26 memset(input, 0, 32);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 2 /// 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);
317 pANTLR3_INPUT_STREAM input; local
352 pANTLR3_INPUT_STREAM input; local
379 pANTLR3_INPUT_STREAM input; local
418 pANTLR3_INPUT_STREAM input; local
448 pANTLR3_INPUT_STREAM input; local
514 pANTLR3_INPUT_STREAM input; local
552 pANTLR3_INPUT_STREAM input; local
573 pANTLR3_INPUT_STREAM input; local
780 pANTLR3_INPUT_STREAM input; local
859 pANTLR3_INPUT_STREAM input; local
998 pANTLR3_INPUT_STREAM input; local
1015 pANTLR3_INPUT_STREAM input; local
1062 pANTLR3_INPUT_STREAM input; local
1139 pANTLR3_INPUT_STREAM input; local
1281 pANTLR3_INPUT_STREAM input; local
1360 pANTLR3_INPUT_STREAM input; local
1572 pANTLR3_INPUT_STREAM input; local
1605 pANTLR3_INPUT_STREAM input; local
1635 pANTLR3_INPUT_STREAM input; local
1669 pANTLR3_INPUT_STREAM input; local
1693 pANTLR3_INPUT_STREAM input; local
1724 pANTLR3_INPUT_STREAM input; local
1806 pANTLR3_INPUT_STREAM input; local
1872 pANTLR3_INPUT_STREAM input; local
2036 pANTLR3_INPUT_STREAM input; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.h 16 static INLINE tran_high_t fdct_round_shift(tran_high_t input) {
17 tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS);
24 void vpx_fdct32(const tran_high_t *input, tran_high_t *output, int round);
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
xsgetn.pass.cpp 36 char input[7] = "123456"; local
37 t.setg(input, input, input+7);
38 char output[sizeof(input)] = {0};
40 assert(strcmp(input, output) == 0);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
xsgetn.pass.cpp 36 char input[7] = "123456"; local
37 t.setg(input, input, input+7);
38 char output[sizeof(input)] = {0};
40 assert(strcmp(input, output) == 0);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DLG_stream_input.h 4 /* Predefined char stream: Input from (c++) stream. */
43 : input(p_input_stream)
49 : input(a_recopier.input)
63 input = a_affecter.input;
73 input->get(extracted_stuff);
75 if (*input)
87 ::std::basic_istream<E,T> * input; member in class:DLG_stream_input
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DLG_stream_input.h 4 /* Predefined char stream: Input from (c++) stream. */
43 : input(p_input_stream)
49 : input(a_recopier.input)
63 input = a_affecter.input;
73 input->get(extracted_stuff);
75 if (*input)
87 ::std::basic_istream<E,T> * input; member in class:DLG_stream_input
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
EarlyExitException.java 37 public EarlyExitException(int decisionNumber, IntStream input) {
38 super(input);
ANTLRInputStream.java 39 public ANTLRInputStream(InputStream input) throws IOException {
40 this(input, null);
43 public ANTLRInputStream(InputStream input, int size) throws IOException {
44 this(input, size, null);
47 public ANTLRInputStream(InputStream input, String encoding) throws IOException {
48 this(input, INITIAL_BUFFER_SIZE, encoding);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException {
52 this(input, size, READ_BUFFER_SIZE, encoding);
55 public ANTLRInputStream(InputStream input,
63 isr = new InputStreamReader(input, encoding)
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
string_traits_stl.h 16 static bool IsNull(const std::string& input) {
26 static size_t GetSize(const std::string& input) { return input.size(); }
28 static const char* GetData(const std::string& input) { return input.data(); }
30 static bool Read(StringDataView input, std::string* output) {
31 output->assign(input.storage(), input.size());
string_traits_string_piece.h 15 static bool IsNull(const base::StringPiece& input) {
29 static size_t GetSize(const base::StringPiece& input) { return input.size(); }
31 static const char* GetData(const base::StringPiece& input) {
32 return input.data();
35 static bool Read(StringDataView input, base::StringPiece* output) {
36 output->set(input.storage(), input.size());
array_traits_carray.h 34 static bool IsNull(const CArray<T>& input) { return !input.data; }
38 static size_t GetSize(const CArray<T>& input) { return input.size; }
40 static T* GetData(CArray<T>& input) { return input.data; }
42 static const T* GetData(const CArray<T>& input) { return input.data; }
44 static T& GetAt(CArray<T>& input, size_t index) { return input.data[index];
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
StreamUtils.java 27 * Copies the input byte array into the output int array with the given
28 * endianness. If input is not a multiple of 4, ignores the last 1-3 bytes
31 public static boolean byteToIntArray(int[] output, byte[] input, ByteOrder endianness) {
32 int length = input.length - (input.length % 4);
34 throw new ArrayIndexOutOfBoundsException("Output array is too short to hold input");
38 output[i] = ((input[j] & 0xFF) << 24) | ((input[j + 1] & 0xFF) << 16)
39 | ((input[j + 2] & 0xFF) << 8) | ((input[j + 3] & 0xFF))
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/php/
std_string.i 27 $1 = ( Z_TYPE_PP($input) == IS_STRING ) ? 1 : 0;
31 convert_to_string_ex($input);
32 $1.assign(Z_STRVAL_PP($input), Z_STRLEN_PP($input));
36 convert_to_string_ex($input);
37 $result.assign(Z_STRVAL_PP($input), Z_STRLEN_PP($input));
45 ZVAL_STRINGL($input, const_cast<char*>($1.data()), $1.size(), 1);
60 convert_to_string_ex($input);
61 temp.assign(Z_STRVAL_PP($input), Z_STRLEN_PP($input))
    [all...]
  /external/ImageMagick/MagickWand/tests/
add_norm_lists.c 27 *input, local
39 input = NewMagickWand();
41 status = MagickReadImage(input, "font_0.gif" )
42 && MagickReadImage(input, "font_1.gif" )
43 && MagickReadImage(input, "font_2.gif" );
45 ThrowWandException(input);
47 status = MagickAddImage(wand, input);
51 ClearMagickWand(input);
52 status = MagickReadImage(input, "font_3.gif" )
53 && MagickReadImage(input, "font_4.gif"
    [all...]
add_first_lists.c 27 *input, local
39 input = NewMagickWand();
43 status = MagickReadImage(input, "font_0.gif" )
44 && MagickReadImage(input, "font_1.gif" )
45 && MagickReadImage(input, "font_2.gif" );
47 ThrowWandException(input);
49 status = MagickAddImage(wand, input);
53 ClearMagickWand(input);
54 status = MagickReadImage(input, "font_3.gif" )
55 && MagickReadImage(input, "font_4.gif"
    [all...]
add_last_lists.c 27 *input, local
39 input = NewMagickWand();
43 status = MagickReadImage(input, "font_0.gif" )
44 && MagickReadImage(input, "font_1.gif" )
45 && MagickReadImage(input, "font_2.gif" );
47 ThrowWandException(input);
49 status = MagickAddImage(wand, input);
53 ClearMagickWand(input);
54 status = MagickReadImage(input, "font_3.gif" )
55 && MagickReadImage(input, "font_4.gif"
    [all...]
add_mixed_lists.c 27 *input, /* red image wand */ local
39 input = NewMagickWand();
41 status = MagickReadImage(input, "font_0.gif" )
42 && MagickReadImage(input, "font_1.gif" )
43 && MagickReadImage(input, "font_2.gif" );
45 ThrowWandException(input);
47 status = MagickAddImage(wand, input);
51 ClearMagickWand(input);
52 status = MagickReadImage(input, "font_3.gif" )
53 && MagickReadImage(input, "font_4.gif"
    [all...]
  /tools/test/connectivity/acts/tests/google/ble/api/
BleScanApiTest.py 54 def _format_defaults(self, input):
57 :return: input: dict
59 if 'ScanSettings' not in input.keys():
60 input['ScanSettings'] = (
64 if 'ScanFilterManufacturerDataId' not in input.keys():
65 input['ScanFilterManufacturerDataId'] = -1
66 if 'ScanFilterDeviceName' not in input.keys():
67 input['ScanFilterDeviceName'] = None
68 if 'ScanFilterDeviceAddress' not in input.keys():
69 input['ScanFilterDeviceAddress'] = Non
    [all...]
  /art/runtime/
indenter_test.cc 26 std::ostream input(&indent_filter);
30 input << "hello";
33 input << "\nhello again";
36 input << "\n";
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTParser.java 25 * Create a new parser instance, pre-supplying the input token stream.
27 * @param input The stream of tokens that will be pulled from the lexer
29 protected AbstractTParser(TokenStream input) {
30 super(input);
34 * Create a new parser instance, pre-supplying the input token stream
40 * @param input The stream of tokesn that will be pulled from the lexer
43 protected AbstractTParser(TokenStream input, RecognizerSharedState state) {
44 super(input, state);

Completed in 1758 milliseconds

12 3 4 5 6 7 8 91011>>