/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/pack200/ |
StreamBridge.java | 35 private InputStream input; field in class:StreamBridge 47 * Provides the input view. 51 if (input == null) { 52 input = getInputView(); 55 return input; 59 * Creates the input view. 64 * Closes input and output and releases all associated resources. 69 if (input != null) { 70 input.close(); 71 input = null [all...] |
/external/icu/icu4c/source/i18n/ |
numparse_utils.h | 18 inline static void putLeadCodePoints(const UnicodeSet* input, UnicodeSet* output) { 19 for (int32_t i = 0; i < input->getRangeCount(); i++) { 20 output->add(input->getRangeStart(i), input->getRangeEnd(i)); 25 inline static void putLeadCodePoint(const UnicodeString& input, UnicodeSet* output) { 26 if (!input.isEmpty()) { 27 output->add(input.char32At(0));
|
/external/libchrome/mojo/public/cpp/bindings/ |
string_traits_wtf.h | 16 static bool IsNull(const WTF::String& input) { return input.IsNull(); } 19 static void* SetUpContext(const WTF::String& input); 20 static void TearDownContext(const WTF::String& input, void* context); 22 static size_t GetSize(const WTF::String& input, void* context); 24 static const char* GetData(const WTF::String& input, void* context); 26 static bool Read(StringDataView input, WTF::String* output);
|
/external/antlr/runtime/Perl5/examples/expr/ |
expr.pl | 19 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => $in }); 20 my $lexer = ExprLexer->new({ input => $input }); 23 my $parser = ExprParser->new({ input => $tokens });
|
/external/antlr/runtime/C/include/ |
antlr3input.h | 3 * streams from any input source. Any character size and encoding 6 * to specific offsets into their input streams. 52 /// Master context structure for an ANTLR3 C runtime based input stream. 63 /** Whatever super structure is providing the INPUT stream needs a pointer to itself 69 /** Pointer the start of the input string, characters may be 70 * taken as offsets from here and in original input format encoding. 79 /** String factory for this input stream 84 /** Pointer to the next character to be consumed from the input data 86 * was read by the functions installed as pointer in this input stream 93 * input source is a stream such as a socket or something then we ma [all...] |
/external/llvm/utils/ |
DSAclean.py | 17 input = open(sys.argv[1], 'r') variable 21 buffer = input.readline() 25 buffer = input.readline() 30 buffer = input.readline() 31 input.close()
|
/external/swiftshader/third_party/LLVM/utils/ |
DSAclean.py | 17 input = open(sys.argv[1], 'r') variable 21 buffer = input.readline() 25 buffer = input.readline() 30 buffer = input.readline() 31 input.close()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
DSAclean.py | 17 input = open(sys.argv[1], 'r') variable 21 buffer = input.readline() 25 buffer = input.readline() 30 buffer = input.readline() 31 input.close()
|
/external/u-boot/common/ |
s_record.c | 13 int srec_decode (char *input, int *count, ulong *addr, char *data) 26 for (; *input; ++input) { 27 if (*input == 'S') { /* skip 'S' */ 28 ++input; 32 if (*input == '\0') { /* no more data? */ 36 v = *input++; /* record type */ 38 if ((*count = hex2_bin(input)) < 0) { 43 input += 2; 91 if ((v = hex2_bin(input)) < 0) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
ISO8601Converter.java | 91 ParseState input = new ParseState(iso8601String); local 95 input.ch(0) == 'T' || 96 (input.length() >= 2 && input.ch(1) == ':' || 97 (input.length() >= 3 && input.ch(2) == ':')); 101 if (input.ch(0) == '-') 103 input.skip(); 108 value = input.gatherInt("Invalid year in date string", 9999); 109 if (input.hasNext() && input.ch() != '-' [all...] |
/external/antlr/runtime/ObjC/Framework/examples/lexertest-simple/ |
TestLexer.m | 89 NSInteger LA1_0 = [input LA:1]; 100 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) { 101 [input consume]; 103 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 147 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) [all...] |
/external/libvpx/libvpx/vp9/common/ppc/ |
vp9_idct_vsx.c | 19 void vp9_iht4x4_16_add_vsx(const tran_low_t *input, uint8_t *dest, int stride, 23 in[0] = load_tran_low(0, input); 24 in[1] = load_tran_low(8 * sizeof(*input), input); 49 void vp9_iht8x8_64_add_vsx(const tran_low_t *input, uint8_t *dest, int stride, 53 // load input data 54 in[0] = load_tran_low(0, input); 55 in[1] = load_tran_low(8 * sizeof(*input), input); 56 in[2] = load_tran_low(2 * 8 * sizeof(*input), input) [all...] |
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
Parser.cs | 42 public ITokenStream input; field in class:Antlr.Runtime.Parser 44 public Parser(ITokenStream input) 47 TokenStream = input; 50 public Parser(ITokenStream input, RecognizerSharedState state) 53 this.input = input; 58 if (input != null) { 59 input.Seek(0); // rewind the input 63 protected override object GetCurrentInputSymbol(IIntStream input) { [all...] |
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
Parser.cs | 44 public ITokenStream input; field in class:Antlr.Runtime.Parser 46 public Parser( ITokenStream input ) 50 TokenStream = input; 53 public Parser( ITokenStream input, RecognizerSharedState state ) 56 this.input = input; 62 if ( input != null ) 64 input.Seek( 0 ); // rewind the input 68 protected override object GetCurrentInputSymbol( IIntStream input ) [all...] |
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/ |
TLexer.m | 116 if ((([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA:1] >= 'a') && ([input LA:1] <= 'z'))) { 117 [input consume]; 119 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input]; 128 NSInteger LA1_0 = [input LA:1]; 139 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))||(([input LA:1] >= 'A') && ([input LA:1] <= 'Z'))||[input LA:1] == '_'||(([input LA (…) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/ |
base64_codec.py | 13 def base64_encode(input,errors='strict'):
15 """ Encodes the object input and returns a tuple (output
24 output = base64.encodestring(input)
25 return (output, len(input))
27 def base64_decode(input,errors='strict'):
29 """ Decodes the object input and returns a tuple (output
32 input must be an object which provides the bf_getreadbuf
42 output = base64.decodestring(input)
43 return (output, len(input))
47 def encode(self, input,errors='strict'): [all...] |
hex_codec.py | 13 def hex_encode(input,errors='strict'):
15 """ Encodes the object input and returns a tuple (output
24 output = binascii.b2a_hex(input)
25 return (output, len(input))
27 def hex_decode(input,errors='strict'):
29 """ Decodes the object input and returns a tuple (output
32 input must be an object which provides the bf_getreadbuf
42 output = binascii.a2b_hex(input)
43 return (output, len(input))
47 def encode(self, input,errors='strict'): [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/ |
base64_codec.py | 13 def base64_encode(input,errors='strict'):
15 """ Encodes the object input and returns a tuple (output
24 output = base64.encodestring(input)
25 return (output, len(input))
27 def base64_decode(input,errors='strict'):
29 """ Decodes the object input and returns a tuple (output
32 input must be an object which provides the bf_getreadbuf
42 output = base64.decodestring(input)
43 return (output, len(input))
47 def encode(self, input,errors='strict'): [all...] |
hex_codec.py | 13 def hex_encode(input,errors='strict'):
15 """ Encodes the object input and returns a tuple (output
24 output = binascii.b2a_hex(input)
25 return (output, len(input))
27 def hex_decode(input,errors='strict'):
29 """ Decodes the object input and returns a tuple (output
32 input must be an object which provides the bf_getreadbuf
42 output = binascii.a2b_hex(input)
43 return (output, len(input))
47 def encode(self, input,errors='strict'): [all...] |
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugParser.java | 46 public DebugParser(TokenStream input, DebugEventListener dbg, RecognizerSharedState state) { 47 super(input instanceof DebugTokenStream?input:new DebugTokenStream(input,dbg), state); 51 public DebugParser(TokenStream input, RecognizerSharedState state) { 52 super(input instanceof DebugTokenStream?input:new DebugTokenStream(input,null), state); 55 public DebugParser(TokenStream input, DebugEventListener dbg) { 56 this(input instanceof DebugTokenStream?input:new DebugTokenStream(input,dbg), dbg, null) [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
idct8x8_add_neon.c | 20 void vpx_idct8x8_64_add_neon(const tran_low_t *input, uint8_t *dest, 27 a[0] = load_tran_low_to_s16q(input); 28 a[1] = load_tran_low_to_s16q(input + 8); 29 a[2] = load_tran_low_to_s16q(input + 16); 30 a[3] = load_tran_low_to_s16q(input + 24); 31 a[4] = load_tran_low_to_s16q(input + 32); 32 a[5] = load_tran_low_to_s16q(input + 40); 33 a[6] = load_tran_low_to_s16q(input + 48); 34 a[7] = load_tran_low_to_s16q(input + 56); 41 void vpx_idct8x8_12_add_neon(const tran_low_t *input, uint8_t *dest [all...] |
/external/python/cpython2/Lib/encodings/ |
base64_codec.py | 13 def base64_encode(input,errors='strict'): 15 """ Encodes the object input and returns a tuple (output 24 output = base64.encodestring(input) 25 return (output, len(input)) 27 def base64_decode(input,errors='strict'): 29 """ Decodes the object input and returns a tuple (output 32 input must be an object which provides the bf_getreadbuf 42 output = base64.decodestring(input) 43 return (output, len(input)) 47 def encode(self, input,errors='strict') [all...] |
hex_codec.py | 13 def hex_encode(input,errors='strict'): 15 """ Encodes the object input and returns a tuple (output 24 output = binascii.b2a_hex(input) 25 return (output, len(input)) 27 def hex_decode(input,errors='strict'): 29 """ Decodes the object input and returns a tuple (output 32 input must be an object which provides the bf_getreadbuf 42 output = binascii.a2b_hex(input) 43 return (output, len(input)) 47 def encode(self, input,errors='strict') [all...] |
/external/python/cpython3/Lib/encodings/ |
base64_codec.py | 13 def base64_encode(input, errors='strict'): 15 return (base64.encodebytes(input), len(input)) 17 def base64_decode(input, errors='strict'): 19 return (base64.decodebytes(input), len(input)) 22 def encode(self, input, errors='strict'): 23 return base64_encode(input, errors) 24 def decode(self, input, errors='strict'): 25 return base64_decode(input, errors [all...] |
hex_codec.py | 13 def hex_encode(input, errors='strict'): 15 return (binascii.b2a_hex(input), len(input)) 17 def hex_decode(input, errors='strict'): 19 return (binascii.a2b_hex(input), len(input)) 22 def encode(self, input, errors='strict'): 23 return hex_encode(input, errors) 24 def decode(self, input, errors='strict'): 25 return hex_decode(input, errors [all...] |