Lines Matching refs:AllocatedResults
525 AllocatedCXCodeCompleteResults &AllocatedResults; member in __anon11b7ca9d0211::CaptureCompletionResults
534 AllocatedResults(Results), CCTUInfo(Results.CodeCompletionAllocator), in CaptureCompletionResults()
557 AllocatedResults.ContextKind = contextKind; in ProcessCodeCompleteResults()
558 AllocatedResults.Contexts = getContextsForContextKind(contextKind, S); in ProcessCodeCompleteResults()
560 AllocatedResults.Selector = ""; in ProcessCodeCompleteResults()
566 AllocatedResults.Selector += selIdent->getName(); in ProcessCodeCompleteResults()
567 AllocatedResults.Selector += ":"; in ProcessCodeCompleteResults()
594 AllocatedResults.ContainerKind = clang_getCursorKind(cursor); in ProcessCodeCompleteResults()
597 AllocatedResults.ContainerUSR = clang_getCString(CursorUSR); in ProcessCodeCompleteResults()
602 AllocatedResults.ContainerIsIncomplete = type->isIncompleteType(); in ProcessCodeCompleteResults()
605 AllocatedResults.ContainerIsIncomplete = 1; in ProcessCodeCompleteResults()
609 AllocatedResults.ContainerKind = CXCursor_InvalidCode; in ProcessCodeCompleteResults()
610 AllocatedResults.ContainerUSR.clear(); in ProcessCodeCompleteResults()
611 AllocatedResults.ContainerIsIncomplete = 1; in ProcessCodeCompleteResults()
633 return *AllocatedResults.CodeCompletionAllocator; in getAllocator()
640 AllocatedResults.Results = new CXCompletionResult [StoredResults.size()]; in Finish()
641 AllocatedResults.NumResults = StoredResults.size(); in Finish()
642 std::memcpy(AllocatedResults.Results, StoredResults.data(), in Finish()