Home | History | Annotate | Download | only in c-index-test

Lines Matching refs:results

1539    * files, so that we have a way to test results after changing the source. */
1997 CXCodeCompleteResults *results = 0;
2046 results = clang_codeCompleteAt(TU, filename, line, column,
2049 if (!results) {
2054 clang_disposeCodeCompleteResults(results);
2057 if (results) {
2058 unsigned i, n = results->NumResults, containerIsIncomplete = 0;
2064 /* Sort the code-completion results based on the typed text. */
2065 clang_sortCodeCompletionResults(results->Results, results->NumResults);
2068 print_completion_result(results->Results + i, stdout);
2070 n = clang_codeCompleteGetNumDiagnostics(results);
2072 CXDiagnostic diag = clang_codeCompleteGetDiagnostic(results, i);
2077 contexts = clang_codeCompleteGetContexts(results);
2080 containerKind = clang_codeCompleteGetContainerKind(results,
2097 containerUSR = clang_codeCompleteGetContainerUSR(results);
2102 objCSelector = clang_codeCompleteGetObjCSelector(results);
2109 clang_disposeCodeCompleteResults(results);