Searched defs:bool (Results 76 - 100 of 203) sorted by relevance

123456789

/external/compiler-rt/lib/BlocksRuntime/
H A DBlock_private.h40 typedef char bool; typedef
41 #define true (bool)1
42 #define false (bool)0
138 BLOCK_EXPORT void _Block_use_GC( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject),
139 void (*setHasRefcount)(const void *, const bool),
145 BLOCK_EXPORT void _Block_use_GC5( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject),
146 void (*setHasRefcount)(const void *, const bool),
/external/deqp/framework/delibs/decpp/
H A DdeSharedPtr.hpp45 template<bool threadSafe>
51 template<class Deleter, bool threadSafe>
66 template<typename DstDeleterType, typename SrcDeleterType, bool threadSafe>
72 template<typename T, class Deleter, bool threadSafe>
75 template<typename T, class Deleter, bool threadSafe>
97 template<typename T, class Deleter = DefaultDeleter<T>, bool threadSafe = true>
126 operator bool (void) const throw() { return !!m_ptr; }
145 template<typename U, class DeleterU, bool threadSafeU>
163 template<typename T, class Deleter = DefaultDeleter<T>, bool threadSafe = true>
192 template<typename T, class Deleter, bool threadSaf
[all...]
H A DdeUniquePtr.hpp64 operator bool (void) const throw() { return !!get(); }
/external/e2fsprogs/intl/
H A Drelocatable.c63 /* Faked cheap 'bool'. */
64 #undef bool macro
67 #define bool int macro
223 bool same = false;
371 static bool tried_find_shared_library_fullname;
/external/eigen/Eigen/src/SparseCore/
H A DMappedSparseMatrix.h54 bool isCompressed() const { return true; }
138 inline operator bool() const { return (m_id < m_end) && (m_id>=m_start); }
169 inline operator bool() const { return (m_id <= m_end) && (m_id>m_start); }
H A DSparseBlock.h291 template<typename XprType, int BlockRows, int BlockCols, bool InnerPanel>
359 while( (Base::operator bool()) && (Base::index() < (IsRowMajor ? m_block.m_startCol.value() : m_block.m_startRow.value())) )
368 inline operator bool() const { return Base::operator bool() && Base::index() < m_end; }
382 while( (Base::operator bool()) && (Base::index() >= (IsRowMajor ? m_block.m_startCol.value()+block.m_blockCols.value() : m_block.m_startRow.value()+block.m_blockRows.value())) )
391 inline operator bool() const { return Base::operator bool() && Base::index() >= m_begin; }
H A DSparseCwiseBinaryOp.h148 EIGEN_STRONG_INLINE operator bool() const { return m_id>=0; }
204 EIGEN_STRONG_INLINE operator bool() const { return (m_lhsIter && m_rhsIter); }
244 EIGEN_STRONG_INLINE operator bool() const { return m_lhsIter; }
284 EIGEN_STRONG_INLINE operator bool() const { return m_rhsIter; }
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DMatrixMarketIterator.h73 inline operator bool() const { return m_isvalid;}
153 inline bool hasRhs() {return m_hasRhs; }
154 inline bool hasrefX() {return m_hasrefX; }
158 inline bool Fileexists(std::string file)
187 bool isvector,iscomplex=false;
220 bool m_isvalid;
221 bool m_matIsLoaded; // Determine if the matrix has already been loaded from the file
222 bool m_hasRhs; // The right hand side exists
223 bool m_hasrefX; // A reference solution is provided
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java343 public static JavaExpression bool(boolean value) { method in class:JavaExpression
494 JavaExpression.bool(create));
/external/lldb/include/lldb/Core/
H A DModuleSpec.h291 operator bool () const
313 bool dumped_something = false;
377 bool
378 Matches (const ModuleSpec &match_module_spec, bool exact_arch_match) const
502 bool
516 bool
520 bool exact_arch_match = true;
551 bool exact_arch_match = true;
/external/lldb/include/lldb/Host/
H A DFile.h86 File (FILE *fh, bool transfer_ownership) :
121 File (int fd, bool tranfer_ownership) :
136 bool
159 bool () const
180 bool
225 SetDescriptor(int fd, bool transfer_ownership);
231 SetStream (FILE *fh, bool transfer_ownership);
404 bool null_terminate,
476 bool
482 bool
[all...]
/external/lldb/include/lldb/Interpreter/
H A DScriptInterpreterPython.h41 bool
49 bool
55 bool
59 bool
62 bool
65 bool
68 bool
72 bool
75 virtual bool
110 virtual bool
[all...]
/external/lldb/include/lldb/Symbol/
H A DClangASTType.h101 operator bool () const
106 bool
114 bool
120 bool
123 bool *is_incomplete) const;
125 bool
128 bool
131 bool
134 bool
137 bool
[all...]
/external/llvm/include/llvm/ADT/
H A DBitVector.h56 *this = bool(t);
60 reference& operator=(bool t) {
68 operator bool() const {
81 explicit BitVector(unsigned s, bool t = false) : Size(s) {
112 bool empty() const { return Size == 0; }
131 bool any() const {
139 bool all() const {
152 bool none() const {
209 void resize(unsigned N, bool t = false) {
332 bool operato
[all...]
H A DIntrusiveRefCntPtr.h180 LLVM_EXPLICIT operator bool() const { return Obj; }
203 inline bool operator==(const IntrusiveRefCntPtr<T>& A,
210 inline bool operator!=(const IntrusiveRefCntPtr<T>& A,
217 inline bool operator==(const IntrusiveRefCntPtr<T>& A,
224 inline bool operator!=(const IntrusiveRefCntPtr<T>& A,
231 inline bool operator==(T* A,
238 inline bool operator!=(T* A,
245 bool operator==(std::nullptr_t A, const IntrusiveRefCntPtr<T> &B) {
250 bool operator==(const IntrusiveRefCntPtr<T> &A, std::nullptr_t B) {
255 bool operato
[all...]
H A DPointerUnion.h83 typedef PointerIntPair<void*, 1, bool,
109 bool isNull() const {
114 LLVM_EXPLICIT operator bool() const { return !isNull(); }
187 static bool operator==(PointerUnion<PT1, PT2> lhs,
193 static bool operator!=(PointerUnion<PT1, PT2> lhs,
273 bool isNull() const { return Val.isNull(); }
274 LLVM_EXPLICIT operator bool() const { return !isNull(); }
387 bool isNull() const { return Val.isNull(); }
388 LLVM_EXPLICIT operator bool() const { return !isNull(); }
495 static bool isEqua
[all...]
/external/llvm/include/llvm/IR/
H A DCallSite.h48 PointerIntPair<InstrTy*, 1, bool> I;
73 bool isCall() const { return I.getInt(); }
77 bool isInvoke() const { return getInstruction() && !I.getInt(); }
81 LLVM_EXPLICIT operator bool() const { return I.getPointer(); }
106 bool isCallee(Value::const_user_iterator UI) const {
111 bool isCallee(const Use *U) const { return getCallee() == U; }
152 bool arg_empty() const { return arg_end() == arg_begin(); }
165 bool isMustTailCall() const {
170 bool isTailCall() const {
206 bool hasFnAtt
[all...]
/external/llvm/include/llvm/Support/
H A DErrorOr.h71 /// An implicit conversion to bool provides a way to check if there was an
84 static const bool isRef = std::is_reference<T>::value;
159 LLVM_EXPLICIT operator bool() const {
193 static bool compareThisIfSameType(const T1 &a, const T1 &b) {
198 static bool compareThisIfSameType(const T1 &a, const T2 &b) {
265 bool HasError : 1;
271 bool>::type
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dbase.hpp72 bool release() {
120 operator bool() const {
245 bool
248 if (__iter_helper<bool, __empty, sizeof...(Its)>::step(
262 std::function<bool (const std::pair<T, S> &)>
276 std::function<bool (const T &)>
/external/stlport/stlport/stl/
H A D_istream.h50 bool _M_init_skip(basic_istream<_CharT, _Traits>& __istr);
52 bool _M_init_noskip(basic_istream<_CharT, _Traits>& __istr);
117 _Self& operator>> (bool& __val);
170 void _M_skip_whitespace(bool __set_failbit);
192 const bool _M_ok;
199 bool __noskipws = false) :
211 operator bool() const { return _M_ok; }
294 inline bool _M_init_skip(basic_istream<_CharT, _Traits>& __istr) {
310 inline bool _M_init_noskip(basic_istream<_CharT, _Traits>& __istr) {
H A D_ostream.h45 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str);
83 bool _M_copy_buffered(basic_streambuf<_CharT, _Traits>* __from,
85 bool _M_copy_unbuffered(basic_streambuf<_CharT, _Traits>* __from,
93 bool _M_put_widen_aux(const char* __s, streamsize __n);
130 _Self& operator<<(bool __x);
178 bool _M_ok;
192 operator bool() const { return _M_ok; }
218 bool __init_bostr(basic_ostream<_CharT, _Traits>& __str) {
H A D_bvector.h51 operator bool() const {
54 _Bit_reference& operator = (bool __x) {
60 return *this = bool(__x);
62 bool operator == (const _Bit_reference& __x) const {
63 return bool(*this) == bool(__x);
65 bool operator < (const _Bit_reference& __x) const {
66 return !bool(*this) && bool(__x);
69 _Bit_reference& operator |= (bool __
256 value_type(const _STLP_PRIV _Bit_iter<bool, const bool*>&) argument
685 insert(iterator __position, bool __x = bool()) argument
800 resize(size_type __new_size, bool __x = bool()) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java158 expr = bool(opPos); break;
475 protected Expression bool(int opPos) throws TransformerException method in class:Compiler
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java263 public boolean bool() throws javax.xml.transform.TransformerException method in class:XObject
280 return bool();
507 result = new Boolean(bool());
/external/clang/include/clang/Lex/
H A DMacroInfo.h54 mutable bool IsDefinitionLengthCached : 1;
57 bool IsFunctionLike : 1;
64 bool IsC99Varargs : 1;
70 bool IsGNUVarargs : 1;
77 bool IsBuiltinMacro : 1;
80 bool HasCommaPasting : 1;
90 bool IsDisabled : 1;
96 bool IsUsed : 1;
99 bool IsAllowRedefinitionsWithoutWarning : 1;
102 bool IsWarnIfUnuse
[all...]

Completed in 364 milliseconds

123456789