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

1 2 3 4 5 6 7

  /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);
zip_analyzer.cc 14 void AnalyzeZipFile(base::PlatformFile zip_file, Results* results) {
36 results->has_archive = true;
39 results->has_executable = true;
46 results->success = true;
  /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_;
  /external/chromium_org/tools/json_schema_compiler/test/
callbacks_unittest.cc 12 ReturnsObject::Results::SomeObject some_object;
13 some_object.state = ReturnsObject::Results::SomeObject::STATE_FOO;
14 scoped_ptr<ListValue> results = ReturnsObject::Results::Create(some_object); local
20 EXPECT_TRUE(results->Equals(&expected));
24 ReturnsMultiple::Results::SomeObject some_object;
25 some_object.state = ReturnsMultiple::Results::SomeObject::STATE_FOO;
26 scoped_ptr<ListValue> results = local
27 ReturnsMultiple::Results::Create(5, some_object);
34 EXPECT_TRUE(results->Equals(&expected))
    [all...]
enums_unittest.cc 40 EXPECT_TRUE(args.Equals(ReturnsEnumAsType::Results::Create(
81 ReturnsEnum::Results::State state = ReturnsEnum::Results::STATE_FOO;
83 new base::StringValue(ReturnsEnum::Results::ToString(state)));
88 ReturnsEnum::Results::State state = ReturnsEnum::Results::STATE_FOO;
89 scoped_ptr<ListValue> results = ReturnsEnum::Results::Create(state); local
92 EXPECT_TRUE(results->Equals(&expected));
98 scoped_ptr<ListValue> results = ReturnsTwoEnums::Results::Create local
    [all...]
objects_unittest.cc 50 ReturnsObject::Results::Info info;
51 info.state = ReturnsObject::Results::Info::STATE_FOO;
52 scoped_ptr<ListValue> results = ReturnsObject::Results::Create(info); local
57 ASSERT_TRUE(results->GetDictionary(0, &result));
64 scoped_ptr<ListValue> results(OnObjectFired::Create(object));
69 ASSERT_TRUE(results->GetDictionary(0, &result));
  /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/easymock/src/org/easymock/internal/
ExpectedInvocationAndResults.java 26 Results results; field in class:ExpectedInvocationAndResults
29 Results results) {
31 this.results = results;
38 public Results getResults() {
39 return results;
44 return expectedInvocation.toString() + ": " + results.toString();
  /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_;
  /external/chromium_org/chrome/browser/safe_browsing/
sandboxed_zip_analyzer.h 28 struct Results;
33 // Callback that is invoked when the analysis results are ready.
34 typedef base::Callback<void(const zip_analyzer::Results&)> ResultCallback;
58 // with the given results. Runs on the IO thread.
59 void OnAnalyzeZipFileFinished(const zip_analyzer::Results& results);
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 42 /// \brief A container of code-completion results.
54 /// \brief The actual results we have found.
55 std::vector<Result> Results;
91 // 1 -> 2 elements: create the vector of results and push in the
119 /// results.
122 /// \brief The semantic analysis object for which results are being
132 /// results that are not desirable.
160 /// \brief The completion context in which we are gathering results.
205 /// results.
211 /// \brief Set the filter used for code-completion results
    [all...]
CodeCompleteConsumer.cpp 438 CodeCompletionResult *Results,
440 std::stable_sort(Results, Results + NumResults);
442 // Print the results.
445 switch (Results[I].Kind) {
447 OS << *Results[I].Declaration;
448 if (Results[I].Hidden)
451 = Results[I].CreateCodeCompletionString(SemaRef, getAllocator(),
463 OS << Results[I].Keyword << '\n';
467 OS << Results[I].Macro->getName()
    [all...]
  /external/chromium_org/chrome/browser/extensions/updater/
safe_manifest_parser.h 21 // Callback that is invoked when the manifest results are ready.
23 const UpdateManifest::Results*)> UpdateCallback;
43 void OnParseUpdateManifestSucceeded(const UpdateManifest::Results& results);
  /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_detector_unittest.cc 31 const CaptivePortalDetector::Results& results) {
32 results_ = results;
36 const CaptivePortalDetector::Results& captive_portal_results() const {
45 CaptivePortalDetector::Results results_;
62 void RunTest(const CaptivePortalDetector::Results& expected_results,
117 // codes in response to a variety of probe results.
119 CaptivePortalDetector::Results results; local
120 results.result = RESULT_INTERNET_CONNECTED
152 CaptivePortalDetector::Results results; local
171 CaptivePortalDetector::Results results; local
193 CaptivePortalDetector::Results results; local
202 CaptivePortalDetector::Results results; local
    [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/chromium_org/chrome/browser/extensions/api/command_line_private/
command_line_private_api.cc 34 results_ = command_line_private::HasSwitch::Results::Create(
  /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/chromium_org/chrome/browser/extensions/api/i18n/
i18n_api.cc 58 results_ = GetAcceptLanguages::Results::Create(languages);
  /external/chromium_org/chrome/browser/extensions/api/runtime/
runtime_api.cc 360 GetPlatformInfo::Results::PlatformInfo info;
364 info.os = GetPlatformInfo::Results::PlatformInfo::OS_MAC_;
366 info.os = GetPlatformInfo::Results::PlatformInfo::OS_WIN_;
368 info.os = GetPlatformInfo::Results::PlatformInfo::OS_ANDROID_;
370 info.os = GetPlatformInfo::Results::PlatformInfo::OS_CROS_;
372 info.os = GetPlatformInfo::Results::PlatformInfo::OS_LINUX_;
374 info.os = GetPlatformInfo::Results::PlatformInfo::OS_OPENBSD_;
382 info.arch = GetPlatformInfo::Results::PlatformInfo::ARCH_ARM;
384 info.arch = GetPlatformInfo::Results::PlatformInfo::ARCH_X86_32;
386 info.arch = GetPlatformInfo::Results::PlatformInfo::ARCH_X86_64
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 172 /// \brief Returns the results of matching \p Matcher on \p Node.
175 /// \p Matcher on \p Node and returns the collected results.
177 /// Multiple results occur when using matchers like \c forEachDescendant,
204 selectFirst(StringRef BoundTo, const SmallVectorImpl<BoundNodes> &Results) {
205 for (SmallVectorImpl<BoundNodes>::const_iterator I = Results.begin(),
206 E = Results.end();
  /external/chromium_org/chrome/browser/extensions/api/diagnostics/
diagnostics_api.cc 41 results_ = SendPacket::Results::Create(result);
  /external/chromium_org/chrome/browser/extensions/api/system_display/
system_display_api.cc 27 results_ = api::system_display::GetInfo::Results::Create(
  /external/chromium_org/chrome/common/
chrome_utility_messages.h 56 IPC_STRUCT_TRAITS_BEGIN(UpdateManifest::Results)
61 IPC_STRUCT_TRAITS_BEGIN(safe_browsing::zip_analyzer::Results)
235 UpdateManifest::Results /* updates */)
297 safe_browsing::zip_analyzer::Results)
  /external/chromium/chrome/common/
utility_messages.h 48 IPC_STRUCT_TRAITS_BEGIN(UpdateManifest::Results)
146 UpdateManifest::Results /* updates */)

Completed in 192 milliseconds

1 2 3 4 5 6 7