HomeSort by relevance Sort by last modified time
    Searched defs:Results (Results 1 - 13 of 13) sorted by null

  /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 239 SmallVector<SDValue, 4> Results;
240 Results.push_back(RepMovs);
247 Results.push_back(DAG.getMemcpy(Chain, dl,
259 &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/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.
240 /// Determines if the results are overloaded
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 255 /// with the code-completion results.
259 /// the code-completion results.
262 /// \brief Allocator used to store globally cached code-completion results.
266 /// \brief Allocator used to store code completion results.
312 fprintf(stderr, "+++ %d completion results\n", CodeCompletionResultObjects);
317 delete [] Results;
328 fprintf(stderr, "--- %d completion results\n", CodeCompletionResultObjects);
490 //Only Clang results should be accepted, so we'll set all of the other
512 CaptureCompletionResults(AllocatedCXCodeCompleteResults &Results,
515 AllocatedResults(Results), CCTUInfo(Results.CodeCompletionAllocator)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 227 // The following calls must take care of *all* of the node's results,
228 // not just the illegal result they were passed (this includes results
229 // with a legal type). Results can be remapped using ReplaceValueWith,
278 // The following calls must either replace all of the node's results
329 "Node morphing changed the number of results!");
706 "Node morphing changed the number of results!");
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 82 MarkGlueResults, // Indicate which interior nodes have glue results.
83 CompleteMatch, // Finish a match and update the results.
84 MorphNodeTo // Build a node, finish a match and update results.
899 /// pushing the chain and glue results.
    [all...]
CodeGenDAGPatterns.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 347 // Clear out the previous results.
352 SmallVector<Result, 8> Results;
355 getCodeCompletionTUInfo(), Results);
360 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
361 switch (Results[I].Kind) {
365 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
368 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
371 CachedResult.Priority = Results[I].Priority;
372 CachedResult.Kind = Results[I].CursorKind;
373 CachedResult.Availability = Results[I].Availability
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 41 /// \brief A container of code-completion results.
53 /// \brief The actual results we have found.
54 std::vector<Result> Results;
89 // 1 -> 2 elements: create the vector of results and push in the
117 /// results.
120 /// \brief The semantic analysis object for which results are being
130 /// results that are not desirable.
158 /// \brief The completion context in which we are gathering results.
200 /// results.
206 /// \brief Set the filter used for code-completion results
    [all...]
  /external/clang/include/clang-c/
Index.h 578 * results.
    [all...]

Completed in 305 milliseconds