Searched defs:state (Results 201 - 225 of 1540) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/
H A Dexternal_protocol_handler.cc93 // preferences on the profile, not in the local state.
111 BlockState state) {
114 // preferences on the profile, not in the local state.
119 if (state == UNKNOWN) {
123 state == BLOCK ? true : false);
110 SetBlockState(const std::string& scheme, BlockState state) argument
/external/chromium/chrome/browser/history/
H A Ddownload_create_info.h22 // vector of these structs for passing us the state of all downloads at
30 int32 state,
57 int32 state; member in struct:DownloadCreateInfo
H A Ddownload_database.cc25 // state Identifies if this download is completed or not. Not used
73 "state INTEGER NOT NULL)"))
89 "total_bytes, state "
104 info.state = statement.ColumnInt(6);
110 int32 state,
115 "SET received_bytes=?, state=? WHERE id=?"));
120 statement.BindInt(1, state);
140 "UPDATE downloads SET state=? WHERE state=?"));
151 "(full_path, url, start_time, received_bytes, total_bytes, state) "
109 UpdateDownload(int64 received_bytes, int32 state, DownloadID db_handle) argument
[all...]
/external/chromium/chrome/browser/net/websocket_experiment/
H A Dwebsocket_experiment_runner.cc186 State state = next_state_; local
190 switch (state) {
207 config_.ws_config[state - STATE_RUN_WS], &task_callback_));
208 task_state_ = state;
209 if (static_cast<State>(state + 1) == NUM_STATES)
212 next_state_ = static_cast<State>(state + 1);
/external/chromium/chrome/browser/sessions/
H A Dsession_types.cc24 const std::string& state,
29 state_(state),
20 TabNavigation(int index, const GURL& virtual_url, const GURL& referrer, const string16& title, const std::string& state, PageTransition::Type transition) argument
/external/chromium/chrome/browser/sync/
H A Dbackend_migrator.cc56 if (manager_->state() != DataTypeManager::CONFIGURED) {
172 BackendMigrator::State BackendMigrator::state() const { function in class:browser_sync::BackendMigrator
/external/chromium/chrome/browser/sync/glue/
H A Dfrontend_data_type_controller.cc142 DataTypeController::State FrontendDataTypeController::state() const { function in class:browser_sync::FrontendDataTypeController
H A Dtyped_url_data_type_controller.h62 virtual State state() const;
89 void StartDone(StartResult result, State state);
90 void StartDoneImpl(StartResult result, State state);
96 void set_state(State state) { argument
98 state_ = state;
/external/chromium/chrome/browser/sync/notifier/
H A Dinvalidation_notifier.cc50 void InvalidationNotifier::SetState(const std::string& state) { argument
52 invalidation_state_ = state;
127 void InvalidationNotifier::WriteState(const std::string& state) { argument
130 FOR_EACH_OBSERVER(SyncNotifierObserver, observers_, StoreState(state));
H A Dp2p_notifier.cc57 void P2PNotifier::SetState(const std::string& state) { argument
H A Dregistration_manager.h116 // The current registration state.
117 invalidation::RegistrationState state; member in struct:sync_notifier::RegistrationManager::RegistrationStatus
/external/chromium/chrome/browser/sync/tools/
H A Dsync_listen_notifications.cc48 virtual void StoreState(const std::string& state) { argument
50 CHECK(base::Base64Encode(state, &base64_state));
51 LOG(INFO) << "Got state to store: " << base64_state;
/external/chromium/chrome/browser/ui/gtk/download/
H A Ddownload_started_animation_gtk.cc48 virtual void AnimateToState(double state);
164 void DownloadStartedAnimationGtk::AnimateToState(double state) { argument
168 if (state >= 1.0) {
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_chrome_button.cc99 // rendering AND we're in either the prelight or active state so that we
102 // Set the state of button->depressed so we paint pressed even if the
103 // actual state of the button is something else.
138 GtkStateType state) {
142 priv->paint_state = state;
164 gdouble state) {
166 if (state >= 0.0 && state <= 1.0)
167 priv->hover_state = state;
137 gtk_chrome_button_set_paint_state(GtkChromeButton* button, GtkStateType state) argument
163 gtk_chrome_button_set_hover_state(GtkChromeButton* button, gdouble state) argument
/external/chromium/chrome/browser/ui/views/download/
H A Ddownload_started_animation_win.cc50 virtual void AnimateToState(double state);
151 void DownloadStartedAnimationWin::AnimateToState(double state) { argument
152 if (state >= 1.0) {
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_root_view.cc112 void BrowserRootView::GetAccessibleState(ui::AccessibleViewState* state) { argument
113 RootView::GetAccessibleState(state);
114 state->name = l10n_util::GetStringUTF16(IDS_PRODUCT_NAME);
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dnative_tab_contents_container_gtk.cc135 ui::AccessibleViewState* state) {
136 state->role = ui::AccessibilityTypes::ROLE_GROUPING;
134 GetAccessibleState( ui::AccessibleViewState* state) argument
/external/chromium/chrome/common/net/gaia/
H A Dgoogle_service_auth_error.cc53 const GoogleServiceAuthError::State& GoogleServiceAuthError::state() const { function in class:GoogleServiceAuthError
86 value->SetString("state", state_str);
/external/chromium/net/tools/dump_cache/
H A Durl_utilities.cc75 UnescapeState state = NORMAL; local
79 switch (state) {
83 state = ESCAPE1;
92 state = ESCAPE2;
97 state = NORMAL;
106 state = NORMAL;
112 state = NORMAL;
118 if (state == ESCAPE1 || state == ESCAPE2) {
/external/chromium/net/tools/flip_server/
H A Dspdy_ssl.cc26 void InitSSL(SSLState* state, argument
38 state->ssl_method = SSLv23_method();
39 state->ssl_ctx = SSL_CTX_new(state->ssl_method);
40 if (!state->ssl_ctx) {
45 SSL_CTX_set_options(state->ssl_ctx,
47 if (SSL_CTX_use_certificate_chain_file(state->ssl_ctx,
52 if (SSL_CTX_use_PrivateKey_file(state->ssl_ctx,
58 if (!SSL_CTX_check_private_key(state->ssl_ctx)) {
63 SSL_CTX_set_next_protos_advertised_cb(state
[all...]
/external/chromium/net/websockets/
H A Dwebsocket_job.h34 // This is state of WebSocket, not SocketStream.
47 State state() const { return state_; } function in class:net::WebSocketJob
/external/chromium/third_party/libjingle/source/talk/base/
H A Dtask.cc199 std::string Task::GetStateName(int state) const {
207 switch (state) {
218 int Task::Process(int state) { argument
226 switch (state) {
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dmuc.h44 State state() const { return state_; } function in class:buzz::Muc
45 void set_state(State state) { state_ = state; } argument
H A Dvoicemailjidrequester.cc107 int VoicemailJidRequester::Process(int state) { argument
111 return talk_base::Task::Process(state);
/external/chromium/webkit/glue/
H A Dwebaccessibility.cc234 uint32 state = 0; local
236 state |= (1 << WebAccessibility::STATE_CHECKED);
239 state |= (1 << WebAccessibility::STATE_COLLAPSED);
242 state |= (1 << WebAccessibility::STATE_FOCUSABLE);
245 state |= (1 << WebAccessibility::STATE_FOCUSED);
248 state |= (1 << WebAccessibility::STATE_HASPOPUP);
251 state |= (1 << WebAccessibility::STATE_EXPANDED);
255 state |= (1 << WebAccessibility::STATE_HOTTRACKED);
258 state |= (1 << WebAccessibility::STATE_INDETERMINATE);
261 state |
[all...]

Completed in 5129 milliseconds

1234567891011>>