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

1 2 3 4 5 6

  /external/chromium_org/chrome/test/chromedriver/chrome/
status.cc 5 #include "chrome/test/chromedriver/chrome/status.h"
69 Status::Status(StatusCode code)
72 Status::Status(StatusCode code, const std::string& details)
77 Status::Status(StatusCode code, const Status& cause)
82 Status::Status(StatusCode code
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
user_event_detail.js 12 * ChromeVox events are sent with status "PENDING" and an action that maps to
16 * the status of the event to either "SUCCESS" or "FAILURE".
19 * If the status is "PENDING", ChromeVox will perform the action itself.
20 * If the status is "FAILURE", ChromeVox will speak the associated error message
22 * If the status is "SUCCESS", then ChromeVox will check to see if an associated
45 * status: (undefined|string),
50 * status: The status of the event. If the status is left at PENDING, ChromeVox
52 * the underlying web app has performed the action itself. If the status is se
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
privetv3_setup_operation.h 19 enum Status { STATUS_SUCCESS, STATUS_SETUP_ERROR, STATUS_SESSION_ERROR };
23 typedef base::Callback<void(Status status)> SetupStatusCallback;
gcd_api_flow.h 20 enum Status {
36 virtual void OnGCDAPIFlowError(Status status) = 0;
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host.h 51 typedef syncer::SyncStatus Status;
157 // Called from any thread to obtain current status information in detailed or
159 virtual Status GetDetailedStatus() = 0;
  /external/chromium_org/media/base/
audio_decoder.h 25 // Status codes for decode operations.
26 // TODO(rileya): Now that both AudioDecoder and VideoDecoder Status enums
28 enum Status {
42 typedef base::Callback<void(Status)> DecodeCB;
video_decoder.h 24 // Status codes for decode operations on VideoDecoder.
25 // TODO(rileya): Now that both AudioDecoder and VideoDecoder Status enums
27 enum Status {
41 typedef base::Callback<void(Status status)> DecodeCB;
68 // Requests a |buffer| to be decoded. The status of the decoder and decoded
demuxer_stream.h 29 // Status returned in the Read() callback.
34 // return. The second parameter MUST be NULL when this status is
43 // when this status is returned.
46 enum Status {
54 // The first parameter indicates the status of the read.
57 typedef base::Callback<void(Status,
77 // status from a Read() call. In this case the client is expected to be
  /external/libvorbis/examples/
frameview.pl 47 $toplevel->optionAdd("$Xname*Status.font",
126 $panel->optionAdd("$X2name*Status.font",
297 Status("Plotting $fileno");
588 sub Status{
611 Status("Reading... $count")if($count%117==0);
616 Status("Done Reading: $count files");
  /external/llvm/unittests/Support/
FileOutputBufferTest.cpp 106 fs::file_status Status;
107 ASSERT_NO_ERROR(fs::status(Twine(File4), Status));
108 bool IsExecutable = (Status.permissions() & fs::owner_exe);
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
status.h 5 // A Status encapsulates the result of an operation. It may indicate success,
8 // Multiple threads can invoke const methods on a Status without
10 // non-const method, all threads accessing the same Status must use
21 class Status {
23 // Create a success status.
24 Status() : state_(NULL) { }
25 ~Status() { delete[] state_; }
27 // Copy the specified status.
28 Status(const Status& s)
    [all...]
  /external/chromium_org/ash/accelerators/
key_hold_detector.cc 10 #undef Status
  /external/chromium_org/ash/shelf/
shelf_model.h 20 enum Status {
22 // A status that indicates apps are syncing/loading.
77 void SetStatus(Status status);
78 Status status() const { return status_; } function in class:ash::ShelfModel
93 Status status_;
  /external/chromium_org/base/test/launcher/
test_result.h 16 enum Status {
17 TEST_UNKNOWN, // Status not set.
29 // Returns the test status as string (e.g. for display).
42 return status == TEST_SUCCESS ||
43 status == TEST_FAILURE ||
44 status == TEST_FAILURE_ON_EXIT;
50 Status status; member in struct:base::TestResult
  /external/chromium_org/chrome/browser/ui/ash/
app_sync_ui_state.h 27 // accordingly. Its status is for UI display only. It only watches for new
34 enum Status {
54 Status status() const { return status_; } function in class:AppSyncUIState
60 void SetStatus(Status status);
62 // Checks and sets app sync status. If sync has not setup, do nothing. If sync
84 Status status_;
  /external/chromium_org/chromeos/dbus/
bluetooth_agent_service_provider.h 38 // Possible status values that may be returned to callbacks. Success
43 enum Status {
50 // be called with two arguments, the |status| of the request (success,
52 typedef base::Callback<void(Status, const std::string&)> PinCodeCallback;
55 // be called with two arguments, the |status| of the request (success,
58 typedef base::Callback<void(Status, uint32)> PasskeyCallback;
61 // or authorization, it should be called with one argument, the |status|
63 typedef base::Callback<void(Status)> ConfirmationCallback;
bluetooth_profile_service_provider.h 39 // Possible status values that may be returned to callbacks on a new
43 enum Status {
62 // it should be called with one argument, the |status| of the request
64 typedef base::Callback<void(Status)> ConfirmationCallback;
  /external/chromium_org/components/proximity_auth/
connection.h 23 enum Status {
33 // Returns true iff the connection's status is CONNECTED.
55 // Sets the connection's status to |status|. If this is different from the
56 // previous status, notifies observers of the change in status.
58 virtual void SetStatus(Status status);
60 Status status() const { return status_; function in class:proximity_auth::Connection
    [all...]
  /external/chromium_org/content/browser/power_profiler/
power_profiler_service.h 34 enum Status {
65 Status status_;
  /external/chromium_org/content/child/webcrypto/
status.h 16 // Status indicates whether an operation completed successfully, or with an
22 class CONTENT_EXPORT Status {
24 Status() : type_(TYPE_ERROR) {}
26 // Returns true if the Status represents an error (any one of them).
29 // Returns true if the Status represent success.
37 // Constructs a status representing success.
38 static Status Success();
40 // Constructs a status representing a generic operation error. It contains no
42 static Status OperationError();
44 // Constructs a status representing a generic data error. It contains n
    [all...]
  /external/chromium_org/net/url_request/
url_request_status.h 17 enum Status {
33 URLRequestStatus(Status s, int e) : status_(s), error_(e) {}
35 Status status() const { return status_; } function in class:net::URLRequestStatus
36 void set_status(Status s) { status_ = s; }
41 // Returns true if the status is success, which makes some calling code more
53 // Application level status.
54 Status status_;
  /external/chromium_org/third_party/leveldatabase/src/util/
status.cc 7 #include "leveldb/status.h"
11 const char* Status::CopyState(const char* state) {
19 Status::Status(Code code, const Slice& msg, const Slice& msg2) {
36 std::string Status::ToString() const {
  /external/chromium_org/tools/clang/blink_gc_plugin/
TracingStatus.h 24 enum Status { kUnneeded, kUnknown, kNeeded };
25 TracingStatus(Status status) : status_(status) {}
26 Status status_;
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 33 static void copyStatusToFileData(const vfs::Status &Status,
35 Data.Name = Status.getName();
36 Data.Size = Status.getSize();
37 Data.ModTime = Status.getLastModificationTime().toEpochTime();
38 Data.UniqueID = Status.getUniqueID();
39 Data.IsDirectory = Status.isDirectory();
40 Data.IsNamedPipe = Status.getType() == llvm::sys::fs::file_type::fifo_file;
42 Data.IsVFSMapped = Status.IsVFSMapped;
66 llvm::ErrorOr<vfs::Status> Status = FS.status(Path)
    [all...]
  /external/clang/test/Misc/
diagnostic-crash.cpp 29 namespace util { class Status {}; }
31 void Bar(wstring* s, util::Status* status,
32 Callback2<util::Status, wstring>* done);
37 util::Status* status = __null; local
38 Closure* cb = NewCallback(this, &xxxxxxxxxxxxxxxxx::Bar, s, status); // expected-error{{cannot initialize}}

Completed in 3052 milliseconds

1 2 3 4 5 6