HomeSort by relevance Sort by last modified time
    Searched defs:Results (Results 1 - 15 of 15) 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 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 244 /// with the code-completion results.
248 /// the code-completion results.
251 /// \brief Allocator used to store globally cached code-completion results.
255 /// \brief Allocator used to store code completion results.
299 fprintf(stderr, "+++ %d completion results\n", CodeCompletionResultObjects);
304 delete [] Results;
315 fprintf(stderr, "--- %d completion results\n", CodeCompletionResultObjects);
477 //Only Clang results should be accepted, so we'll set all of the other
498 CaptureCompletionResults(AllocatedCXCodeCompleteResults &Results,
501 AllocatedResults(Results), TU(TranslationUnit) {
    [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 233 // Clear out the previous results.
238 SmallVector<Result, 8> Results;
240 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator, Results);
245 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
246 switch (Results[I].Kind) {
250 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
252 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
255 CachedResult.Priority = Results[I].Priority;
256 CachedResult.Kind = Results[I].CursorKind;
257 CachedResult.Availability = Results[I].Availability
    [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...]
  /external/clang/include/clang-c/
Index.h 513 * results.
886 * code-completion results with each reparse of the source file.
888 * Caching of code-completion results is a performance optimization that
    [all...]

Completed in 1594 milliseconds