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

  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
JITLink.h 106 Addressable(JITTargetAddress Address, bool IsDefined)
107 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {}
110 : Address(Address), IsDefined(false), IsAbsolute(true) {
111 assert(!(IsDefined && IsAbsolute) &&
126 bool isDefined() const { return static_cast<bool>(IsDefined); }
131 assert(!IsDefined && "Cannot change the Absolute flag on a defined block");
136 uint64_t IsDefined : 1;
336 assert(Base.isDefined() &
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSymbol.h 239 /// isDefined - Check if this symbol is defined (i.e., it has an address).
242 bool isDefined() const { return !isUndefined(); }
247 return isDefined() && !isAbsolute();
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
MacroInfo.h 384 bool isDefined() const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorLoopCarriedReuse.cpp 153 bool isDefined() { return Inst2Replace != nullptr; }
594 if (ReuseCandidate.isDefined()) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h 69 bool isDefined() const { return !isUndefined(); }
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 2970 bool FunctionDecl::isDefined(const FunctionDecl *&Definition,
3748 if (!isDefined(FD, /*CheckForPendingFriendDefinition=*/true))
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 177 bool isImplicitlyDeclared = false, bool isDefined = false,
238 bool isImplicitlyDeclared = false, bool isDefined = false,
457 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; }
458 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; }

Completed in 38 milliseconds