HomeSort by relevance Sort by last modified time
    Searched defs:Results (Results 1 - 25 of 35) 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::File zip_file, Results* results);
  /external/chromium_org/ui/app_list/
search_provider.h 21 typedef ScopedVector<SearchResult> Results;
30 // Invoked to stop the current query and no more results changes.
37 // TODO(mukai): Fix the ownership and copying of the results.
38 void ReleaseResult(std::vector<SearchResult*>* results);
40 const Results& results() const { return results_; } function in class:app_list::SearchProvider
43 // Interface for the derived class to generate search results.
51 Results results_;
  /external/chromium_org/components/captive_portal/
captive_portal_detector.h 29 struct Results {
30 Results()
41 typedef base::Callback<void(const Results& results)> DetectionCallback;
68 // test URL, and fills a Results struct based on its result. If the
70 // of |results| is populated accordingly. Otherwise, it's set to
73 Results* results) const;
  /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/component_updater/
update_response.h 101 struct Results {
102 Results();
103 ~Results();
114 // indicating success or failure. On success, the results are available by
115 // calling results(). The details for any failures are available by calling
119 const Results& results() const { return results_; } function in class:component_updater::UpdateResponse
123 Results results_;
update_response.cc 23 UpdateResponse::Results::Results() : daystart_elapsed_seconds(kNoDaystart) {}
24 UpdateResponse::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/lldb/tools/lldb-perf/lib/
Results.h 1 //===-- Results.h -----------------------------------------------*- C++ -*-===//
20 class Results
59 Write (Results &results) = 0;
148 Write (Results &results)
175 Write (Results &results)
217 Write (Results &results)
    [all...]
  /external/chromium_org/v8/tools/
run_benchmarks.py 23 "results_processor": <optional python results processor script>,
29 "results_processor": <optional python results processor script>,
117 class Results(object):
188 # A regular expression for results. If the parent graph provides a
208 self.results = []
213 self.results.append(
220 return Results([{
223 "results": self.results,
257 return reduce(lambda r, t: r + t.GetResults(), self._children, Results())
    [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 247 SmallVector<SDValue, 4> Results;
248 Results.push_back(RepMovs);
255 Results.push_back(DAG.getMemcpy(Chain, dl,
266 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Results);
  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_service.h 23 // a CaptivePortalService::Results as the details.
38 struct Results {
114 const captive_portal::CaptivePortalDetector::Results& results);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 189 SmallVector<SDValue, 8> Results;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 189 SmallVector<SDValue, 8> Results;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpDeviceIndexRunnable.java 51 static class Results {
57 public Results(
135 new Results(unifiedLookupIndex, mtpObjects, buckets))) {
  /external/chromium_org/chrome/browser/autocomplete/
base_search_provider.cc 276 // In case of zero-suggest results, do not highlight matches.
385 // In case of zero-suggest results, do not highlight matches.
432 // BaseSearchProvider::Results -------------------------------------------------
434 BaseSearchProvider::Results::Results() : verbatim_relevance(-1) {}
436 BaseSearchProvider::Results::~Results() {}
438 void BaseSearchProvider::Results::Clear() {
445 bool BaseSearchProvider::Results::HasServerProvidedScores() const {
449 // Right now either all results of one type will be server-scored or they wil
    [all...]
base_search_provider.h 43 // ID used in creating URLFetcher for default provider's suggest results.
46 // ID used in creating URLFetcher for keyword provider's suggest results.
49 // ID used in creating URLFetcher for deleting suggestion results.
139 // Non-inlineable results are stale.
307 struct Results {
308 Results();
309 ~Results();
315 // Returns whether any of the results (including verbatim) have
334 DISALLOW_COPY_AND_ASSIGN(Results);
369 // Returns whether the requirements for requesting zero suggest results
    [all...]
  /external/chromium_org/chrome/browser/net/
predictor.h 62 typedef std::map<GURL, UrlInfo> Results;
106 // Note that when scanning search results lists, we might actually get 10 at
170 // In some circumstances, for privacy reasons, all results should be
431 Results::const_iterator it(results_.find(url));
534 Results results_;
  /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,
280 // The following calls must either replace all of the node's results
331 "Node morphing changed the number of results!");
712 "Node morphing changed the number of results!");
    [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.
252 /// Determines if the results are overloaded
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 276 /// with the code-completion results.
280 /// the code-completion results.
283 /// \brief Allocator used to store globally cached code-completion results.
287 /// \brief Allocator used to store code completion results.
332 fprintf(stderr, "+++ %u completion results\n",
338 delete [] Results;
346 fprintf(stderr, "--- %u completion results\n",
508 //Only Clang results should be accepted, so we'll set all of the other
531 AllocatedCXCodeCompleteResults &Results,
534 AllocatedResults(Results), CCTUInfo(Results.CodeCompletionAllocator)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/test/
run_py_tests.py     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarFileTest.java 653 private static class Results {
658 private Results getSignedJarCerts(String jarName) throws Exception {
662 Results results = new Results(); local
677 results.certificates = certs;
678 results.signers = signers;
686 return results;
690 Results result = getSignedJarCerts(VALID_CHAIN_JAR);
701 Results result = getSignedJarCerts(INVALID_CHAIN_JAR)
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 347 // Clear out the previous results.
352 SmallVector<Result, 8> Results;
356 CCTUInfo, Results);
361 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
362 switch (Results[I].Kind) {
366 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
370 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
373 CachedResult.Priority = Results[I].Priority;
374 CachedResult.Kind = Results[I].CursorKind;
375 CachedResult.Availability = Results[I].Availability
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 88 // Use i32 for setcc operations results (slt, sgt, ...).
237 /// ReplaceNodeResults - Replace the results of node with an illegal result
240 SmallVectorImpl<SDValue>&Results,
247 Results.push_back(ExpandADDSUB(N, DAG));
    [all...]

Completed in 446 milliseconds

1 2