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

1 2

  /external/chromium_org/chrome/browser/chromeos/login/screens/
controller_pairing_screen.h 29 typedef pairing_chromeos::ControllerPairingController::Stage Stage;
32 bool ExpectStageIs(Stage stage) const;
41 virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
59 // Current stage of pairing process.
60 Stage current_stage_;
host_pairing_screen.h 26 typedef pairing_chromeos::HostPairingController::Stage Stage;
37 virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
57 // Current stage of pairing process.
58 Stage current_stage_;
host_pairing_screen.cc 61 void HostPairingScreen::PairingStageChanged(Stage new_stage) {
controller_pairing_screen.cc 45 bool ControllerPairingScreen::ExpectStageIs(Stage stage) const {
46 DCHECK(stage == current_stage_);
47 if (current_stage_ != stage)
48 LOG(ERROR) << "Incorrect stage. Expected: " << stage
49 << ", current stage: " << current_stage_;
50 return stage == current_stage_;
72 void ControllerPairingScreen::PairingStageChanged(Stage new_stage) {
  /external/chromium_org/components/pairing/
fake_controller_pairing_controller.h 51 // Causing an error on |STAGE_ESTABLISHING_CONNECTION| stage once.
56 void SetShouldLoseConnection(Stage stage_begin, Stage stage_end);
61 // Sets devices discovery scenario for |STAGE_DEVICES_DESCOVERY| stage.
69 virtual Stage GetCurrentStage() OVERRIDE;
87 void ChangeStage(Stage new_stage);
88 void ChangeStageLater(Stage new_stage);
94 virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
98 Stage current_stage_;
106 Stage connection_lost_begin_
    [all...]
shark_connection_listener.h 29 typedef HostPairingController::Stage Stage;
32 virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
fake_host_pairing_controller.h 39 virtual Stage GetCurrentStage() OVERRIDE;
48 void ChangeStage(Stage new_stage);
49 void ChangeStageLater(Stage new_stage);
52 virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
61 Stage current_stage_;
host_pairing_controller.h 16 enum Stage {
42 // Called when pairing has moved on from one stage to another.
43 virtual void PairingStageChanged(Stage new_stage) = 0;
62 // Returns current stage of pairing process.
63 virtual Stage GetCurrentStage() = 0;
65 // Starts pairing process. Can be called only on |STAGE_NONE| stage.
72 // |STAGE_WAITING_FOR_CODE_CONFIRMATION| stage.
75 // Returns an enrollment domain name. Can be called on stage
80 // Can be called on stage |STAGE_UPDATING|.
controller_pairing_controller.h 25 enum Stage {
47 // Called when pairing has moved on from one stage to another.
48 virtual void PairingStageChanged(Stage new_stage) = 0;
51 // This notification is made only on |STAGE_DEVICES_DISCOVERY| stage.
63 // Returns current stage of pairing process.
64 virtual Stage GetCurrentStage() = 0;
66 // Starts pairing process. Can be called only on |STAGE_NONE| stage.
70 // |STAGE_DEVICES_DISCOVERY| stage.
74 // ID. Can be called only on |STAGE_DEVICES_DISCOVERY| stage.
83 // Could be called only on |STATE_WAITING_FOR_CODE_CONFIRMATION| stage
    [all...]
shark_connection_listener.cc 25 void SharkConnectionListener::PairingStageChanged(Stage new_stage) {
fake_controller_pairing_controller.cc 70 connection_lost_begin_ = static_cast<Stage>(begin);
71 connection_lost_end_ = static_cast<Stage>(end);
111 void FakeControllerPairingController::SetShouldLoseConnection(Stage stage_begin,
112 Stage stage_end) {
155 ControllerPairingController::Stage
228 void FakeControllerPairingController::ChangeStage(Stage new_stage) {
235 void FakeControllerPairingController::ChangeStageLater(Stage new_stage) {
288 void FakeControllerPairingController::PairingStageChanged(Stage new_stage) {
289 Stage next_stage = STAGE_NONE;
fake_host_pairing_controller.cc 77 void FakeHostPairingController::ChangeStage(Stage new_stage) {
84 void FakeHostPairingController::ChangeStageLater(Stage new_stage) {
101 HostPairingController::Stage FakeHostPairingController::GetCurrentStage() {
134 void FakeHostPairingController::PairingStageChanged(Stage new_stage) {
bluetooth_controller_pairing_controller.h 36 void ChangeStage(Stage new_stage);
63 virtual Stage GetCurrentStage() OVERRIDE;
110 Stage current_stage_;
bluetooth_host_pairing_controller.h 41 void ChangeStage(Stage new_stage);
67 virtual Stage GetCurrentStage() OVERRIDE;
103 Stage current_stage_;
  /external/chromium_org/chrome/browser/chromeos/login/enrollment/
enrollment_screen.h 41 typedef pairing_chromeos::HostPairingController::Stage Stage;
70 virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation.h 39 // Each stage of the operation is generally divided into three phases: Start,
41 // for advancing to the next stage and other UI interaction. The Run phase does
73 image_writer_api::Stage GetStage();
113 void SetStage(image_writer_api::Stage stage);
204 image_writer_api::Stage stage_;
operation_manager.h 78 image_writer_api::Stage stage,
85 image_writer_api::Stage stage,
test_utils.h 45 image_writer_api::Stage stage,
52 image_writer_api::Stage stage,
operation_manager.cc 153 image_writer_api::Stage stage,
158 info.stage = stage;
184 image_writer_api::Stage stage,
192 info.stage = stage;
  /external/chromium_org/net/url_request/
url_request_test_job.h 133 // When the stage is DONE, this job will not be put on the queue.
134 enum Stage { WAITING, DATA_AVAILABLE, ALL_DATA, DONE };
139 // advancing the stage if necessary. THIS MAY DELETE THE OBJECT.
150 Stage stage_;
  /external/deqp/modules/gles31/functional/
es31fUniformLocationTests.cpp 749 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "basic", "Location specified with use, single shader stage");
777 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "array", "Array location specified with use, single shader stage");
806 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "nested_array", "Array location specified with use, single shader stage");
842 typedef UniformInfo::ShaderStage Stage;
846 const Stage layoutLoc = Stage(rng.getUint32()&0x3);
847 const Stage declareLoc = Stage((rng.getUint32()&0x3) | layoutLoc);
848 const Stage verifyLoc = Stage((rng.getUint32()&0x3) & declareLoc)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/supervised/
supervised_user_creation_controller_new.h 91 enum Stage {
92 // Just initial stage.
173 // Current stage of user creation.
174 Stage stage_;
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_message_bubble_view.h 46 // The stage of showing the developer mode extensions bubble. STAGE_START
51 enum Stage { STAGE_START, STAGE_HIGHLIGHTED, STAGE_COMPLETE };
87 // Sets the stage for highlighting extensions and then showing the bubble
126 // The current stage of showing the bubble.
127 Stage stage_;
  /external/chromium_org/chrome/browser/extensions/activity_log/
ad_injection_browsertest.cc 36 // The current stage of the test.
37 enum Stage {
179 // Handle the "Reset Begin" stage of the test.
182 // Handle the "Reset End" stage of the test.
185 // Handle the "Testing" stage of the test.
208 // The current stage of the test.
209 Stage stage_;
229 // synchronous. At the end of each stage, the test will send us a message
230 // with the stage and status, and will not advance until we reply with
253 << "In incorrect stage. Last Test: " << last_test_
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 187 LiveRangeStage Stage;
192 RegInfo() : Stage(RS_New), Cascade(0) {}
198 return ExtraRegInfo[VirtReg.reg].Stage;
201 void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) {
203 ExtraRegInfo[VirtReg.reg].Stage = Stage;
211 if (ExtraRegInfo[Reg].Stage == RS_New)
212 ExtraRegInfo[Reg].Stage = NewStage;
482 // same stage as the parent.
483 ExtraRegInfo[Old].Stage = RS_Assign
    [all...]

Completed in 395 milliseconds

1 2