/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 55 std::vector<Result> Results; member in __anon65c16fb00111::ResultBuilder 216 Result *data() { return Results.empty()? nullptr : &Results.front(); } in data() 217 unsigned size() const { return Results.size(); } in size() 218 bool empty() const { return Results.empty(); } in empty() 808 Results.push_back(R); in MaybeAddConstructorResults() 817 Results.push_back(R); in MaybeAddResult() 855 Results[Index].Declaration = R.Declaration; in MaybeAddResult() 923 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size()); in MaybeAddResult() 924 Results.push_back(R); in MaybeAddResult() 934 Results.push_back(R); in AddResult() [all …]
|
D | CodeCompleteConsumer.cpp | 434 CodeCompletionResult *Results, in ProcessCodeCompleteResults() argument 436 std::stable_sort(Results, Results + NumResults); in ProcessCodeCompleteResults() 441 switch (Results[I].Kind) { in ProcessCodeCompleteResults() 443 OS << *Results[I].Declaration; in ProcessCodeCompleteResults() 444 if (Results[I].Hidden) in ProcessCodeCompleteResults() 447 = Results[I].CreateCodeCompletionString(SemaRef, Context, in ProcessCodeCompleteResults() 460 OS << Results[I].Keyword << '\n'; in ProcessCodeCompleteResults() 464 OS << Results[I].Macro->getName(); in ProcessCodeCompleteResults() 466 = Results[I].CreateCodeCompletionString(SemaRef, Context, in ProcessCodeCompleteResults() 478 << Results[I].Pattern->getAsString() << '\n'; in ProcessCodeCompleteResults()
|
D | SemaCoroutine.cpp | 172 Expr *Results[3]; member 208 Calls.Results[I] = Result.get(); in buildCoawaitCalls() 254 Expr *Res = new (Context) CoawaitExpr(Loc, E, RSS.Results[0], RSS.Results[1], in BuildCoawaitExpr() 255 RSS.Results[2]); in BuildCoawaitExpr() 321 Expr *Res = new (Context) CoyieldExpr(Loc, E, RSS.Results[0], RSS.Results[1], in BuildCoyieldExpr() 322 RSS.Results[2]); in BuildCoyieldExpr()
|
/external/clang/tools/libclang/ |
D | CIndexCodeCompletion.cpp | 338 delete [] Results; in ~AllocatedCXCodeCompleteResults() 531 AllocatedCXCodeCompleteResults &Results, in CaptureCompletionResults() argument 534 AllocatedResults(Results), CCTUInfo(Results.CodeCompletionAllocator), in CaptureCompletionResults() 540 CodeCompletionResult *Results, in ProcessCodeCompleteResults() argument 545 = Results[I].CreateCodeCompletionString(S, Context, getAllocator(), in ProcessCodeCompleteResults() 550 R.CursorKind = Results[I].CursorKind; in ProcessCodeCompleteResults() 640 AllocatedResults.Results = new CXCompletionResult [StoredResults.size()]; in Finish() 642 std::memcpy(AllocatedResults.Results, StoredResults.data(), in Finish() 693 AllocatedCXCodeCompleteResults *Results = new AllocatedCXCodeCompleteResults( in clang_codeCompleteAt_Impl() local 695 Results->Results = nullptr; in clang_codeCompleteAt_Impl() [all …]
|
/external/dagger2/producers/src/test/java/dagger/producers/internal/ |
D | SetOfProducedProducerTest.java | 68 Results<Integer> results = Results.create(producer.get().get()); in delegateSetNpe() 81 Results<Integer> results = Results.create(producer.get().get()); in oneOfDelegateSetNpe() 93 Results<Integer> results = Results.create(producer.get().get()); in delegateElementNpe() 105 Results<Integer> results = Results.create(producer.get().get()); in oneOfDelegateElementNpe() 112 static final class Results<T> { class in SetOfProducedProducerTest 116 private Results(ImmutableSet<T> successes, ImmutableSet<ExecutionException> failures) { in Results() method in SetOfProducedProducerTest.Results 121 static <T> Results<T> create(Set<Produced<T>> setOfProduced) { in create() 131 return new Results<T>(successes.build(), failures.build()); in create()
|
/external/llvm/test/CodeGen/Generic/ |
D | negintconst.ll | 31 %Results = type { float, float, float } 37 %fval = alloca %Results, i32 4 ; <%Results*> [#uses=2] 42 …%fptr = getelementptr %Results, %Results* %fval, i64 %ioff.upgrd.1 ; <%Results*> [#… 44 …call i32 (i8*, ...) @printf( i8* %castFmt, i32 %ioff, %Results* %fval, %Results* %fptr ) …
|
/external/clang/include/clang/Sema/ |
D | Lookup.h | 557 LookupResult &Results; variable 563 Filter(LookupResult &Results) in Filter() argument 564 : Results(Results), I(Results.begin()), Changed(false), CalledDone(false) in Filter() 569 : Results(F.Results), I(F.I), Changed(F.Changed), in Filter() 579 return I != Results.end(); in hasNext() 583 assert(I != Results.end() && "next() called on empty filter"); in next() 589 I = Results.begin(); in restart() 594 Results.Decls.erase(--I); in erase() 601 Results.Decls.replace(I-1, D); in replace() 607 Results.Decls.replace(I-1, D, AS); in replace() [all …]
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 128 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results); 129 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results); 135 SmallVectorImpl<SDValue> &Results); 1768 SmallVectorImpl<SDValue> &Results) { in ExpandDYNAMIC_STACKALLOC() argument 1798 Results.push_back(Tmp1); in ExpandDYNAMIC_STACKALLOC() 1799 Results.push_back(Tmp2); in ExpandDYNAMIC_STACKALLOC() 2344 SmallVectorImpl<SDValue> &Results) { in ExpandDivRemLibCall() argument 2400 Results.push_back(CallInfo.first); in ExpandDivRemLibCall() 2401 Results.push_back(Rem); in ExpandDivRemLibCall() 2453 SmallVectorImpl<SDValue> &Results) { in ExpandSinCosLibCall() argument [all …]
|
D | LegalizeTypes.cpp | 953 SmallVector<SDValue, 8> Results; in CustomLowerNode() local 955 TLI.ReplaceNodeResults(N, Results, DAG); in CustomLowerNode() 957 TLI.LowerOperationWrapper(N, Results, DAG); in CustomLowerNode() 959 if (Results.empty()) in CustomLowerNode() 965 if (Results.size() == N->getNumValues() + 1 && LegalizeResult) { in CustomLowerNode() 968 SetExpandedInteger(SDValue(N, 0), Results[0], Results[1]); in CustomLowerNode() 970 ReplaceValueWith(SDValue(N, 1), Results[2]); in CustomLowerNode() 975 assert(Results.size() == N->getNumValues() && in CustomLowerNode() 977 for (unsigned i = 0, e = Results.size(); i != e; ++i) { in CustomLowerNode() 978 ReplaceValueWith(SDValue(N, i), Results[i]); in CustomLowerNode() [all …]
|
/external/easymock/src/org/easymock/internal/ |
D | ExpectedInvocationAndResults.java | 26 Results results; 29 Results results) { in ExpectedInvocationAndResults() 38 public Results getResults() { in getResults()
|
D | UnorderedBehavior.java | 42 Results list = new Results(); in addExpected()
|
/external/parameter-framework/upstream/parameter/ |
D | SystemClass.h | 76 void checkForSubsystemsToResync(CSyncerSet &syncerSet, core::Results &infos); 102 bool loadSubsystemsFromSharedLibraries(core::Results &errors, 115 bool loadPlugins(std::list<std::string> &lstrPluginFiles, core::Results &errors);
|
D | ConfigurableDomain.h | 79 core::Results &errors) const; 113 const CParameterBlackboard *pMainBlackboard, core::Results &infos); 130 bool split(CConfigurableElement *pConfigurableElement, core::Results &infos); 207 core::Results &infos); 220 void doAddConfigurableElement(CConfigurableElement *pConfigurableElement, core::Results &infos,
|
D | SystemClass.cpp | 111 core::Results errors; in loadSubsystems() 121 bool CSystemClass::loadSubsystemsFromSharedLibraries(core::Results &errors, in loadSubsystemsFromSharedLibraries() 179 bool CSystemClass::loadPlugins(list<string> &lstrPluginFiles, core::Results &errors) in loadPlugins() 228 void CSystemClass::checkForSubsystemsToResync(CSyncerSet &syncerSet, core::Results &infos) in checkForSubsystemsToResync()
|
D | ConfigurableDomains.h | 91 bool split(const std::string &domainName, CConfigurableElement *element, core::Results &infos); 116 core::Results &errors) const; 148 core::Results &infos); 177 core::Results &infos) const;
|
D | ConfigurableDomain.cpp | 303 core::Results infos; in parseConfigurableElements() 366 core::Results &infos) in addConfigurableElement() 470 bool CConfigurableDomain::split(CConfigurableElement *pConfigurableElement, core::Results &infos) in split() 716 core::Results &errors) const in restoreConfiguration() 1045 CConfigurableElement *newElement, core::Results &infos) in mergeAlreadyAssociatedDescendantConfigurableElements() 1102 core::Results &infos, in doAddConfigurableElement()
|
D | ConfigurableDomains.cpp | 66 bool bForce, core::Results &infos) const in apply() 301 core::Results &infos) in split() 408 core::Results &errors) const in restoreConfiguration() 538 const CParameterBlackboard *mainBlackboard, core::Results &infos) in addConfigurableElementToDomain()
|
D | Results.h | 39 typedef std::list<std::string> Results; typedef
|
/external/skia/tests/ |
D | BlendTest.cpp | 15 struct Results { int diffs, diffs_0x00, diffs_0xff, diffs_by_1; }; argument 17 static bool acceptable(const Results& r) { in acceptable() 28 static Results test(Fn&& multiply) { in test() 29 Results r = { 0,0,0,0 }; in test()
|
/external/valgrind/none/tests/s390x/ |
D | fpext_warn.stderr.exp | 6 the rounding mode from FPC. Results may differ! 12 the rounding mode from FPC. Results may differ! 18 the rounding mode from FPC. Results may differ!
|
/external/clang/lib/Tooling/ |
D | FileMatchTrie.cpp | 137 void getAll(std::vector<StringRef> &Results, in getAll() argument 142 Results.push_back(StringRef(Path)); in getAll() 150 It->getValue().getAll(Results, Children.end()); in getAll()
|
/external/autotest/site_utils/docgen/ |
D | README.txt | 32 Reviewing Automated and Semi-Automated Test Results 38 Reporting Results
|
/external/llvm/test/CodeGen/Thumb2/ |
D | 2009-08-04-SubregLoweringBug.ll | 7 %struct.Results = type { float, float, float } 10 define void @get_results(%struct.Results* noalias nocapture sret %agg.result, %struct.Village* %vil…
|
/external/v8/tools/ |
D | run_perf.py | 152 class Results(object): class 212 return Results([{ 228 return Results() 263 res = reduce(lambda r, m: r + m.GetResults(), measurements, Results()) 330 trace_result = traces.setdefault(trace, Results([{ 339 return reduce(lambda r, t: r + t, traces.itervalues(), Results()) 856 results = Results() 857 results_no_patch = Results()
|
/external/llvm/lib/Target/X86/ |
D | X86SelectionDAGInfo.cpp | 262 SmallVector<SDValue, 4> Results; in EmitTargetCodeForMemcpy() local 263 Results.push_back(RepMovs); in EmitTargetCodeForMemcpy() 270 Results.push_back(DAG.getMemcpy(Chain, dl, in EmitTargetCodeForMemcpy() 283 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Results); in EmitTargetCodeForMemcpy()
|