| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | mtype.h | 252 virtual bool isBoolean(); 428 bool isBoolean() /*const*/; 479 bool isBoolean() /*const*/; 497 bool isBoolean() /*const*/; 662 bool isBoolean() /*const*/; 789 bool isBoolean() /*const*/; 822 bool isBoolean(); 858 bool isBoolean() /*const*/; 900 bool isBoolean() /*const*/; 913 bool isBoolean() /* const */;
|
| H A D | mtype.d | 1039 bool isBoolean() in isBoolean() function 3546 override bool isBoolean() const in isBoolean() function 3887 override bool isBoolean() const in isBoolean() function 3977 override bool isBoolean() const in isBoolean() function 5213 override bool isBoolean() const in isBoolean() function 5767 override bool isBoolean() const in isBoolean() function 6052 override bool isBoolean() in isBoolean() function 6054 return memType().isBoolean(); in isBoolean() 6302 override bool isBoolean() const in isBoolean() function 6562 override bool isBoolean() const in isBoolean() function [all …]
|
| H A D | expressionsem.d | 13456 if (!t.isBoolean()) in toBoolean()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | mtype.h | 265 virtual bool isBoolean(); 435 bool isBoolean() /*const*/; 495 bool isBoolean() /*const*/; 520 bool isBoolean() /*const*/; 656 bool isBoolean() /*const*/; 795 bool isBoolean() /*const*/; 829 bool isBoolean(); 869 bool isBoolean() /*const*/; 917 bool isBoolean() /*const*/;
|
| H A D | staticcond.c | 83 if (!e->type->isBoolean()) in evalStaticCondition()
|
| H A D | mtype.c | 1750 bool Type::isBoolean() in isBoolean() function 3764 bool TypeVector::isBoolean() in isBoolean() function 4563 bool TypeDArray::isBoolean() in isBoolean() function 4859 bool TypeAArray::isBoolean() in isBoolean() function 6527 bool TypeDelegate::isBoolean() in isBoolean() function 7727 bool TypeEnum::isBoolean() in isBoolean() function 7729 return sym->getMemtype(Loc())->isBoolean(); in isBoolean() 8173 bool TypeStruct::isBoolean() in isBoolean() function 8968 bool TypeClass::isBoolean() in isBoolean() function 9309 bool TypeNull::isBoolean() in isBoolean() function
|
| H A D | expression.c | 2773 if (!t->isBoolean()) in toBoolean()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
| H A D | VariantValue.cpp | 334 bool VariantValue::isBoolean() const { in isBoolean() function in clang::ast_matchers::dynamic::VariantValue 339 assert(isBoolean()); in getBoolean() 425 if (!isBoolean()) in isConvertibleTo()
|
| H A D | Marshallers.h | 106 return Value.isBoolean();
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 606 bool isBoolean = ResultTy->isBooleanType(); in create_OSAtomicCompareAndSwap() local 607 if (!isBoolean && !ResultTy->isIntegralType(C)) in create_OSAtomicCompareAndSwap() 648 Expr *RetVal = isBoolean ? M.makeIntegralCastToBoolean(BoolVal) in create_OSAtomicCompareAndSwap() 655 RetVal = isBoolean ? M.makeIntegralCastToBoolean(BoolVal) in create_OSAtomicCompareAndSwap()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | VariantValue.h | 278 bool isBoolean() const;
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | bitmanip.d | 2180 if (isIntegral!T || isSomeChar!T || isBoolean!T) 2310 if (isIntegral!T || isSomeChar!T || isBoolean!T) 2432 if ((isIntegral!T || isSomeChar!T || isBoolean!T) && 2484 if (isIntegral!T || isSomeChar!T || isBoolean!T) 2579 if ((isIntegral!T || isSomeChar!T || isBoolean!T) && 2660 isBoolean!T ||
|
| H A D | traits.d | 5537 enum bool isBoolean(T) = is(BooleanTypeOf!T) && !isAggregateType!T; 5542 static assert( isBoolean!bool); 5544 static assert( isBoolean!EB); 5545 static assert(!isBoolean!(SubTypeOf!bool)); 7299 if (isNumeric!T || isSomeChar!T || isBoolean!T)
|
| H A D | stdio.d | 1404 import std.traits : isBoolean, isIntegral, isAggregateType; 1425 else static if (isBoolean!A)
|
| H A D | variant.d | 805 static if (isNumeric!T || isBoolean!T) in VariantN()
|
| H A D | conv.d | 1402 (isNumeric!S || isSomeChar!S || isBoolean!S) && 1403 (isNumeric!T || isSomeChar!T || isBoolean!T) && !is(T == enum))
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | traits.d | 6165 enum bool isBoolean(T) = __traits(isUnsigned, T) && is(T : bool); 6170 static assert( isBoolean!bool); 6172 static assert( isBoolean!EB); 6179 static assert(!isBoolean!(SubTypeOfBool)); 8211 if (isNumeric!T || isSomeChar!T || isBoolean!T)
|
| H A D | bitmanip.d | 2865 if (isIntegral!T || isSomeChar!T || isBoolean!T) 3379 isBoolean!T ||
|
| H A D | stdio.d | 1697 import std.traits : isBoolean, isIntegral, isAggregateType; 1721 else static if (isBoolean!A)
|
| H A D | conv.d | 1532 (isNumeric!S || isSomeChar!S || isBoolean!S) && 1533 (isNumeric!T || isSomeChar!T || isBoolean!T) && !is(T == enum))
|
| H A D | variant.d | 891 static if (isNumeric!T || isBoolean!T) in VariantN()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
| H A D | searching.d | 1505 enum isIntegralNeedle = isSomeChar!E || isIntegral!E || isBoolean!E;
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/ |
| H A D | searching.d | 1589 enum isIntegralNeedle = isSomeChar!E || isIntegral!E || isBoolean!E;
|