Home
last modified time | relevance | path

Searched refs:is_not (Results 1 – 25 of 25) sorted by relevance

/external/rust/crates/nom/tests/
Dtest1.rs33 fn is_not() { in is_not() function
35 named!(foo<&[u8],&[u8]>, is_not!(&b"\r\n"[..])); in is_not()
Dreborrow_fold.rs10 map!(map_res!(is_not!(" \t\r\n()"), str::from_utf8), ToString::to_string));
Dinference.rs22 first_line: map_res!(is_not!("\n"), std::str::from_utf8)
Dissues.rs187 separated_list!(tag!([0x0]), is_not!([0x0u8]))
/external/rust/crates/cexpr/src/
Dliteral.rs43 use nom::bytes::complete::is_not;
225 map(is_not([b'\\', b'"']), |c: &[u8]| c.into()), in c_string()
/external/rust/crates/nom/src/
Dstr.rs256 is_not!(input, AVOID) in is_not_succeed()
318 is_not!(input, AVOID) in is_not_fail()
/external/rust/crates/nom/src/bytes/
Dmacros.rs62 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()
Dcomplete.rs113 pub fn is_not<T, Input, Error: ParseError<Input>>(arr: T) -> impl Fn(Input) -> IResult<Input, Input… in is_not() function
Dstreaming.rs112 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/
Dtest_bool.py270 self.assertIs(operator.is_not(True, True), False)
271 self.assertIs(operator.is_not(True, False), True)
Dtest_operator.py316 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/
Dtest_operator.py363 self.assertRaises(TypeError, operator.is_not)
364 self.assertFalse(operator.is_not(a, b))
365 self.assertTrue(operator.is_not(a,c))
Dtest_bool.py298 self.assertIs(operator.is_not(True, True), False)
299 self.assertIs(operator.is_not(True, False), True)
/external/python/cpython3/Lib/
Doperator.py65 def is_not(a, b): function
/external/python/cpython2/Modules/
Doperator.c176 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/
Doperator.rst78 .. function:: is_not(a, b)
394 | Identity | ``a is not b`` | ``is_not(a, b)`` |
/external/python/cpython2/Doc/library/
Doperator.rst78 .. function:: is_not(a, b)
644 | Identity | ``a is not b`` | ``is_not(a, b)`` |
/external/rust/crates/nom/
DCHANGELOG.md125 …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/
DLanaiInstrFormats.td77 // For arithmetic instructions, `C' is set/cleared if there is/is_not
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiInstrFormats.td76 // For arithmetic instructions, `C' is set/cleared if there is/is_not
/external/llvm-project/llvm/lib/Target/Lanai/
DLanaiInstrFormats.td76 // For arithmetic instructions, `C' is set/cleared if there is/is_not
/external/python/cpython3/Doc/howto/
Dfunctional.rst1093 * Object identity: ``is_()``, ``is_not()``.
/external/python/cpython2/Doc/howto/
Dfunctional.rst1113 * Object identity: ``is_()``, ``is_not()``.
/external/python/cpython2/Misc/
DHISTORY5284 operator.is_not(a,b) which is equivalent to: a is not b.
/external/python/cpython3/Misc/
DHISTORY22668 operator.is_not(a,b) which is equivalent to: a is not b.