/external/rust/crates/nom/tests/ |
D | test1.rs | 33 fn is_not() { in is_not() function 35 named!(foo<&[u8],&[u8]>, is_not!(&b"\r\n"[..])); in is_not()
|
D | reborrow_fold.rs | 10 map!(map_res!(is_not!(" \t\r\n()"), str::from_utf8), ToString::to_string));
|
D | inference.rs | 22 first_line: map_res!(is_not!("\n"), std::str::from_utf8)
|
D | issues.rs | 187 separated_list!(tag!([0x0]), is_not!([0x0u8]))
|
/external/rust/crates/cexpr/src/ |
D | literal.rs | 43 use nom::bytes::complete::is_not; 225 map(is_not([b'\\', b'"']), |c: &[u8]| c.into()), in c_string()
|
/external/rust/crates/nom/src/ |
D | str.rs | 256 is_not!(input, AVOID) in is_not_succeed() 318 is_not!(input, AVOID) in is_not_fail()
|
/external/rust/crates/nom/src/bytes/ |
D | macros.rs | 62 macro_rules! is_not ( macro 64 $crate::bytes::streaming::is_not($arr)($input) 501 fn is_not() { in is_not() function 502 named!(a_or_b, is_not!(&b"ab"[..])); in is_not()
|
D | complete.rs | 113 pub fn is_not<T, Input, Error: ParseError<Input>>(arr: T) -> impl Fn(Input) -> IResult<Input, Input… in is_not() function
|
D | streaming.rs | 112 pub fn is_not<T, Input, Error: ParseError<Input>>(arr: T) -> impl Fn(Input) -> IResult<Input, Input… in is_not() function
|
/external/python/cpython3/Lib/test/ |
D | test_bool.py | 270 self.assertIs(operator.is_not(True, True), False) 271 self.assertIs(operator.is_not(True, False), True)
|
D | test_operator.py | 316 self.assertRaises(TypeError, operator.is_not) 317 self.assertFalse(operator.is_not(a, b)) 318 self.assertTrue(operator.is_not(a,c))
|
/external/python/cpython2/Lib/test/ |
D | test_operator.py | 363 self.assertRaises(TypeError, operator.is_not) 364 self.assertFalse(operator.is_not(a, b)) 365 self.assertTrue(operator.is_not(a,c))
|
D | test_bool.py | 298 self.assertIs(operator.is_not(True, True), False) 299 self.assertIs(operator.is_not(True, False), True)
|
/external/python/cpython3/Lib/ |
D | operator.py | 65 def is_not(a, b): function
|
/external/python/cpython2/Modules/ |
D | operator.c | 176 is_not(PyObject *s, PyObject *a) in is_not() function 386 spam1(is_not, "is_not(a, b) -- Same as a is not b.")
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 78 .. function:: is_not(a, b) 394 | Identity | ``a is not b`` | ``is_not(a, b)`` |
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 78 .. function:: is_not(a, b) 644 | Identity | ``a is not b`` | ``is_not(a, b)`` |
|
/external/rust/crates/nom/ |
D | CHANGELOG.md | 125 …onsume` and `take_until_either_and_consume1`: they can be replaced with `is_not` (possibly combine… 832 - `is_a!` and `is_not!` can now consume the whole input 870 … handle bytes have been moved to src/bytes.rs`. This applies to `tag!`, `is_not!`, `is_a!`, `filte… 1026 - `is_a!`, `is_not!`, `alpha`, `digit`, `space`, `multispace` will now return an error if they do n…
|
/external/llvm/lib/Target/Lanai/ |
D | LanaiInstrFormats.td | 77 // For arithmetic instructions, `C' is set/cleared if there is/is_not
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
D | LanaiInstrFormats.td | 76 // For arithmetic instructions, `C' is set/cleared if there is/is_not
|
/external/llvm-project/llvm/lib/Target/Lanai/ |
D | LanaiInstrFormats.td | 76 // For arithmetic instructions, `C' is set/cleared if there is/is_not
|
/external/python/cpython3/Doc/howto/ |
D | functional.rst | 1093 * Object identity: ``is_()``, ``is_not()``.
|
/external/python/cpython2/Doc/howto/ |
D | functional.rst | 1113 * Object identity: ``is_()``, ``is_not()``.
|
/external/python/cpython2/Misc/ |
D | HISTORY | 5284 operator.is_not(a,b) which is equivalent to: a is not b.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 22668 operator.is_not(a,b) which is equivalent to: a is not b.
|