Lines Matching refs:FALSE
23 const FALSE: c_int = 0;
114 if recurse == FALSE {
139 return FALSE;
151 Box::into_raw(Box::from(JsonValue::Boolean(boolean != FALSE))) as *mut YlongJson
158 return FALSE;
204 *boolean = value != FALSE;
223 /// Returns a `c_int` where TRUE indicates that the item is a number, and FALSE indicates otherwise.
227 return FALSE;
235 /// Returns a `c_int` where TRUE indicates that the number is a double, and FALSE indicates otherwise.
239 return FALSE;
245 Err(_) => FALSE,
250 /// Returns a `c_int` where TRUE indicates that the number is an integer, and FALSE indicates otherwise.
254 return FALSE;
260 Err(_) => FALSE,
369 /// Returns `FALSE` if the item is null or not a string, and `TRUE` otherwise.
373 return FALSE;
431 /// Returns `FALSE` if the item is null or not an array, and `TRUE` otherwise.
435 return FALSE;
695 /// Returns `FALSE` if the item is null or not an object, and `TRUE` otherwise.
699 return FALSE;
728 /// Returns a `c_int` indicating whether the item exists (TRUE) or not (FALSE).
735 return FALSE;
741 Err(_) => return FALSE,