Searched refs:TooLarge (Results 1 – 2 of 2) sorted by relevance
/external/crosvm/kernel_cmdline/src/ |
D | kernel_cmdline.rs | 20 TooLarge, enumerator 31 TooLarge => "inserting string would make command line too long", in fmt() 91 Err(Error::TooLarge) in has_capacity() 217 assert_eq!(cl.insert("hello", "world"), Err(Error::TooLarge)); in insert_too_large() 218 assert_eq!(cl.insert("a", "world"), Err(Error::TooLarge)); in insert_too_large() 219 assert_eq!(cl.insert("hello", "b"), Err(Error::TooLarge)); in insert_too_large() 221 assert_eq!(cl.insert("a", "b"), Err(Error::TooLarge)); in insert_too_large() 222 assert_eq!(cl.insert_str("a"), Err(Error::TooLarge)); in insert_too_large() 227 assert_eq!(cl.insert("c", "da"), Err(Error::TooLarge)); // adds 5 (including space) length in insert_too_large()
|
/external/v8/src/regexp/ |
D | regexp-error.h | 18 T(TooLarge, "Regular expression too large") \
|