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

  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentLexer.cpp 42 char *Resolved = Allocator.Allocate<char>(UNI_MAX_UTF8_BYTES_PER_CODE_POINT);
43 char *ResolvedPtr = Resolved;
45 return StringRef(Resolved, ResolvedPtr - Resolved);
615 StringRef Resolved;
617 Resolved = resolveHTMLNamedCharacterReference(Name);
619 Resolved = resolveHTMLDecimalCharacterReference(Name);
621 Resolved = resolveHTMLHexCharacterReference(Name);
623 if (Resolved.empty()) {
628 T.setText(Resolved);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 310 BlockNode Resolved = Working[Succ.Index].getResolvedNode();
316 if (!isLoopHeader(Resolved))
318 if (Resolved != Succ)
319 dbgs() << ", resolved = " << getBlockName(Resolved);
325 if (isLoopHeader(Resolved)) {
327 Dist.addBackedge(Resolved, Weight);
331 if (Working[Resolved.Index].getContainingLoop() != OuterLoop) {
333 Dist.addExit(Resolved, Weight);
337 if (Resolved < Pred)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderSearch.h 74 /// "resolved", meaning that it was loaded from the external source.
75 unsigned Resolved : 1;
116 Resolved(false), IndexHeaderMapHeader(false), IsValid(false) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
Core.h 380 /// Callback to notify client that symbols have been resolved.
532 /// Notifies the target JITDylib that the given symbols have been resolved.
537 /// symbols, but all symbols must have been resolved prior to calling emit.
539 /// This method will return an error if any symbols being resolved have been
551 /// This method will return an error if any symbols being resolved have been
692 /// All symbols will be resolved and marked ready as soon as the unit is
735 /// resolved.
790 Resolved, /// Assigned address, still materializing.
819 /// resolved.
1161 Error resolve(MaterializationResponsibility &MR, const SymbolMap &Resolved);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAssembler.cpp 798 // backend has indicated must be resolved at link time. Split up the fixup
961 bool Resolved = evaluateFixup(Layout, Fixup, DF, Target, Value, WasForced);
966 return getBackend().fixupNeedsRelaxationAdvanced(Fixup, Resolved, Value, DF,
996 // they are fully resolved, to avoid retesting on later passes.
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 445 UINT8 Resolved; /* Reference has been resolved to a value */
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 1422 std::vector<Decl *> Resolved;
1423 Resolved.reserve(TopLevelDeclsInPreamble.size());
1429 Resolved.push_back(D);
1432 TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 338 /// Is this a concrete and fully resolved value without any references or
2011 /// StringInit), or nullptr if the name could not be resolved.
2031 bool Resolved;
2033 MappedValue() : V(nullptr), Resolved(false) {}
2034 MappedValue(Init *V, bool Resolved) : V(V), Resolved(Resolved) {}
  /src/external/apache2/llvm/dist/llvm/lib/Support/
VirtualFileSystem.cpp 272 sys::fs::make_absolute(WD->Resolved, Storage);
277 // The current working directory, without symlinks resolved. (echo $PWD).
279 // The current working directory, with links resolved. (readlink .).
280 SmallString<128> Resolved;
321 SmallString<128> Absolute, Resolved, Storage;
328 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved))
330 WD = {Absolute, Resolved};
857 // If Node is HardLink then return the resolved file.
875 // before. Resolved ToPath must be a File.
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.cpp 107 "' could not be fully resolved: " +
484 "' could not be fully resolved");
1305 RecTy *Resolved = resolveTypes(ArgType, ListType);
1306 if (!Resolved) {
1317 ArgType = Resolved;
2796 "resolved at this time");
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 1850 std::string Resolved = std::string(Key.Filename);
1851 Reader.ResolveImportedPath(M, Resolved);
1852 if (auto File = FileMgr.getFile(Resolved))
2337 std::string Resolved = resolveFileRelativeToOriginalDir(
2339 if (!Resolved.empty())
2340 File = expectedToOptional(FileMgr.getFileRef(Resolved));
8451 /// cannot safely be resolved, they are queued until it is safe to resolve

Completed in 49 milliseconds