The C and C++ Include Header Files
/usr/include/nodejs/src/string_decoder-inl.h
$ cat -n /usr/include/nodejs/src/string_decoder-inl.h 1 #ifndef SRC_STRING_DECODER_INL_H_ 2 #define SRC_STRING_DECODER_INL_H_ 3 4 #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 5 6 #include "string_decoder.h" 7 8 namespace node { 9 10 void StringDecoder::SetEncoding(enum encoding encoding) { 11 state_[kBufferedBytes] = 0; 12 state_[kMissingBytes] = 0; 13 state_[kEncodingField] = encoding; 14 } 15 16 enum encoding StringDecoder::Encoding() const { 17 return static_cast
(state_[kEncodingField]); 18 } 19 20 unsigned StringDecoder::BufferedBytes() const { 21 return state_[kBufferedBytes]; 22 } 23 24 unsigned StringDecoder::MissingBytes() const { 25 return state_[kMissingBytes]; 26 } 27 28 char* StringDecoder::IncompleteCharacterBuffer() { 29 return reinterpret_cast
(state_ + kIncompleteCharactersStart); 30 } 31 32 33 } // namespace node 34 35 #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 36 37 #endif // SRC_STRING_DECODER_INL_H_
Contact us
|
About us
|
Term of use
|
Copyright © 2000-2024 MyWebUniversity.com ™