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

1 2

  /external/chromium_org/chrome/common/safe_browsing/
zip_analyzer.h 16 struct Results {
21 Results() : success(false), has_executable(false), has_archive(false) {}
24 void AnalyzeZipFile(base::PlatformFile zip_file, Results* results);
  /external/chromium_org/chrome/browser/ui/app_list/search/
search_provider.h 20 typedef ScopedVector<ChromeSearchResult> Results;
29 // Invoked to stop the current query and no more results changes.
36 const Results& results() const { return results_; } function in class:app_list::SearchProvider
39 // Interface for the derived class to generate search results.
47 Results results_;
  /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/chromium_org/chrome/browser/captive_portal/
captive_portal_detector.h 23 // Possible results of an attempt to detect a captive portal.
38 struct Results {
39 Results()
49 typedef base::Callback<void(const Results& results)> DetectionCallback;
78 // test URL, and fills a Results struct based on its result. If the
80 // of |results| is populated accordingly. Otherwise, it's set to
83 Results* results) const;
captive_portal_service.h 25 // a CaptivePortalService::Results as the details.
41 struct Results {
115 const CaptivePortalDetector::Results& results);
  /external/chromium_org/chrome/common/extensions/
update_manifest.h 64 struct Results {
65 Results();
66 ~Results();
77 // indicating success or failure. On success, the results are available by
78 // calling results(). The details for any failures are available by calling
82 const Results& results() { return results_; } function in class:UpdateManifest
86 Results results_;
update_manifest.cc 28 UpdateManifest::Results::Results() : daystart_elapsed_seconds(kNoDaystart) {}
30 UpdateManifest::Results::~Results() {}
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 249 SmallVector<SDValue, 4> Results;
250 Results.push_back(RepMovs);
257 Results.push_back(DAG.getMemcpy(Chain, dl,
269 &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/chromium_org/chrome/browser/autocomplete/
search_provider.h 55 // ID used in creating URLFetcher for default provider's suggest results.
58 // ID used in creating URLFetcher for keyword provider's suggest results.
185 // Non-inlineable results are stale.
278 struct Results {
279 Results();
280 ~Results();
286 // Returns whether any of the results (including verbatim) have
302 DISALLOW_COPY_AND_ASSIGN(Results);
307 // Removes non-inlineable results until either the top result can inline
348 // Clears the current results
    [all...]
search_provider.cc 203 // SearchProvider::Results ----------------------------------------------------
205 SearchProvider::Results::Results() : verbatim_relevance(-1) {
208 SearchProvider::Results::~Results() {
211 void SearchProvider::Results::Clear() {
217 bool SearchProvider::Results::HasServerProvidedScores() const {
221 // Right now either all results of one type will be server-scored or they will
321 // suggestion, non-Search results will suddenly appear.
348 // Search results don't look like URLs
881 Results* results = is_keyword ? &keyword_results_ : &default_results_; local
    [all...]
  /external/chromium_org/chrome/browser/net/
predictor.h 59 typedef std::map<GURL, UrlInfo> Results;
83 // Note that when scanning search results lists, we might actually get 10 at
147 // In some circumstances, for privacy reasons, all results should be
392 Results::const_iterator it(results_.find(url));
477 Results results_;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 189 SmallVector<SDValue, 8> Results;
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 348 SmallVector<SDValue, 8> Results;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 189 SmallVector<SDValue, 8> Results;
  /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!");
710 "Node morphing changed the number of results!");
    [all...]
  /external/chromium_org/chrome/test/chromedriver/test/
run_py_tests.py 643 class Results(object):
648 results = Results()
649 result_url_pairs = zip([results.new, results.ref],
665 PrintResult('new', results.new[1:])
666 PrintResult('ref', results.ref[1:])
  /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.
249 /// Determines if the results are overloaded
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 274 /// with the code-completion results.
278 /// the code-completion results.
281 /// \brief Allocator used to store globally cached code-completion results.
285 /// \brief Allocator used to store code completion results.
336 fprintf(stderr, "+++ %d completion results\n", CodeCompletionResultObjects);
341 delete [] Results;
350 fprintf(stderr, "--- %d completion results\n", CodeCompletionResultObjects);
512 //Only Clang results should be accepted, so we'll set all of the other
535 AllocatedCXCodeCompleteResults &Results,
538 AllocatedResults(Results), CCTUInfo(Results.CodeCompletionAllocator)
    [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.
897 /// pushing the chain and glue results.
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 358 // Clear out the previous results.
363 SmallVector<Result, 8> Results;
367 CCTUInfo, Results);
372 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
373 switch (Results[I].Kind) {
377 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
381 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
384 CachedResult.Priority = Results[I].Priority;
385 CachedResult.Kind = Results[I].CursorKind;
386 CachedResult.Availability = Results[I].Availability
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 84 // Use i32 for setcc operations results (slt, sgt, ...).
196 /// ReplaceNodeResults - Replace the results of node with an illegal result
199 SmallVectorImpl<SDValue>&Results,
206 Results.push_back(ExpandADDSUB(N, DAG));
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 489 HRESULT Results[2];
513 encoder->Results[0] = res;
526 encoder->Results[decoder->DecoderIndex] = encoder->Decode(decoder->DecoderIndex);
815 if (encoder.Results[j] != S_OK)
816 res = encoder.Results[j];

Completed in 704 milliseconds

1 2