/third_party/node/deps/v8/src/date/ |
H A D | dateparser-inl.h | 183 int pre_pos = in_->position(); in Scan() 184 if (in_->IsEnd()) return DateToken::EndOfInput(); in Scan() 185 if (in_->IsAsciiDigit()) { in Scan() 186 int n = in_->ReadUnsignedNumeral(); in Scan() 187 int length = in_->position() - pre_pos; in Scan() 190 if (in_->Skip(':')) return DateToken::Symbol(':'); in Scan() 191 if (in_->Skip('-')) return DateToken::Symbol('-'); in Scan() 192 if (in_->Skip('+')) return DateToken::Symbol('+'); in Scan() 193 if (in_->Skip('.')) return DateToken::Symbol('.'); in Scan() 194 if (in_ in Scan() [all...] |
H A D | dateparser.h | 224 : in_(in), next_(Scan()) {} in DateStringTokenizer() 243 InputReader<Char>* in_; member in v8::internal::DateParser::DateStringTokenizer
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | aes.rs | 156 /// Panics if `in_` is not the same length as `out`, if that length is not a multiple of 16, or if 161 pub fn aes_ige(in_: &[u8], out: &mut [u8], key: &AesKey, iv: &mut [u8], mode: Mode) { in aes_ige() 163 assert!(in_.len() == out.len()); in aes_ige() 164 assert!(in_.len() % ffi::AES_BLOCK_SIZE as usize == 0); in aes_ige() 172 in_.as_ptr() as *const _, in aes_ige() 174 in_.len(), in aes_ige() 187 /// * `in_`: The input buffer, storing the key to be wrapped 193 /// Panics if either `out` or `in_` do not have sizes that are a multiple of 8, or if 194 /// `out` is not 8 bytes longer than `in_` 200 in_ [all...] |
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | aes.rs | 17 in_: *const c_uchar, in AES_ige_encrypt() 29 in_: *const c_uchar, in AES_wrap_key() 37 in_: *const c_uchar, in AES_unwrap_key()
|
H A D | poly1305.rs | 17 in_: *const ::libc::c_uchar, in CRYPTO_poly1305_update()
|
H A D | evp.rs | 190 in_: *const u8, in EVP_EncryptUpdate() 218 in_: *const u8, in EVP_DecryptUpdate()
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_geometry_managers.py | 106 a.pack_configure(in_=pack) 108 a.pack_configure(in_=c) 113 a.pack_configure(in_=a) 115 a.pack_configure(in_='.foo') 232 b.pack_configure(side='right', in_=a, anchor='s', expand=True, fill='x', 299 f2.place_configure(in_=f2) 302 f2.place_configure(in_='spam') 303 f2.place_configure(in_=f) 308 f2.place_configure(in_=f) 321 f2.place_configure(in_ [all...] |
/third_party/node/src/crypto/ |
H A D | crypto_cipher.h | 214 in_(mode == kCryptoJobAsync in CipherJob() 229 in_, 275 tracker->TrackFieldWithSize("in", in_.size()); 283 ByteSource in_; member in node::crypto::final
|
/third_party/libabigail/src/ |
H A D | abg-ini.cc | 869 istream& in_; member in abigail::ini::read_context 885 : in_(in), in read_context() 910 char c = in_.peek(); in peek() 955 result = in_.get(); in get() 979 return in_.good(); in good() 990 return in_.eof(); in eof()
|
/third_party/python/Lib/importlib/metadata/ |
H A D | _text.py | 58 In that case, use in_: 60 >>> FoldedCase('hello').in_('Hello World') 85 def in_(self, other): member in FoldedCase
|
/third_party/littlefs/scripts/ |
H A D | bench.py | 60 self.in_ = config.pop('in', 196 in_ = config.pop('in', None) 207 'suite_in': in_, 389 if case.in_ is None: 462 if (case.in_ is not None 463 and os.path.normpath(case.in_)
|
H A D | test.py | 60 self.in_ = config.pop('in', 199 in_ = config.pop('in', None) 211 'suite_in': in_, 397 if case.in_ is None: 476 if (case.in_ is not None 477 and os.path.normpath(case.in_)
|
/third_party/node/deps/v8/tools/gcmole/ |
H A D | gcmole.cc | 1177 : in_(in), in Block() 1189 Environment old_in = in_; in MergeIn() 1190 in_ = Environment::Merge(in_, env); in MergeIn() 1191 changed_ = !old_in.Equal(in_); in MergeIn() 1201 return in_; in in() 1237 Environment in_; member in __anon15306::FunctionAnalyzer::Block
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | keywords.rs | 102 pub static mut in_: ::std::os::raw::c_int; consts
|
/third_party/python/Lib/ |
H A D | turtle.py | 353 self._canvas.grid(padx=1, in_ = self, pady=1, row=0, 355 self.vscroll.grid(padx=1, in_ = self, pady=1, row=0, 357 self.hscroll.grid(padx=1, in_ = self, pady=1, row=1, 388 self.hscroll.grid(padx=1, in_ = self, pady=1, row=1, 390 self.vscroll.grid(padx=1, in_ = self, pady=1, row=0,
|