HomeSort by: relevance | last modified time | path
    Searched defs:Boolean (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPackReader.h 53 Boolean,
84 /// Value for \c Type::Boolean.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ConvertUTF.h 112 typedef unsigned char Boolean; /* 0 or 1 */
174 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd);
176 Boolean isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd);
JSON.h 236 /// boolean (bool)
293 Boolean,
337 // Boolean (disallow implicit conversions).
345 // Integers (except boolean). Must be non-narrowing convertible to int64_t.
382 return Boolean;
683 P.report("expected boolean");
  /src/external/bsd/libbind/dist/tests/
res.h 41 typedef int Boolean;
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 263 VariantValue(bool Boolean);
277 /// Boolean value functions.
280 void setBoolean(bool Boolean);
345 bool Boolean;
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Boolean.h 1 //===--- Boolean.h - Wrapper for boolean types for the VM -------*- C++ -*-===//
24 /// Wrapper around boolean types.
25 class Boolean {
27 /// Underlying boolean.
30 /// Construct a wrapper from a boolean.
31 explicit Boolean(bool V) : V(V) {}
34 /// Zero-initializes a boolean.
35 Boolean() : V(false) {}
37 bool operator<(Boolean RHS) const { return V < RHS.V;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 41 Type *Boolean;
126 Boolean = Type::getInt1Ty(Context);
129 ReturnStruct = StructType::get(Boolean, IntMask);
133 BoolUndef = UndefValue::get(Boolean);
  /src/external/bsd/pkg_install/dist/lib/
lib.h 186 typedef unsigned int Boolean;
193 Boolean marked; /* whether entry has been marked */
288 Boolean is_automatic_installed(const char *);
315 Boolean fexists(const char *);
316 Boolean isdir(const char *);
317 Boolean islinktodir(const char *);
318 Boolean isemptydir(const char *);
319 Boolean isemptyfile(const char *);
320 Boolean isfile(const char *);
321 Boolean isbrokenlink(const char *)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 240 Type *Boolean;
556 PhiInserter.Initialize(Boolean, "");
1010 Boolean = Type::getInt1Ty(Context);
1013 BoolUndef = UndefValue::get(Boolean);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 3713 /// Find the failed Boolean condition within a given Boolean
4046 // The boolean value will be true to indicate that the namespace was loaded
11257 /// to the conversion from scalar type ScalarTy to the Boolean type.
11831 Boolean, ///< A boolean condition, from 'if', 'while', 'for', or 'do'.
11832 ConstexprIf, ///< A constant boolean condition from 'if constexpr'.
11851 /// the given expression as a boolean condition (e.g. in an if
11870 /// being used as a boolean condition, warn if it's an assignment.

Completed in 45 milliseconds