/external/chromium/chrome/common/extensions/ |
update_manifest.h | 50 struct Results { 51 Results(); 52 ~Results(); 63 // indicating success or failure. On success, the results are available by 64 // calling results(). The details for any failures are available by calling 68 const Results& results() { return results_; } function in class:UpdateManifest 72 Results results_;
|
update_manifest.cc | 26 UpdateManifest::Results::Results() : daystart_elapsed_seconds(kNoDaystart) {} 28 UpdateManifest::Results::~Results() {}
|
/external/easymock/src/org/easymock/internal/ |
Results.java | 23 public class Results implements Serializable {
31 private final List<Result> results = new ArrayList<Result>();
field in class:Results 42 results.add(result);
51 return results.get(i);
56 return results.get(i);
|
/external/llvm/lib/Target/X86/ |
X86SelectionDAGInfo.cpp | 238 SmallVector<SDValue, 4> Results; 239 Results.push_back(RepMovs); 246 Results.push_back(DAG.getMemcpy(Chain, dl, 258 &Results[0], Results.size());
|
/external/chromium/chrome/browser/net/ |
predictor.h | 46 typedef std::map<GURL, UrlInfo> Results; 65 // In some circumstances, for privacy reasons, all results should be 217 Results::const_iterator it(results_.find(url)); 282 Results results_;
|
/external/llvm/utils/TableGen/ |
IntrinsicEmitter.cpp | 664 std::vector<StringMatcher::StringPair> Results; 670 Results.push_back(StringMatcher::StringPair(I->first, ResultCode)); 673 StringMatcher("BuiltinName", Results, OS).Emit();
|
DAGISelMatcher.h | 81 MarkGlueResults, // Indicate which interior nodes have glue results. 82 CompleteMatch, // Finish a match and update the results. 83 MorphNodeTo // Build a node, finish a match and update results. 898 /// pushing the chain and glue results. [all...] |
CodeGenDAGPatterns.cpp | [all...] |
/external/clang/include/clang/Sema/ |
Lookup.h | 23 /// @brief Represents the results of name lookup. 25 /// An instance of the LookupResult class captures the results of a 29 /// results occurred for a given lookup. 54 /// @brief Name lookup results in an ambiguity; use 61 /// Name lookup results in an ambiguity because multiple 75 /// Name lookup results in an ambiguity because multiple 89 /// Name lookup results in an ambiguity because multiple definitions 104 /// Name lookup results in an ambiguity because an entity with a 122 /// A little identifier for flagging temporary lookup results. 234 /// Determines if the results are overloaded [all...] |
/external/clang/tools/libclang/ |
CIndexCodeCompletion.cpp | 225 /// with the code-completion results. 229 /// the code-completion results. 232 /// \brief Allocator used to store globally cached code-completion results. 236 /// \brief Allocator used to store code completion results. 263 fprintf(stderr, "+++ %d completion results\n", CodeCompletionResultObjects); 268 delete [] Results; 277 fprintf(stderr, "--- %d completion results\n", CodeCompletionResultObjects); 439 //Only Clang results should be accepted, so we'll set all of the other 459 CaptureCompletionResults(AllocatedCXCodeCompleteResults &Results) 461 AllocatedResults(Results) { } [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeTypes.cpp | 229 // The following calls must take care of *all* of the node's results, 230 // not just the illegal result they were passed (this includes results 231 // with a legal type). Results can be remapped using ReplaceValueWith, 282 // The following calls must either replace all of the node's results 333 "Node morphing changed the number of results!"); 710 "Node morphing changed the number of results!"); [all...] |
/external/clang/include/clang/AST/ |
ExprCXX.h | [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 234 // Clear out the previous results. 239 llvm::SmallVector<Result, 8> Results; 241 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator, Results); 246 for (unsigned I = 0, N = Results.size(); I != N; ++I) { 247 switch (Results[I].Kind) { 251 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema, 253 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration, 256 CachedResult.Priority = Results[I].Priority; 257 CachedResult.Kind = Results[I].CursorKind; 258 CachedResult.Availability = Results[I].Availability [all...] |
/external/clang/include/clang-c/ |
Index.h | 438 * results. 811 * code-completion results with each reparse of the source file. 813 * Caching of code-completion results is a performance optimization that [all...] |
/external/clang/lib/Sema/ |
SemaCodeComplete.cpp | 38 /// \brief A container of code-completion results. 50 /// \brief The actual results we have found. 51 std::vector<Result> Results; 86 // 1 -> 2 elements: create the vector of results and push in the 114 /// results. 117 /// \brief The semantic analysis object for which results are being 125 /// results that are not desirable. 153 /// \brief The completion context in which we are gathering results. 193 /// results. 199 /// \brief Set the filter used for code-completion results [all...] |