Home | History | Annotate | Download | only in Sema

Lines Matching defs:Result

46     /// the result set (when it returns true) and which declarations should be
50 typedef CodeCompletionResult Result;
54 std::vector<Result> Results;
57 /// into the result set, used to ensure that no declaration ever gets into
58 /// the result set twice.
140 /// Closely matching the preferred type gives a boost to a result's
165 void AdjustResultPriorityForDecl(Result &R);
167 void MaybeAddConstructorResults(Result R);
211 Result *data() { return Results.empty()? 0 : &Results.front(); }
234 /// When an Objective-C method declaration result is added, and that
262 /// as a code-completion result.
270 /// \brief Check whether the result is hidden by the Hiding declaration.
272 /// \returns true if the result is hidden and cannot be found, false if
273 /// the hidden result could still be found. When false, \p R may be
274 /// modified to describe how the result can be found (e.g., via extra
276 bool CheckHiddenResult(Result &R, DeclContext *CurContext,
279 /// \brief Add a new result to this result set (if it isn't already in one
280 /// of the shadow maps), or replace an existing result (for, e.g., a
283 /// \param R the result to add (if it is unique).
285 /// \param CurContext the context in which this result will be named.
286 void MaybeAddResult(Result R, DeclContext *CurContext = 0);
288 /// \brief Add a new result to this result set, where we already know
291 /// \param R the result to add (if it is unique).
293 /// \param CurContext the context in which this result will be named.
295 /// \param Hiding the declaration that hides the result.
297 /// \param InBaseClass whether the result was found in a base
299 void AddResult(Result R, DeclContext *CurContext, NamedDecl *Hiding,
302 /// \brief Add a new non-declaration result to this result set.
303 void AddResult(Result R);
459 NestedNameSpecifier *Result = 0;
468 Result = NestedNameSpecifier::Create(Context, Result, Namespace);
471 Result = NestedNameSpecifier::Create(Context, Result,
475 return Result;
549 bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext,
566 // We can refer to the result with the appropriate qualification. Do it.
706 void ResultBuilder::AdjustResultPriorityForDecl(Result &R) {
732 void ResultBuilder::MaybeAddConstructorResults(Result R) {
768 void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) {
771 if (R.Kind != Result::RK_Declaration) {
772 // For non-declaration results, just add the result.
779 MaybeAddResult(Result(Using->getTargetDecl(), R.Qualifier), CurContext);
839 // The newly-added result is hidden by an entry in the shadow map.
847 // Make sure that any given declaration only shows up in the result set once.
851 // If the filter is for nested-name-specifiers, then this result starts a
859 // If this result is supposed to have an informative qualifier, add one.
872 // Insert this result into the set of results and into the current shadow
881 void ResultBuilder::AddResult(Result R, DeclContext *CurContext,
883 if (R.Kind != Result::RK_Declaration) {
884 // For non-declaration results, just add the result.
891 AddResult(Result(Using->getTargetDecl(), R.Qualifier), CurContext, Hiding);
906 // Make sure that any given declaration only shows up in the result set once.
910 // If the filter is for nested-name-specifiers, then this result starts a
921 // If this result is supposed to have an informative qualifier, add one.
934 // Adjust the priority if this result comes from a base class.
954 // Insert this result into the set of results.
961 void ResultBuilder::AddResult(Result R) {
962 assert(R.Kind != Result::RK_Declaration &&
1193 /// \brief Visible declaration consumer that adds a code-completion result
1209 ResultBuilder::Result Result(ND, 0, false, Accessible);
1210 Results.AddResult(Result, CurContext, Hiding, InBaseClass);
1218 typedef CodeCompletionResult Result;
1219 Results.AddResult(Result("short", CCP_Type));
1220 Results.AddResult(Result("long", CCP_Type));
1221 Results.AddResult(Result("signed", CCP_Type));
1222 Results.AddResult(Result("unsigned", CCP_Type));
1223 Results.AddResult(Result("void", CCP_Type));
1224 Results.AddResult(Result("char", CCP_Type));
1225 Results.AddResult(Result("int", CCP_Type));
1226 Results.AddResult(Result("float", CCP_Type));
1227 Results.AddResult(Result("double", CCP_Type));
1228 Results.AddResult(Result("enum", CCP_Type));
1229 Results.AddResult(Result("struct", CCP_Type));
1230 Results.AddResult(Result("union", CCP_Type));
1231 Results.AddResult(Result("const", CCP_Type));
1232 Results.AddResult(Result("volatile", CCP_Type));
1236 Results.AddResult(Result("_Complex", CCP_Type));
1237 Results.AddResult(Result("_Imaginary", CCP_Type));
1238 Results.AddResult(Result("_Bool", CCP_Type));
1239 Results.AddResult(Result("restrict", CCP_Type));
1246 Results.AddResult(Result("bool", CCP_Type +
1248 Results.AddResult(Result("class", CCP_Type));
1249 Results.AddResult(Result("wchar_t", CCP_Type));
1257 Results.AddResult(Result(Builder.TakeString()));
1260 Results.AddResult(Result("auto", CCP_Type));
1261 Results.AddResult(Result("char16_t", CCP_Type));
1262 Results.AddResult(Result("char32_t", CCP_Type));
1268 Results.AddResult(Result(Builder.TakeString()));
1275 // Results.AddResult(Result("_Decimal32"));
1276 // Results.AddResult(Result("_Decimal64"));
1277 // Results.AddResult(Result("_Decimal128"));
1282 Results.AddResult(Result(Builder.TakeString()));
1288 Results.AddResult(Result(Builder.TakeString()));
1295 typedef CodeCompletionResult Result;
1299 Results.AddResult(Result("extern"));
1300 Results.AddResult(Result("static"));
1306 typedef CodeCompletionResult Result;
1311 Results.AddResult(Result("explicit"));
1312 Results.AddResult(Result("friend"));
1313 Results.AddResult(Result("mutable"));
1314 Results.AddResult(Result("virtual"));
1323 Results.AddResult(Result("inline"));
1436 std::string Result;
1437 T.getAsStringInternal(Result, Policy);
1438 return Allocator.CopyString(Result);
1467 typedef CodeCompletionResult Result;
1480 Results.AddResult(Result(Builder.TakeString()));
1489 Results.AddResult(Result(Builder.TakeString()));
1497 Results.AddResult(Result(Builder.TakeString()));
1504 Results.AddResult(Result(Builder.TakeString()));
1511 Results.AddResult(Result(Builder.TakeString()));
1529 Results.AddResult(Result(Builder.TakeString()));
1540 Results.AddResult(Result(Builder.TakeString()));
1550 Results.AddResult(Result(Builder.TakeString()));
1556 Results.AddResult(Result(Builder.TakeString()));
1562 Results.AddResult(Result(Builder.TakeString()));
1575 Results.AddResult(Result(Builder.TakeString()));
1617 Results.AddResult(Result(Builder.TakeString()));
1635 Results.AddResult(Result(Builder.TakeString()));
1648 Results.AddResult(Result(Builder.TakeString()));
1658 Results.AddResult(Result(Builder.TakeString()));
1663 Results.AddResult(Result(Builder.TakeString()));
1679 Results.AddResult(Result(Builder.TakeString()));
1691 Results.AddResult(Result(Builder.TakeString()));
1710 Results.AddResult(Result(Builder.TakeString()));
1716 Results.AddResult(Result(Builder.TakeString()));
1722 Results.AddResult(Result(Builder.TakeString()));
1741 Results.AddResult(Result(Builder.TakeString()));
1747 Results.AddResult(Result(Builder.TakeString()));
1755 Results.AddResult(Result(Builder.TakeString()));
1773 Results.AddResult(Result(Builder.TakeString()));
1781 Results.AddResult(Result(Builder.TakeString()));
1789 Results.AddResult(Result(Builder.TakeString()));
1801 Results.AddResult(Result(Builder.TakeString()));
1806 Results.AddResult(Result(Builder.TakeString()));
1817 Results.AddResult(Result(Builder.TakeString()));
1828 Results.AddResult(Result(Builder.TakeString()));
1838 Results.AddResult(Result(Builder.TakeString()));
1848 Results.AddResult(Result(Builder.TakeString()));
1857 Results.AddResult(Result(Builder.TakeString()));
1867 Results.AddResult(Result(Builder.TakeString()));
1879 Results.AddResult(Result(Builder.TakeString()));
1886 Results.AddResult(Result(Builder.TakeString()));
1896 Results.AddResult(Result(Builder.TakeString()));
1904 Results.AddResult(Result(Builder.TakeString()));
1913 Results.AddResult(Result(Builder.TakeString()));
1921 Results.AddResult(Result(Builder.TakeString()));
1929 Results.AddResult(Result(Builder.TakeString()));
1937 Results.AddResult(Result(Builder.TakeString()));
1954 Results.AddResult(Result(Builder.TakeString()));
1971 Results.AddResult(Result(Builder.TakeString()));
1980 Results.AddResult(Result(Builder.TakeString()));
1993 Results.AddResult(Result("operator"));
1996 /// \brief If the given declaration has an associated type, add it as a result
2001 CodeCompletionBuilder &Result) {
2030 Result.AddResultTypeChunk(GetCompletionTypeString(T, Context, Policy,
2031 Result.getAllocator()));
2035 CodeCompletionBuilder &Result) {
2040 Result.AddTextChunk(", nil");
2042 Result.AddTextChunk(", NULL");
2044 Result.AddTextChunk(", (void*)0");
2049 std::string Result;
2051 Result += "in ";
2053 Result += "inout ";
2055 Result += "out ";
2057 Result += "bycopy ";
2059 Result += "byref ";
2061 Result += "oneway ";
2062 return Result;
2075 std::string Result;
2078 Result = Param->getIdentifier()->getName();
2080 Param->getType().getAsStringInternal(Result, Policy);
2083 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier())
2084 + Result + ")";
2086 Result += Param->getIdentifier()->getName();
2088 return Result;
2131 std::string Result;
2133 Result = Param->getIdentifier()->getName();
2135 Param->getType().getUnqualifiedType().getAsStringInternal(Result, Policy);
2138 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier())
2139 + Result + ")";
2141 Result += Param->getIdentifier()->getName();
2144 return Result;
2149 std::string Result;
2152 ResultType.getAsStringInternal(Result, Policy);
2178 Result = Result + " (^";
2180 Result += Param->getIdentifier()->getName();
2181 Result += ")";
2182 Result += Params;
2185 Result = '^' + Result;
2186 Result += Params;
2189 Result += Param->getIdentifier()->getName();
2192 return Result;
2199 CodeCompletionBuilder &Result,
2210 CodeCompletionBuilder Opt(Result.getAllocator(),
2211 Result.getCodeCompletionTUInfo());
2215 Result.AddOptionalChunk(Opt.TakeString());
2222 Result.AddChunk(CodeCompletionString::CK_Comma);
2234 Result.AddPlaceholderChunk(
2235 Result.getAllocator().CopyString(PlaceholderStr));
2242 Result.AddPlaceholderChunk("...");
2244 MaybeAddSentinel(Context, Function, Result);
2252 CodeCompletionBuilder &Result,
2302 CodeCompletionBuilder Opt(Result.getAllocator(),
2303 Result.getCodeCompletionTUInfo());
2308 Result.AddOptionalChunk(Opt.TakeString());
2317 Result.AddChunk(CodeCompletionString::CK_Comma);
2320 Result.AddPlaceholderChunk(
2321 Result.getAllocator().CopyString(PlaceholderStr));
2328 AddQualifierToCompletionString(CodeCompletionBuilder &Result,
2342 Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS));
2344 Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS));
2348 AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result,
2359 Result.AddInformativeChunk(" const");
2364 Result.AddInformativeChunk(" volatile");
2369 Result.AddInformativeChunk(" restrict");
2381 Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr));
2386 NamedDecl *ND, CodeCompletionBuilder &Result) {
2413 Result.AddTypedTextChunk(OperatorName);
2421 Result.AddTypedTextChunk(
2422 Result.getAllocator().CopyString(ND->getNameAsString()));
2440 Result.AddTypedTextChunk(
2441 Result.getAllocator().CopyString(ND->getNameAsString()));
2445 Result.AddTypedTextChunk(
2446 Result.getAllocator().CopyString(Record->getNameAsString()));
2448 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
2449 AddTemplateParameterChunks(Context, Policy, Template, Result);
2450 Result.AddChunk(CodeCompletionString::CK_RightAngle);
2466 /// result.
2469 /// how to use this result, or NULL to indicate that the string or name of the
2470 /// result is all that is needed.
2477 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability);
2485 Result.addParentContext(Declaration->getDeclContext());
2486 Pattern->ParentKind = Result.getParentKind();
2487 Pattern->ParentName = Result.getParentName();
2494 Result.AddTypedTextChunk(Keyword);
2495 return Result.TakeString();
2502 Result.AddTypedTextChunk(
2503 Result.getAllocator().CopyString(Macro->getName()));
2506 return Result.TakeString();
2509 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2517 Result.AddPlaceholderChunk("...");
2523 Result.AddChunk(CodeCompletionString::CK_Comma);
2531 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
2536 Result.AddPlaceholderChunk(
2537 Result.getAllocator().CopyString((*A)->getName()));
2539 Result.AddChunk(CodeCompletionString::CK_RightParen);
2540 return Result.TakeString();
2543 assert(Kind == RK_Declaration && "Missed a result kind?");
2545 Result.addParentContext(ND->getDeclContext());
2550 Result.addBriefComment(RC->getBriefText(Ctx));
2555 Result.AddTypedTextChunk(
2556 Result.getAllocator().CopyString(ND->getNameAsString()));
2557 Result.AddTextChunk("::");
2558 return Result.TakeString();
2563 Result.AddAnnotation(Result.getAllocator().CopyString(Attr->getAnnotation()));
2567 AddResultTypeChunk(Ctx, Policy, ND, Result);
2570 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
2572 AddTypedNameChunk(Ctx, Policy, ND, Result);
2573 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2574 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
2575 Result.AddChunk(CodeCompletionString::CK_RightParen);
2576 AddFunctionTypeQualsToCompletionString(Result, Function);
2577 return Result.TakeString();
2581 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
2584 AddTypedNameChunk(Ctx, Policy, Function, Result);
2620 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
2621 AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result,
2623 Result.AddChunk(CodeCompletionString::CK_RightAngle);
2627 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2628 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
2629 Result.AddChunk(CodeCompletionString::CK_RightParen);
2630 AddFunctionTypeQualsToCompletionString(Result, Function);
2631 return Result.TakeString();
2635 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
2637 Result.AddTypedTextChunk(
2638 Result.getAllocator().CopyString(Template->getNameAsString()));
2639 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
2640 AddTemplateParameterChunks(Ctx, Policy, Template, Result);
2641 Result.AddChunk(CodeCompletionString::CK_RightAngle);
2642 return Result.TakeString();
2648 Result.AddTypedTextChunk(Result.getAllocator().CopyString(
2650 return Result.TakeString();
2656 Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName));
2658 Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName));
2663 Result.AddTypedTextChunk("");
2672 Result.AddChunk(CodeCompletionString::CK_HorizontalSpace);
2677 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
2679 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
2703 Result.AddTextChunk(Result.getAllocator().CopyString(Arg));
2705 Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg));
2707 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
2713 Result.AddTextChunk(", ...");
2715 Result.AddInformativeChunk(", ...");
2717 Result.AddPlaceholderChunk(", ...");
2720 MaybeAddSentinel(Ctx, Method, Result);
2723 return Result.TakeString();
2727 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
2730 Result.AddTypedTextChunk(
2731 Result.getAllocator().CopyString(ND->getNameAsString()));
2732 return Result.TakeString();
2744 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available);
2746 AddResultTypeChunk(S.Context, Policy, FDecl, Result);
2753 Result.AddTextChunk(GetCompletionTypeString(FT->getResultType(),
2755 Result.getAllocator()));
2756 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2757 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
2758 Result.AddChunk(CodeCompletionString::CK_RightParen);
2759 return Result.TakeString();
2763 Result.AddTextChunk(
2764 Result.getAllocator().CopyString(FDecl->getNameAsString()));
2766 Result.AddTextChunk(
2767 Result.getAllocator().CopyString(
2770 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2774 Result.AddChunk(CodeCompletionString::CK_Comma);
2789 Result.AddChunk(CodeCompletionString::CK_CurrentParameter,
2790 Result.getAllocator().CopyString(ArgString));
2792 Result.AddTextChunk(Result.getAllocator().CopyString(ArgString));
2796 Result.AddChunk(CodeCompletionString::CK_Comma);
2798 Result.AddTextChunk("...");
2800 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
2802 Result.AddChunk(CodeCompletionString::CK_RightParen);
2804 return Result.TakeString();
2904 typedef CodeCompletionResult Result;
2915 Results.AddResult(Result(M->first,
2927 typedef CodeCompletionResult Result;
2931 Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant));
2932 Results.AddResult(Result("__FUNCTION__", CCP_Constant));
2934 Results.AddResult(Result("__func__", CCP_Constant));
3084 typedef CodeCompletionResult Result;
3092 typedef CodeCompletionResult Result;
3100 Results.AddResult(Result(Builder.TakeString(),
3120 Results.AddResult(Result(Builder.TakeString(),
3231 typedef CodeCompletionResult Result;
3240 Results.AddResult(Result("const"));
3241 Results.AddResult(Result("volatile"));
3243 Results.AddResult(Result("restrict"));
3247 Results.AddResult(Result("operator"));
3387 typedef CodeCompletionResult Result;
3398 Results.MaybeAddResult(Result(*P, 0), CurContext);
3417 Results.MaybeAddResult(Result(Builder.TakeString(), *M,
3475 typedef CodeCompletionResult Result;
3535 Results.AddResult(Result("template"));
4128 typedef CodeCompletionResult Result;
4138 Results.AddResult(Result(Spelling));
4332 typedef CodeCompletionResult Result;
4334 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
4343 Results.AddResult(Result(Builder.TakeString()));
4349 Results.AddResult(Result(Builder.TakeString()));
4356 typedef CodeCompletionResult Result;
4359 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
4363 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property")));
4366 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required")));
4369 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional")));
4374 typedef CodeCompletionResult Result;
4382 Results.AddResult(Result(Builder.TakeString()));
4391 Results.AddResult(Result(Builder.TakeString()));
4397 Results.AddResult(Result(Builder.TakeString()));
4403 Results.AddResult(Result(Builder.TakeString()));
4412 Results.AddResult(Result(Builder.TakeString()));
4433 typedef CodeCompletionResult Result;
4447 Results.AddResult(Result(Builder.TakeString()));
4455 Results.AddResult(Result(Builder.TakeString()));
4463 Results.AddResult(Result(Builder.TakeString()));
4470 Results.AddResult(Result(Builder.TakeString()));
4477 Results.AddResult(Result(Builder.TakeString()));
4487 Results.AddResult(Result(Builder.TakeString()));
4494 Results.AddResult(Result(Builder.TakeString()));
4498 typedef CodeCompletionResult Result;
4520 Results.AddResult(Result(Builder.TakeString()));
4527 Results.AddResult(Result(Builder.TakeString()));
4539 Results.AddResult(Result(Builder.TakeString()));
4546 typedef CodeCompletionResult Result;
4547 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private")));
4548 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected")));
4549 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public")));
4551 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package")));
4724 /// completions with the same selector into the result set.
4758 typedef CodeCompletionResult Result;
4773 Result R = Result(*M, 0);
4971 /// or NULL if no better result could be determined.
5162 typedef CodeCompletionResult Result;
5180 Results.AddResult(Result("super"));
5266 typedef CodeCompletionResult Result;
5271 Result *ResultsData = Results.data();
5273 Result &R = ResultsData[I];
5274 if (R.Kind == Result::RK_Declaration &&
5303 typedef CodeCompletionResult Result;
5365 Result R(MethList->Method, 0);
5417 typedef CodeCompletionResult Result;
5541 Result R(MethList->Method, 0);
5651 typedef CodeCompletionResult Result;
5659 Results.AddResult(Result(Proto, 0), CurContext, 0, false);
5672 // Tell the result set to ignore all of the protocols we have
5718 typedef CodeCompletionResult Result;
5727 Results.AddResult(Result(Class, 0), CurContext, 0, false);
5798 typedef CodeCompletionResult Result;
5822 Results.AddResult(Result(Category, 0), CurContext, 0, false);
5833 typedef CodeCompletionResult Result;
5859 Results.AddResult(Result(Category, 0), CurContext, 0, false);
5913 typedef CodeCompletionResult Result;
5959 Results.AddResult(Result(Ivar, 0), CurContext, 0, false);
5968 // Reduce the priority of this result by one, to give it a slight
5980 // Create ivar result _propName, that the user can use to synthesize
5983 typedef CodeCompletionResult Result;
5992 Results.AddResult(Result(Builder.TakeString(), Priority,
6142 typedef CodeCompletionResult Result;
6187 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6210 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6233 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6281 Results.AddResult(Result(Builder.TakeString(),
6307 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6334 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6366 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6400 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6431 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6453 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6475 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6507 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6540 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6563 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6593 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6617 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6638 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6661 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6682 Results.AddResult(Result
6703 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6727 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6748 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6798 typedef CodeCompletionResult Result;
6811 // If the result type was not already provided, add it to the
6862 // If the result type is not void, add a return clause.
6878 Results.AddResult(Result(Builder.TakeString(), Method, Priority));
6942 typedef CodeCompletionResult Result;
6978 Result R(MethList->Method, 0);