Home | History | Annotate | Download | only in clang-c

Lines Matching defs:Results

513    * results.
886 * code-completion results with each reparse of the source file.
888 * Caching of code-completion results is a performance optimization that
1403 * "swap" functions declared above, so both results will be available. At
3126 * expected to filter the code-completion results based on the text in this
3362 * \brief Contains the results of code-completion.
3364 * This data structure contains the results of code completion, as
3370 * \brief The code-completion results.
3372 CXCompletionResult *Results;
3375 * \brief The number of code-completion results stored in the
3376 * \c Results array.
3410 * \brief The context for completions is unexposed, as only Clang results
3416 * \brief Completions for any possible type should be included in the results.
3422 * should be included in the results.
3427 * be included in the results.
3432 * should be included in the results.
3437 * included in the results.
3443 * operator should be included in the results.
3448 * operator should be included in the results.
3453 * using the dot operator should be included in the results.
3458 * \brief Completions for enum tags should be included in the results.
3462 * \brief Completions for union tags should be included in the results.
3466 * \brief Completions for struct tags should be included in the results.
3471 * \brief Completions for C++ class names should be included in the results.
3476 * included in the results.
3481 * the results.
3487 * in the results.
3492 * the results.
3497 * the results.
3502 * in the results.
3507 * the results.
3512 * the results.
3518 * the results.
3523 * \brief Natural language completions should be included in the results.
3543 * column within source code, providing results that suggest potential
3558 * the completion results will provide, e.g., the members of the struct that
3560 * beginning of the token currently being typed, then filtering the results
3564 * client can filter the results based on the current token text ("get"), only
3565 * showing those results that start with "get". The intent of this interface
3567 * results from the filtering of results on a per-character basis, which must
3603 * containing code-completion results, which should eventually be
3617 * \brief Sort the code-completion results in case-insensitive alphabetical
3620 * \param Results The set of results to sort.
3621 * \param NumResults The number of results in \p Results.
3624 void clang_sortCodeCompletionResults(CXCompletionResult *Results,
3628 * \brief Free the given set of code-completion results.
3631 void clang_disposeCodeCompleteResults(CXCodeCompleteResults *Results);
3638 unsigned clang_codeCompleteGetNumDiagnostics(CXCodeCompleteResults *Results);
3643 * \param Result the code completion results to query.
3650 CXDiagnostic clang_codeCompleteGetDiagnostic(CXCodeCompleteResults *Results,
3657 * \param Results the code completion results to query
3660 * along with the given code completion results.
3664 CXCodeCompleteResults *Results);
3673 * \param Results the code completion results to query
3684 CXCodeCompleteResults *Results,
3692 * \param Results the code completion results to query
3697 CXString clang_codeCompleteGetContainerUSR(CXCodeCompleteResults *Results);
3706 * \param Results the code completion results to query
3712 CXString clang_codeCompleteGetObjCSelector(CXCodeCompleteResults *Results);