self 75 base/mac/libdispatch_task_runner.cc LibDispatchTaskRunner* self = static_cast<LibDispatchTaskRunner*>(context); self 76 base/mac/libdispatch_task_runner.cc self->queue_finalized_.Signal(); self 65 base/memory/ref_counted_memory.cc RefCountedString* self = new RefCountedString; self 66 base/memory/ref_counted_memory.cc to_destroy->swap(self->data_); self 67 base/memory/ref_counted_memory.cc return self; self 54 base/strings/string_piece.cc void CopyToStringT(const BasicStringPiece<STR>& self, STR* target) { self 55 base/strings/string_piece.cc if (self.empty()) self 58 base/strings/string_piece.cc target->assign(self.data(), self.size()); self 61 base/strings/string_piece.cc void CopyToString(const StringPiece& self, std::string* target) { self 62 base/strings/string_piece.cc CopyToStringT(self, target); self 65 base/strings/string_piece.cc void CopyToString(const StringPiece16& self, string16* target) { self 66 base/strings/string_piece.cc CopyToStringT(self, target); self 70 base/strings/string_piece.cc void AppendToStringT(const BasicStringPiece<STR>& self, STR* target) { self 71 base/strings/string_piece.cc if (!self.empty()) self 72 base/strings/string_piece.cc target->append(self.data(), self.size()); self 75 base/strings/string_piece.cc void AppendToString(const StringPiece& self, std::string* target) { self 76 base/strings/string_piece.cc AppendToStringT(self, target); self 79 base/strings/string_piece.cc void AppendToString(const StringPiece16& self, string16* target) { self 80 base/strings/string_piece.cc AppendToStringT(self, target); self 84 base/strings/string_piece.cc size_t copyT(const BasicStringPiece<STR>& self, self 88 base/strings/string_piece.cc size_t ret = std::min(self.size() - pos, n); self 89 base/strings/string_piece.cc memcpy(buf, self.data() + pos, ret * sizeof(typename STR::value_type)); self 93 base/strings/string_piece.cc size_t copy(const StringPiece& self, char* buf, size_t n, size_t pos) { self 94 base/strings/string_piece.cc return copyT(self, buf, n, pos); self 97 base/strings/string_piece.cc size_t copy(const StringPiece16& self, char16* buf, size_t n, size_t pos) { self 98 base/strings/string_piece.cc return copyT(self, buf, n, pos); self 102 base/strings/string_piece.cc size_t findT(const BasicStringPiece<STR>& self, self 105 base/strings/string_piece.cc if (pos > self.size()) self 109 base/strings/string_piece.cc std::search(self.begin() + pos, self.end(), s.begin(), s.end()); self 111 base/strings/string_piece.cc static_cast<size_t>(result - self.begin()); self 112 base/strings/string_piece.cc return xpos + s.size() <= self.size() ? xpos : BasicStringPiece<STR>::npos; self 115 base/strings/string_piece.cc size_t find(const StringPiece& self, const StringPiece& s, size_t pos) { self 116 base/strings/string_piece.cc return findT(self, s, pos); self 119 base/strings/string_piece.cc size_t find(const StringPiece16& self, const StringPiece16& s, size_t pos) { self 120 base/strings/string_piece.cc return findT(self, s, pos); self 124 base/strings/string_piece.cc size_t findT(const BasicStringPiece<STR>& self, self 127 base/strings/string_piece.cc if (pos >= self.size()) self 131 base/strings/string_piece.cc std::find(self.begin() + pos, self.end(), c); self 132 base/strings/string_piece.cc return result != self.end() ? self 133 base/strings/string_piece.cc static_cast<size_t>(result - self.begin()) : BasicStringPiece<STR>::npos; self 136 base/strings/string_piece.cc size_t find(const StringPiece& self, char c, size_t pos) { self 137 base/strings/string_piece.cc return findT(self, c, pos); self 140 base/strings/string_piece.cc size_t find(const StringPiece16& self, char16 c, size_t pos) { self 141 base/strings/string_piece.cc return findT(self, c, pos); self 145 base/strings/string_piece.cc size_t rfindT(const BasicStringPiece<STR>& self, self 148 base/strings/string_piece.cc if (self.size() < s.size()) self 152 base/strings/string_piece.cc return std::min(self.size(), pos); self 155 base/strings/string_piece.cc self.begin() + std::min(self.size() - s.size(), pos) + s.size(); self 157 base/strings/string_piece.cc std::find_end(self.begin(), last, s.begin(), s.end()); self 159 base/strings/string_piece.cc static_cast<size_t>(result - self.begin()) : BasicStringPiece<STR>::npos; self 162 base/strings/string_piece.cc size_t rfind(const StringPiece& self, const StringPiece& s, size_t pos) { self 163 base/strings/string_piece.cc return rfindT(self, s, pos); self 166 base/strings/string_piece.cc size_t rfind(const StringPiece16& self, const StringPiece16& s, size_t pos) { self 167 base/strings/string_piece.cc return rfindT(self, s, pos); self 171 base/strings/string_piece.cc size_t rfindT(const BasicStringPiece<STR>& self, self 174 base/strings/string_piece.cc if (self.size() == 0) self 177 base/strings/string_piece.cc for (size_t i = std::min(pos, self.size() - 1); ; self 179 base/strings/string_piece.cc if (self.data()[i] == c) self 187 base/strings/string_piece.cc size_t rfind(const StringPiece& self, char c, size_t pos) { self 188 base/strings/string_piece.cc return rfindT(self, c, pos); self 191 base/strings/string_piece.cc size_t rfind(const StringPiece16& self, char16 c, size_t pos) { self 192 base/strings/string_piece.cc return rfindT(self, c, pos); self 196 base/strings/string_piece.cc size_t find_first_of(const StringPiece& self, self 199 base/strings/string_piece.cc if (self.size() == 0 || s.size() == 0) self 204 base/strings/string_piece.cc return find(self, s.data()[0], pos); self 208 base/strings/string_piece.cc for (size_t i = pos; i < self.size(); ++i) { self 209 base/strings/string_piece.cc if (lookup[static_cast<unsigned char>(self.data()[i])]) { self 217 base/strings/string_piece.cc size_t find_first_of(const StringPiece16& self, self 221 base/strings/string_piece.cc std::find_first_of(self.begin() + pos, self.end(), s.begin(), s.end()); self 222 base/strings/string_piece.cc if (found == self.end()) self 224 base/strings/string_piece.cc return found - self.begin(); self 228 base/strings/string_piece.cc size_t find_first_not_of(const StringPiece& self, self 231 base/strings/string_piece.cc if (self.size() == 0) self 239 base/strings/string_piece.cc return find_first_not_of(self, s.data()[0], pos); self 243 base/strings/string_piece.cc for (size_t i = pos; i < self.size(); ++i) { self 244 base/strings/string_piece.cc if (!lookup[static_cast<unsigned char>(self.data()[i])]) { self 252 base/strings/string_piece.cc BASE_EXPORT size_t find_first_not_of(const StringPiece16& self, self 255 base/strings/string_piece.cc if (self.size() == 0) self 258 base/strings/string_piece.cc for (size_t self_i = pos; self_i < self.size(); ++self_i) { self 261 base/strings/string_piece.cc if (self[self_i] == s[s_i]) { self 273 base/strings/string_piece.cc size_t find_first_not_ofT(const BasicStringPiece<STR>& self, self 276 base/strings/string_piece.cc if (self.size() == 0) self 279 base/strings/string_piece.cc for (; pos < self.size(); ++pos) { self 280 base/strings/string_piece.cc if (self.data()[pos] != c) { self 287 base/strings/string_piece.cc size_t find_first_not_of(const StringPiece& self, self 290 base/strings/string_piece.cc return find_first_not_ofT(self, c, pos); self 293 base/strings/string_piece.cc size_t find_first_not_of(const StringPiece16& self, self 296 base/strings/string_piece.cc return find_first_not_ofT(self, c, pos); self 300 base/strings/string_piece.cc size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) { self 301 base/strings/string_piece.cc if (self.size() == 0 || s.size() == 0) self 306 base/strings/string_piece.cc return rfind(self, s.data()[0], pos); self 310 base/strings/string_piece.cc for (size_t i = std::min(pos, self.size() - 1); ; --i) { self 311 base/strings/string_piece.cc if (lookup[static_cast<unsigned char>(self.data()[i])]) self 320 base/strings/string_piece.cc size_t find_last_of(const StringPiece16& self, self 323 base/strings/string_piece.cc if (self.size() == 0) self 326 base/strings/string_piece.cc for (size_t self_i = std::min(pos, self.size() - 1); ; self 329 base/strings/string_piece.cc if (self.data()[self_i] == s[s_i]) self 339 base/strings/string_piece.cc size_t find_last_not_of(const StringPiece& self, self 342 base/strings/string_piece.cc if (self.size() == 0) self 345 base/strings/string_piece.cc size_t i = std::min(pos, self.size() - 1); self 351 base/strings/string_piece.cc return find_last_not_of(self, s.data()[0], pos); self 356 base/strings/string_piece.cc if (!lookup[static_cast<unsigned char>(self.data()[i])]) self 365 base/strings/string_piece.cc size_t find_last_not_of(const StringPiece16& self, self 368 base/strings/string_piece.cc if (self.size() == 0) self 371 base/strings/string_piece.cc for (size_t self_i = std::min(pos, self.size() - 1); ; --self_i) { self 374 base/strings/string_piece.cc if (self.data()[self_i] == s[s_i]) { self 388 base/strings/string_piece.cc size_t find_last_not_ofT(const BasicStringPiece<STR>& self, self 391 base/strings/string_piece.cc if (self.size() == 0) self 394 base/strings/string_piece.cc for (size_t i = std::min(pos, self.size() - 1); ; --i) { self 395 base/strings/string_piece.cc if (self.data()[i] != c) self 403 base/strings/string_piece.cc size_t find_last_not_of(const StringPiece& self, self 406 base/strings/string_piece.cc return find_last_not_ofT(self, c, pos); self 409 base/strings/string_piece.cc size_t find_last_not_of(const StringPiece16& self, self 412 base/strings/string_piece.cc return find_last_not_ofT(self, c, pos); self 416 base/strings/string_piece.cc BasicStringPiece<STR> substrT(const BasicStringPiece<STR>& self, self 419 base/strings/string_piece.cc if (pos > self.size()) pos = self.size(); self 420 base/strings/string_piece.cc if (n > self.size() - pos) n = self.size() - pos; self 421 base/strings/string_piece.cc return BasicStringPiece<STR>(self.data() + pos, n); self 424 base/strings/string_piece.cc StringPiece substr(const StringPiece& self, self 427 base/strings/string_piece.cc return substrT(self, pos, n); self 430 base/strings/string_piece.cc StringPiece16 substr(const StringPiece16& self, self 433 base/strings/string_piece.cc return substrT(self, pos, n); self 53 base/strings/string_piece.h BASE_EXPORT void CopyToString(const StringPiece& self, std::string* target); self 54 base/strings/string_piece.h BASE_EXPORT void CopyToString(const StringPiece16& self, string16* target); self 56 base/strings/string_piece.h BASE_EXPORT void AppendToString(const StringPiece& self, std::string* target); self 57 base/strings/string_piece.h BASE_EXPORT void AppendToString(const StringPiece16& self, string16* target); self 59 base/strings/string_piece.h BASE_EXPORT size_t copy(const StringPiece& self, self 63 base/strings/string_piece.h BASE_EXPORT size_t copy(const StringPiece16& self, self 68 base/strings/string_piece.h BASE_EXPORT size_t find(const StringPiece& self, self 71 base/strings/string_piece.h BASE_EXPORT size_t find(const StringPiece16& self, self 74 base/strings/string_piece.h BASE_EXPORT size_t find(const StringPiece& self, self 77 base/strings/string_piece.h BASE_EXPORT size_t find(const StringPiece16& self, self 81 base/strings/string_piece.h BASE_EXPORT size_t rfind(const StringPiece& self, self 84 base/strings/string_piece.h BASE_EXPORT size_t rfind(const StringPiece16& self, self 87 base/strings/string_piece.h BASE_EXPORT size_t rfind(const StringPiece& self, self 90 base/strings/string_piece.h BASE_EXPORT size_t rfind(const StringPiece16& self, self 94 base/strings/string_piece.h BASE_EXPORT size_t find_first_of(const StringPiece& self, self 97 base/strings/string_piece.h BASE_EXPORT size_t find_first_of(const StringPiece16& self, self 101 base/strings/string_piece.h BASE_EXPORT size_t find_first_not_of(const StringPiece& self, self 104 base/strings/string_piece.h BASE_EXPORT size_t find_first_not_of(const StringPiece16& self, self 107 base/strings/string_piece.h BASE_EXPORT size_t find_first_not_of(const StringPiece& self, self 110 base/strings/string_piece.h BASE_EXPORT size_t find_first_not_of(const StringPiece16& self, self 114 base/strings/string_piece.h BASE_EXPORT size_t find_last_of(const StringPiece& self, self 117 base/strings/string_piece.h BASE_EXPORT size_t find_last_of(const StringPiece16& self, self 120 base/strings/string_piece.h BASE_EXPORT size_t find_last_of(const StringPiece& self, self 123 base/strings/string_piece.h BASE_EXPORT size_t find_last_of(const StringPiece16& self, self 127 base/strings/string_piece.h BASE_EXPORT size_t find_last_not_of(const StringPiece& self, self 130 base/strings/string_piece.h BASE_EXPORT size_t find_last_not_of(const StringPiece16& self, self 133 base/strings/string_piece.h BASE_EXPORT size_t find_last_not_of(const StringPiece16& self, self 136 base/strings/string_piece.h BASE_EXPORT size_t find_last_not_of(const StringPiece& self, self 140 base/strings/string_piece.h BASE_EXPORT StringPiece substr(const StringPiece& self, self 143 base/strings/string_piece.h BASE_EXPORT StringPiece16 substr(const StringPiece16& self, self 123 base/win/message_window.cc MessageWindow* self = reinterpret_cast<MessageWindow*>( self 130 base/win/message_window.cc self = reinterpret_cast<MessageWindow*>(cs->lpCreateParams); self 134 base/win/message_window.cc self->window_ = hwnd; self 139 base/win/message_window.cc hwnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(self)); self 155 base/win/message_window.cc if (self) { self 157 base/win/message_window.cc if (self->message_callback_.Run(message, wparam, lparam, &message_result)) self 117 cc/layers/delegated_frame_resource_collection.cc base::WeakPtr<DelegatedFrameResourceCollection> self, self 123 cc/layers/delegated_frame_resource_collection.cc &DelegatedFrameResourceCollection::UnrefResources, self, returned)); self 547 chrome/browser/chromeos/chrome_browser_main_chromeos.cc static void Callback(const scoped_ptr<GuestLanguageSetCallbackData>& self, self 557 chrome/browser/chromeos/chrome_browser_main_chromeos.cc const scoped_ptr<GuestLanguageSetCallbackData>& self, self 576 chrome/browser/chromeos/chrome_browser_main_chromeos.cc PrefService* user_prefs = self->profile->GetPrefs(); self 416 chrome/browser/chromeos/customization_document.cc base::WeakPtr<ServicesCustomizationDocument> self, self 429 chrome/browser/chromeos/customization_document.cc self, self 213 chrome/browser/chromeos/customization_document.h base::WeakPtr<ServicesCustomizationDocument> self, self 233 chrome/browser/chromeos/login/login_display_host_impl.cc scoped_ptr<ShowLoginWizardSwitchLanguageCallbackData> self, self 241 chrome/browser/chromeos/login/login_display_host_impl.cc self->first_screen_name, self->startup_manifest, self->display_host); self 47 chrome/browser/chromeos/login/login_location_monitor.cc LoginLocationMonitor* self = GetInstance(); self 49 chrome/browser/chromeos/login/login_location_monitor.cc self->started_ = base::Time::Now(); self 50 chrome/browser/chromeos/login/login_location_monitor.cc self->request_timeout_.Start( self 54 chrome/browser/chromeos/login/login_location_monitor.cc self->on_location_update_)); self 59 chrome/browser/chromeos/login/login_location_monitor.cc base::Bind(&DoInstallLocationCallback, self->on_location_update_)); self 66 chrome/browser/chromeos/login/login_location_monitor.cc LoginLocationMonitor* self = GetInstance(); self 67 chrome/browser/chromeos/login/login_location_monitor.cc self->request_timeout_.Stop(); self 71 chrome/browser/chromeos/login/login_location_monitor.cc base::Bind(&DoRemoveLocationCallback, self->on_location_update_)); self 124 chrome/browser/chromeos/login/login_location_monitor.cc LoginLocationMonitor* self = GetInstance(); self 126 chrome/browser/chromeos/login/login_location_monitor.cc if (!self->request_timeout_.IsRunning()) { self 138 chrome/browser/chromeos/login/login_location_monitor.cc const base::TimeDelta elapsed = base::Time::Now() - self->started_; self 953 chrome/browser/chromeos/login/wizard_controller.cc WizardController* self = default_controller(); self 955 chrome/browser/chromeos/login/wizard_controller.cc if (self == NULL) { self 964 chrome/browser/chromeos/login/wizard_controller.cc self->GetTimezoneProvider()->RequestTimezone( self 969 chrome/browser/chromeos/login/wizard_controller.cc base::Unretained(self))); self 100 chrome/browser/chromeos/login/wizard_controller_browsertest.cc void OnLocaleSwitched(SwitchLanguageTestData* self, self 104 chrome/browser/chromeos/login/wizard_controller_browsertest.cc self->requested_locale = locale; self 105 chrome/browser/chromeos/login/wizard_controller_browsertest.cc self->loaded_locale = loaded_locale; self 106 chrome/browser/chromeos/login/wizard_controller_browsertest.cc self->success = success; self 107 chrome/browser/chromeos/login/wizard_controller_browsertest.cc self->done = true; self 71 chrome/browser/extensions/api/desktop_capture/desktop_capture_api.cc scoped_refptr<DesktopCaptureChooseDesktopMediaFunction> self(this); self 92 chrome/browser/extensions/api/storage/managed_value_store_cache.cc base::WeakPtr<ExtensionTracker> self); self 195 chrome/browser/extensions/api/storage/managed_value_store_cache.cc base::WeakPtr<ExtensionTracker> self) { self 218 chrome/browser/extensions/api/storage/managed_value_store_cache.cc base::Bind(&ExtensionTracker::Register, self, self 131 chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc base::Bind(&self::DidOpenFileSystem, this))); self 1070 chrome/browser/metrics/metrics_service.cc base::WeakPtr<MetricsService> self, self 1082 chrome/browser/metrics/metrics_service.cc self, hardware_class)); self 1117 chrome/browser/metrics/metrics_service.cc base::WeakPtr<MetricsService> self, self 1139 chrome/browser/metrics/metrics_service.cc self, google_update_metrics)); self 330 chrome/browser/metrics/metrics_service.h static void InitTaskGetHardwareClass(base::WeakPtr<MetricsService> self, self 344 chrome/browser/metrics/metrics_service.h static void InitTaskGetGoogleUpdateData(base::WeakPtr<MetricsService> self, self 93 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); self 119 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); self 142 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); self 165 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); self 216 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); self 240 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidWrite, weak_factory_.GetWeakPtr(), self 261 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); self 311 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); self 26 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc .WillByDefault(Invoke(this, &self::AddServiceObserverStub)); self 28 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc .WillByDefault(Invoke(this, &self::AddFileStatusObserverStub)); self 30 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc .WillByDefault(Invoke(this, &self::RegisterOriginStub)); self 33 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc Invoke(this, &self::DeleteOriginDirectoryStub)); self 35 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc .WillByDefault(Invoke(this, &self::ProcessRemoteChangeStub)); self 41 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc .WillByDefault(Invoke(this, &self::GetCurrentStateStub)); self 44 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc Invoke(this, &self::SetDefaultConflictResolutionPolicyStub)); self 46 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc .WillByDefault(Invoke(this, &self::SetConflictResolutionPolicyStub)); self 49 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc Invoke(this, &self::GetDefaultConflictResolutionPolicyStub)); self 51 chrome/browser/sync_file_system/mock_remote_file_sync_service.cc .WillByDefault(Invoke(this, &self::GetConflictResolutionPolicyStub)); self 84 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void InitStyles(GtkChromeCookieView *self) { self 85 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkStyle* label_style = gtk_widget_get_style(self->first_label_); self 86 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkStyle* dialog_style = gtk_widget_get_style(GTK_WIDGET(self)); self 89 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->cookie_name_entry_, label_style, dialog_style); self 90 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->cookie_content_entry_, label_style, self 92 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->cookie_domain_entry_, label_style, dialog_style); self 93 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->cookie_path_entry_, label_style, dialog_style); self 94 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->cookie_send_for_entry_, label_style, self 96 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->cookie_created_entry_, label_style, self 98 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (self->cookie_expires_entry_) { self 99 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->cookie_expires_entry_, label_style, self 104 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_name_entry_, label_style, dialog_style); self 105 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_description_entry_, label_style, self 107 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_size_entry_, label_style, dialog_style); self 108 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_last_modified_entry_, label_style, self 112 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->local_storage_origin_entry_, label_style, self 114 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->local_storage_size_entry_, label_style, self 116 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->local_storage_last_modified_entry_, label_style, self 120 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->appcache_manifest_entry_, label_style, self 122 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->appcache_size_entry_, label_style, dialog_style); self 123 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->appcache_created_entry_, label_style, self 125 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->appcache_last_accessed_entry_, label_style, self 129 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->local_storage_item_origin_entry_, label_style, self 131 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->local_storage_item_key_entry_, label_style, self 133 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->local_storage_item_value_entry_, label_style, self 137 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_accessed_origin_entry_, label_style, self 139 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_accessed_name_entry_, label_style, self 141 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_accessed_description_entry_, self 143 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->database_accessed_size_entry_, label_style, self 147 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc InitBrowserDetailStyle(self->appcache_created_manifest_entry_, label_style, self 151 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetCookieDetailsSensitivity(GtkChromeCookieView *self, self 153 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_name_entry_, enabled); self 154 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_content_entry_, enabled); self 155 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_domain_entry_, enabled); self 156 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_path_entry_, enabled); self 157 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_send_for_entry_, enabled); self 158 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_created_entry_, enabled); self 159 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (self->cookie_expires_entry_) self 160 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_expires_entry_, enabled); self 162 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->cookie_expires_combobox_, enabled); self 165 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetDatabaseDetailsSensitivity(GtkChromeCookieView *self, self 167 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_name_entry_, enabled); self 168 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_description_entry_, enabled); self 169 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_size_entry_, enabled); self 170 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_last_modified_entry_, enabled); self 173 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetLocalStorageDetailsSensitivity(GtkChromeCookieView *self, self 175 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->local_storage_origin_entry_, enabled); self 176 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->local_storage_size_entry_, enabled); self 177 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->local_storage_last_modified_entry_, enabled); self 180 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetAppCacheDetailsSensitivity(GtkChromeCookieView *self, self 182 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->appcache_manifest_entry_, enabled); self 183 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->appcache_size_entry_, enabled); self 184 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->appcache_created_entry_, enabled); self 185 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->appcache_last_accessed_entry_, enabled); self 188 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetIndexedDBDetailsSensitivity(GtkChromeCookieView *self, self 190 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->indexed_db_origin_entry_, enabled); self 191 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->indexed_db_size_entry_, enabled); self 192 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->indexed_db_last_modified_entry_, enabled); self 195 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetLocalStorageItemSensitivity(GtkChromeCookieView* self, self 197 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->local_storage_item_origin_entry_, enabled); self 198 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->local_storage_item_key_entry_, enabled); self 199 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->local_storage_item_value_entry_, enabled); self 202 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetDatabaseAccessedSensitivity(GtkChromeCookieView* self, self 204 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_accessed_origin_entry_, enabled); self 205 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_accessed_name_entry_, enabled); self 206 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_accessed_description_entry_, enabled); self 207 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->database_accessed_size_entry_, enabled); self 210 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void SetAppCacheCreatedSensitivity(GtkChromeCookieView* self, self 212 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_sensitive(self->appcache_created_manifest_entry_, enabled); self 215 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void ClearCookieDetails(GtkChromeCookieView *self) { self 218 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_name_entry_), self 220 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_content_entry_), self 222 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_domain_entry_), self 224 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_path_entry_), self 226 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_created_entry_), self 228 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (self->cookie_expires_entry_) { self 229 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_expires_entry_), self 232 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkListStore* store = self->cookie_expires_combobox_store_; self 239 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_combo_box_set_active(GTK_COMBO_BOX(self->cookie_expires_combobox_), self 242 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_send_for_entry_), self 244 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetCookieDetailsSensitivity(self, FALSE); self 247 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void UpdateVisibleDetailedInfo(GtkChromeCookieView *self, GtkWidget* table) { self 248 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetCookieDetailsSensitivity(self, table == self->cookie_details_table_); self 249 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetDatabaseDetailsSensitivity(self, table == self->database_details_table_); self 250 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetLocalStorageDetailsSensitivity(self, self 251 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc table == self->local_storage_details_table_); self 252 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetAppCacheDetailsSensitivity(self, table == self->appcache_details_table_); self 253 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetIndexedDBDetailsSensitivity(self, self 254 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc table == self->indexed_db_details_table_); self 255 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetLocalStorageItemSensitivity(self, self 256 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc table == self->local_storage_item_table_); self 257 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetDatabaseAccessedSensitivity(self, self 258 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc table == self->database_accessed_table_); self 259 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetAppCacheCreatedSensitivity(self, self 260 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc table == self->appcache_created_table_); self 263 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_show(self->table_box_); self 266 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->cookie_details_table_) self 267 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->cookie_details_table_); self 268 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->database_details_table_) self 269 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->database_details_table_); self 270 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->local_storage_details_table_) self 271 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->local_storage_details_table_); self 272 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->appcache_details_table_) self 273 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->appcache_details_table_); self 274 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->indexed_db_details_table_) self 275 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->indexed_db_details_table_); self 276 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->local_storage_item_table_) self 277 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->local_storage_item_table_); self 278 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->database_accessed_table_) self 279 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->database_accessed_table_); self 280 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (table != self->appcache_created_table_) self 281 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_hide(self->appcache_created_table_); self 291 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc static void gtk_chrome_cookie_view_init(GtkChromeCookieView *self) { self 294 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void BuildWidgets(GtkChromeCookieView *self, gboolean editable_expiration) { self 295 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->table_box_ = gtk_vbox_new(FALSE, 0); self 296 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_widget_set_no_show_all(self->table_box_, TRUE); self 299 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_ = gtk_table_new(7, 2, FALSE); self 300 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 301 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_); self 302 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->cookie_details_table_), 0, self 306 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->first_label_ = InitDetailRow(row++, IDS_COOKIES_COOKIE_NAME_LABEL, self 307 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, &self->cookie_name_entry_); self 309 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, &self->cookie_content_entry_); self 311 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, &self->cookie_domain_entry_); self 313 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, &self->cookie_path_entry_); self 315 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, &self->cookie_send_for_entry_); self 317 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, &self->cookie_created_entry_); self 320 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, self 321 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->cookie_expires_combobox_, self 322 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->cookie_expires_combobox_store_); self 325 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_details_table_, &self->cookie_expires_entry_); self 329 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_details_table_ = gtk_table_new(4, 2, FALSE); self 330 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 331 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_details_table_); self 332 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->database_details_table_), 0, self 336 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_details_table_, &self->database_name_entry_); self 338 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_details_table_, self 339 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->database_description_entry_); self 341 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_details_table_, &self->database_size_entry_); self 343 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_details_table_, self 344 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->database_last_modified_entry_); self 347 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_details_table_ = gtk_table_new(3, 2, FALSE); self 348 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 349 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_details_table_); self 350 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->local_storage_details_table_), 0, self 355 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_details_table_, self 356 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->local_storage_origin_entry_); self 358 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_details_table_, self 359 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->local_storage_size_entry_); self 361 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_details_table_, self 362 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->local_storage_last_modified_entry_); self 365 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_details_table_ = gtk_table_new(4, 2, FALSE); self 366 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 367 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_details_table_); self 368 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->appcache_details_table_), 0, self 373 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_details_table_, self 374 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->appcache_manifest_entry_); self 376 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_details_table_, &self->appcache_size_entry_); self 378 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_details_table_, &self->appcache_created_entry_); self 380 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_details_table_, self 381 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->appcache_last_accessed_entry_); self 384 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->indexed_db_details_table_ = gtk_table_new(4, 2, FALSE); self 385 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 386 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->indexed_db_details_table_); self 387 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->indexed_db_details_table_), 0, self 392 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->indexed_db_details_table_, self 393 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->indexed_db_origin_entry_); self 395 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->indexed_db_details_table_, &self->indexed_db_size_entry_); self 397 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->indexed_db_details_table_, self 398 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->indexed_db_last_modified_entry_); self 401 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_item_table_ = gtk_table_new(3, 2, FALSE); self 402 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 403 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_item_table_); self 404 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->local_storage_item_table_), 0, self 409 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_item_table_, self 410 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->local_storage_item_origin_entry_); self 412 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_item_table_, self 413 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->local_storage_item_key_entry_); self 415 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->local_storage_item_table_, self 416 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->local_storage_item_value_entry_); self 419 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_accessed_table_ = gtk_table_new(2, 2, FALSE); self 420 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 421 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_accessed_table_); self 422 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->local_storage_item_table_), 0, self 427 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_accessed_table_, self 428 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->database_accessed_origin_entry_); self 430 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_accessed_table_, self 431 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->database_accessed_name_entry_); self 433 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_accessed_table_, self 434 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->database_accessed_description_entry_); self 436 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->database_accessed_table_, self 437 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->database_accessed_size_entry_); self 440 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_created_table_ = gtk_table_new(1, 2, FALSE); self 441 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self->table_box_), self 442 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_created_table_); self 443 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_table_set_col_spacing(GTK_TABLE(self->appcache_created_table_), 0, self 447 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->appcache_created_table_, self 448 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc &self->appcache_created_manifest_entry_); self 450 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_frame_set_shadow_type(GTK_FRAME(self), GTK_SHADOW_ETCHED_IN); self 451 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_container_add(GTK_CONTAINER(self), self->table_box_); self 462 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc void gtk_chrome_cookie_view_clear(GtkChromeCookieView* self) { self 463 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->cookie_details_table_); self 464 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc ClearCookieDetails(self); self 469 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 472 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->cookie_details_table_); self 474 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_name_entry_), self 476 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_content_entry_), self 478 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_domain_entry_), self 480 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_path_entry_), self 482 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_created_entry_), self 490 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (self->cookie_expires_entry_) { self 491 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->cookie_expires_entry_), self 494 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkListStore* store = self->cookie_expires_combobox_store_; self 509 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_combo_box_set_active(GTK_COMBO_BOX(self->cookie_expires_combobox_), self 514 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GTK_ENTRY(self->cookie_send_for_entry_), self 518 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetCookieDetailsSensitivity(self, TRUE); self 522 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 529 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self, self 536 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 538 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->database_details_table_); self 541 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GTK_ENTRY(self->database_name_entry_), self 546 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->database_description_entry_), self 548 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->database_size_entry_), self 550 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->database_last_modified_entry_), self 553 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetDatabaseDetailsSensitivity(self, TRUE); self 558 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 561 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->local_storage_details_table_); self 563 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->local_storage_origin_entry_), self 565 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->local_storage_size_entry_), self 568 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->local_storage_last_modified_entry_), self 571 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetLocalStorageDetailsSensitivity(self, TRUE); self 576 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 578 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->appcache_details_table_); self 580 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->appcache_manifest_entry_), self 582 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->appcache_size_entry_), self 584 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->appcache_created_entry_), self 587 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->appcache_last_accessed_entry_), self 590 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetAppCacheDetailsSensitivity(self, TRUE); self 595 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 597 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->indexed_db_details_table_); self 599 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->indexed_db_origin_entry_), self 601 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->indexed_db_size_entry_), self 604 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->indexed_db_last_modified_entry_), self 607 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetLocalStorageDetailsSensitivity(self, TRUE); self 611 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 615 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->local_storage_item_table_); self 617 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->local_storage_item_origin_entry_), self 619 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->local_storage_item_key_entry_), self 621 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->local_storage_item_value_entry_), self 623 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetLocalStorageItemSensitivity(self, TRUE); self 627 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 632 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->database_accessed_table_); self 634 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->database_accessed_origin_entry_), self 636 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->database_accessed_name_entry_), self 638 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->database_accessed_description_entry_), self 640 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->database_accessed_size_entry_), self 642 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetDatabaseAccessedSensitivity(self, TRUE); self 646 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkChromeCookieView* self, self 648 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc UpdateVisibleDetailedInfo(self, self->appcache_created_table_); self 649 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc gtk_entry_set_text(GTK_ENTRY(self->appcache_created_manifest_entry_), self 651 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc SetAppCacheCreatedSensitivity(self, TRUE); self 654 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc bool gtk_chrome_cookie_view_session_expires(GtkChromeCookieView* self) { self 655 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc if (self->cookie_expires_entry_) self 658 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc GtkListStore* store = self->cookie_expires_combobox_store_; self 666 chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc self->cookie_expires_combobox_)); self 182 chrome/browser/ui/gtk/gtk_chrome_cookie_view.h GtkChromeCookieView* self, self 189 chrome/browser/ui/gtk/gtk_chrome_cookie_view.h GtkChromeCookieView* self, self 194 chrome/browser/ui/gtk/gtk_chrome_cookie_view.h bool gtk_chrome_cookie_view_session_expires(GtkChromeCookieView* self); self 19 chrome/browser/ui/gtk/unity_service.cc (UnityInspector* self); self 24 chrome/browser/ui/gtk/unity_service.cc typedef void (*unity_launcher_entry_set_count_func)(UnityLauncherEntry* self, self 27 chrome/browser/ui/gtk/unity_service.cc (UnityLauncherEntry* self, gboolean value); self 28 chrome/browser/ui/gtk/unity_service.cc typedef void (*unity_launcher_entry_set_progress_func)(UnityLauncherEntry* self, self 31 chrome/browser/ui/gtk/unity_service.cc (UnityLauncherEntry* self, gboolean value); self 47 chrome/browser/ui/libgtk2ui/app_indicator_icon.cc typedef void (*app_indicator_set_status_func)(AppIndicator* self, self 51 chrome/browser/ui/libgtk2ui/app_indicator_icon.cc AppIndicator* self, self 55 chrome/browser/ui/libgtk2ui/app_indicator_icon.cc typedef void (*app_indicator_set_menu_func)(AppIndicator* self, GtkMenu* menu); self 57 chrome/browser/ui/libgtk2ui/app_indicator_icon.cc typedef void (*app_indicator_set_icon_full_func)(AppIndicator* self, self 62 chrome/browser/ui/libgtk2ui/app_indicator_icon.cc AppIndicator* self, self 134 chrome/browser/ui/libgtk2ui/gtk2_key_bindings_handler.cc void Gtk2KeyBindingsHandler::HandlerInit(Handler *self) { self 135 chrome/browser/ui/libgtk2ui/gtk2_key_bindings_handler.cc self->owner = NULL; self 83 chrome/browser/ui/libgtk2ui/gtk2_key_bindings_handler.h static void HandlerInit(Handler *self); self 22 chrome/browser/ui/libgtk2ui/unity_service.cc (UnityInspector* self); self 27 chrome/browser/ui/libgtk2ui/unity_service.cc typedef void (*unity_launcher_entry_set_count_func)(UnityLauncherEntry* self, self 30 chrome/browser/ui/libgtk2ui/unity_service.cc (UnityLauncherEntry* self, gboolean value); self 31 chrome/browser/ui/libgtk2ui/unity_service.cc typedef void (*unity_launcher_entry_set_progress_func)(UnityLauncherEntry* self, self 34 chrome/browser/ui/libgtk2ui/unity_service.cc (UnityLauncherEntry* self, gboolean value); self 71 chrome/browser/ui/views/frame/global_menu_bar_x11.cc typedef void (*dbusmenu_server_set_root_func)(DbusmenuServer* self, self 248 chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc NetworkScreenHandler* const self = context->handler_.get(); self 249 chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc self->ReloadLocalizedContent(); self 52 chrome/common/extensions/docs/examples/apps/hello-php/index.php self::CONSUMER_KEY, self::CONSUMER_SECRET, NULL); self 53 chrome/common/extensions/docs/examples/apps/hello-php/index.php $this->token = new OAuthToken(self::TOKEN, self::TOKEN_SECRET); self 104 chrome/common/extensions/docs/examples/apps/hello-php/index.php $url = self::LICENSE_SERVER_HOST . '/chromewebstore/v1/licenses/' . self 105 chrome/common/extensions/docs/examples/apps/hello-php/index.php self::APP_ID . '/' . urlencode($userId); self 315 chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/openid.php if (!isset(self::$ax_to_sreg[$required])) continue; self 316 chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/openid.php $params['openid.sreg.required'][] = self::$ax_to_sreg[$required]; self 324 chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/openid.php if (!isset(self::$ax_to_sreg[$optional])) continue; self 325 chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/openid.php $params['openid.sreg.optional'][] = self::$ax_to_sreg[$optional]; self 528 chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/openid.php $sreg_to_ax = array_flip(self::$ax_to_sreg); self 271 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php file_get_contents(self::$POST_INPUT) self 57 chrome/test/perf/mach_ports_performancetest.cc mach_port_t self = mach_task_self(); self 60 chrome/test/perf/mach_ports_performancetest.cc kern_return_t kr = mach_port_names(self, self 69 chrome/test/perf/mach_ports_performancetest.cc vm_deallocate(self, reinterpret_cast<vm_address_t>(names), self 71 chrome/test/perf/mach_ports_performancetest.cc vm_deallocate(self, reinterpret_cast<vm_address_t>(types), self 135 components/breakpad/tools/crash_service.cc CrashService* self; self 141 components/breakpad/tools/crash_service.cc : pid(process_id), self(service), map(crash_map), dump_path(path) { self 289 components/breakpad/tools/crash_service.cc CrashService* self = static_cast<CrashService*>(context); self 290 components/breakpad/tools/crash_service.cc ::InterlockedIncrement(&self->clients_connected_); self 297 components/breakpad/tools/crash_service.cc CrashService* self = static_cast<CrashService*>(context); self 298 components/breakpad/tools/crash_service.cc ::InterlockedIncrement(&self->clients_terminated_); self 300 components/breakpad/tools/crash_service.cc if (!self->sender_) self 306 components/breakpad/tools/crash_service.cc if (self->clients_connected_ > self->clients_terminated_) self 308 components/breakpad/tools/crash_service.cc if (self->sender_->max_reports_per_day() > 0) { self 313 components/breakpad/tools/crash_service.cc base::AutoLock lock(self->sending_); self 316 components/breakpad/tools/crash_service.cc if (self->clients_connected_ == self->clients_terminated_) { self 337 components/breakpad/tools/crash_service.cc CrashService* self = static_cast<CrashService*>(context); self 338 components/breakpad/tools/crash_service.cc if (!self) { self 344 components/breakpad/tools/crash_service.cc CustomInfoToMap(client_info, self->reporter_tag_, &map); self 365 components/breakpad/tools/crash_service.cc if (!self->sender_) self 370 components/breakpad/tools/crash_service.cc DumpJobInfo* dump_job = new DumpJobInfo(pid, self, map, self 406 components/breakpad/tools/crash_service.cc base::AutoLock lock(info->self->sending_); self 409 components/breakpad/tools/crash_service.cc = info->self->sender_->SendCrashReport(kCrashReportURL, info->map, self 417 components/breakpad/tools/crash_service.cc ++info->self->requests_handled_; self 421 components/breakpad/tools/crash_service.cc ++info->self->requests_sent_; self 422 components/breakpad/tools/crash_service.cc ++info->self->requests_handled_; self 193 components/policy/core/common/cloud/cloud_policy_validator.cc scoped_ptr<CloudPolicyValidatorBase> self, self 197 components/policy/core/common/cloud/cloud_policy_validator.cc self->RunValidation(); self 203 components/policy/core/common/cloud/cloud_policy_validator.cc base::Passed(&self), self 209 components/policy/core/common/cloud/cloud_policy_validator.cc scoped_ptr<CloudPolicyValidatorBase> self, self 228 components/policy/core/common/cloud/cloud_policy_validator.h scoped_ptr<CloudPolicyValidatorBase> self, self 233 components/policy/core/common/cloud/cloud_policy_validator.h static void ReportCompletion(scoped_ptr<CloudPolicyValidatorBase> self, self 154 content/browser/indexed_db/indexed_db_callbacks.cc scoped_refptr<IndexedDBCallbacks> self(this); self 625 content/browser/renderer_host/gtk_im_context_wrapper.cc GtkIMContext* context, gchar* text, GtkIMContextWrapper* self) { self 626 content/browser/renderer_host/gtk_im_context_wrapper.cc self->HandleCommit(base::UTF8ToUTF16(text)); self 630 content/browser/renderer_host/gtk_im_context_wrapper.cc GtkIMContext* context, GtkIMContextWrapper* self) { self 631 content/browser/renderer_host/gtk_im_context_wrapper.cc self->HandlePreeditStart(); self 635 content/browser/renderer_host/gtk_im_context_wrapper.cc GtkIMContext* context, GtkIMContextWrapper* self) { self 640 content/browser/renderer_host/gtk_im_context_wrapper.cc self->HandlePreeditChanged(text, attrs, cursor_position); self 646 content/browser/renderer_host/gtk_im_context_wrapper.cc GtkIMContext* context, GtkIMContextWrapper* self) { self 647 content/browser/renderer_host/gtk_im_context_wrapper.cc self->HandlePreeditEnd(); self 651 content/browser/renderer_host/gtk_im_context_wrapper.cc GtkIMContext* context, GtkIMContextWrapper* self) { self 652 content/browser/renderer_host/gtk_im_context_wrapper.cc return self->HandleRetrieveSurrounding(context); self 656 content/browser/renderer_host/gtk_im_context_wrapper.cc GtkWidget* widget, GtkIMContextWrapper* self) { self 657 content/browser/renderer_host/gtk_im_context_wrapper.cc self->HandleHostViewRealize(widget); self 661 content/browser/renderer_host/gtk_im_context_wrapper.cc GtkWidget* widget, GtkIMContextWrapper* self) { self 662 content/browser/renderer_host/gtk_im_context_wrapper.cc self->HandleHostViewUnrealize(); self 108 content/browser/renderer_host/gtk_im_context_wrapper.h GtkIMContextWrapper* self); self 110 content/browser/renderer_host/gtk_im_context_wrapper.h GtkIMContextWrapper* self); self 112 content/browser/renderer_host/gtk_im_context_wrapper.h GtkIMContextWrapper* self); self 114 content/browser/renderer_host/gtk_im_context_wrapper.h GtkIMContextWrapper* self); self 116 content/browser/renderer_host/gtk_im_context_wrapper.h GtkIMContextWrapper* self); self 120 content/browser/renderer_host/gtk_im_context_wrapper.h GtkIMContextWrapper* self); self 122 content/browser/renderer_host/gtk_im_context_wrapper.h GtkIMContextWrapper* self); self 69 content/browser/renderer_host/gtk_key_bindings_handler.cc void GtkKeyBindingsHandler::HandlerInit(Handler *self) { self 70 content/browser/renderer_host/gtk_key_bindings_handler.cc self->owner = NULL; self 68 content/browser/renderer_host/gtk_key_bindings_handler.h static void HandlerInit(Handler *self); self 116 content/browser/service_worker/service_worker_browsertest.cc RunOnIOThread(base::Bind(&self::SetUpOnIOThread, this)); self 120 content/browser/service_worker/service_worker_browsertest.cc RunOnIOThread(base::Bind(&self::TearDownOnIOThread, this)); self 238 content/browser/service_worker/service_worker_browsertest.cc RunOnIOThread(base::Bind(&self::SetUpRegistrationOnIOThread, this, self 245 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::InstallOnIOThread, this, self 255 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::StopOnIOThread, this, self 266 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::SetUpRegistrationOnIOThread, this, worker_url)); self 274 content/browser/service_worker/service_worker_browsertest.cc &self::ActivateOnIOThread, this, run_loop.QuitClosure(), &status)); self 286 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::FetchOnIOThread, self 300 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::SetUpRegistrationOnIOThread, this, worker_url)); self 375 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::StartOnIOThread, this)); self 384 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::StopOnIOThread, this)); self 391 content/browser/service_worker/service_worker_browsertest.cc RunOnIOThread(base::Bind(&self::SetUpRegistrationOnIOThread, this, self 398 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::StartOnIOThread, this, self 408 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::StopOnIOThread, this, self 416 content/browser/service_worker/service_worker_browsertest.cc RunOnIOThread(base::Bind(&self::SetUpRegistrationOnIOThread, this, self 423 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::StartOnIOThread, this, self 486 content/browser/service_worker/service_worker_browsertest.cc RunOnIOThread(base::Bind(&self::SetUpRegistrationOnIOThread, this, self 499 content/browser/service_worker/service_worker_browsertest.cc base::Bind(&self::SyncEventOnIOThread, this, self 149 content/browser/service_worker/service_worker_request_handler.cc base::Bind(&self::DidLookupRegistrationForMainResource, self 270 content/browser/service_worker/service_worker_version.cc base::Bind(&self::SendMessage, self 290 content/browser/service_worker/service_worker_version.cc base::Bind(&self::SendMessageAndRegisterCallback, self 41 content/common/gpu/devtools_gpu_instrumentation.cc GpuEventsDispatcher* self = self 43 content/common/gpu/devtools_gpu_instrumentation.cc DCHECK(self->CalledOnValidThread()); self 45 content/common/gpu/devtools_gpu_instrumentation.cc for (it = self->processors_.begin(); it != self->processors_.end(); ++it) { self 357 content/renderer/pepper/npapi_glue.cc void TryCatch::Catch(void* self, const char* message) { self 358 content/renderer/pepper/npapi_glue.cc static_cast<TryCatch*>(self)->SetException(message); self 250 content/renderer/pepper/npapi_glue.h static void Catch(void* self, const char* message); self 1125 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1126 dbus/bus.cc return self->OnAddWatch(raw_watch); self 1131 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1132 dbus/bus.cc self->OnRemoveWatch(raw_watch); self 1137 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1138 dbus/bus.cc self->OnToggleWatch(raw_watch); self 1143 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1144 dbus/bus.cc return self->OnAddTimeout(raw_timeout); self 1149 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1150 dbus/bus.cc self->OnRemoveTimeout(raw_timeout); self 1155 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1156 dbus/bus.cc self->OnToggleTimeout(raw_timeout); self 1163 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1164 dbus/bus.cc self->OnDispatchStatusChanged(connection, status); self 1175 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1176 dbus/bus.cc self->OnConnectionDisconnected(connection); self 1190 dbus/bus.cc Bus* self = static_cast<Bus*>(data); self 1191 dbus/bus.cc self->OnServiceOwnerChanged(message); self 309 dbus/exported_object.cc ExportedObject* self = reinterpret_cast<ExportedObject*>(user_data); self 310 dbus/exported_object.cc return self->HandleMessage(connection, raw_message); self 315 dbus/exported_object.cc ExportedObject* self = reinterpret_cast<ExportedObject*>(user_data); self 316 dbus/exported_object.cc return self->OnUnregistered(connection); self 369 dbus/object_proxy.cc ObjectProxy* self = data->object_proxy; self 370 dbus/object_proxy.cc self->OnPendingCallIsComplete(pending_call, self 555 dbus/object_proxy.cc ObjectProxy* self = reinterpret_cast<ObjectProxy*>(user_data); self 556 dbus/object_proxy.cc return self->HandleMessage(connection, raw_message); self 67 media/base/user_input_monitor_linux.cc static void ProcessReply(XPointer self, XRecordInterceptData* data); self 316 media/base/user_input_monitor_linux.cc void UserInputMonitorLinuxCore::ProcessReply(XPointer self, self 320 media/base/user_input_monitor_linux.cc reinterpret_cast<UserInputMonitorLinuxCore*>(self)->ProcessXEvent(event); self 272 media/midi/midi_manager_win.cc InDeviceInfo* self = reinterpret_cast<InDeviceInfo*>(instance); self 273 media/midi/midi_manager_win.cc if (!self) self 275 media/midi/midi_manager_win.cc if (self->midi_handle() != midi_in_handle) self 280 media/midi/midi_manager_win.cc self->OnShortMessageReceived(static_cast<uint8>(param1 & 0xff), self 286 media/midi/midi_manager_win.cc self->OnLongMessageReceived(reinterpret_cast<MIDIHDR*>(param1), self 462 media/midi/midi_manager_win.cc OutDeviceInfo* self = reinterpret_cast<OutDeviceInfo*>(instance); self 463 media/midi/midi_manager_win.cc if (!self) self 465 media/midi/midi_manager_win.cc if (self->midi_handle() != midi_out_handle) self 474 media/midi/midi_manager_win.cc self->midi_handle(), header.get(), sizeof(*header)); self 483 media/midi/midi_manager_win.cc self->closed_ = true; self 252 media/video/capture/linux/video_capture_device_linux.cc VideoCaptureDeviceLinux* self = new VideoCaptureDeviceLinux(device_name); self 253 media/video/capture/linux/video_capture_device_linux.cc if (!self) self 261 media/video/capture/linux/video_capture_device_linux.cc delete self; self 265 media/video/capture/linux/video_capture_device_linux.cc return self; self 125 mojo/public/c/system/tests/core_perftest.cc CorePerftest* self = static_cast<CorePerftest*>(closure); self 127 mojo/public/c/system/tests/core_perftest.cc result = MojoCreateMessagePipe(&self->h0_, &self->h1_); self 129 mojo/public/c/system/tests/core_perftest.cc result = MojoClose(self->h0_); self 131 mojo/public/c/system/tests/core_perftest.cc result = MojoClose(self->h1_); self 136 mojo/public/c/system/tests/core_perftest.cc CorePerftest* self = static_cast<CorePerftest*>(closure); self 138 mojo/public/c/system/tests/core_perftest.cc result = MojoWriteMessage(self->h0_, self 139 mojo/public/c/system/tests/core_perftest.cc self->buffer_, self->num_bytes_, self 143 mojo/public/c/system/tests/core_perftest.cc uint32_t read_bytes = self->num_bytes_; self 144 mojo/public/c/system/tests/core_perftest.cc result = MojoReadMessage(self->h1_, self 145 mojo/public/c/system/tests/core_perftest.cc self->buffer_, &read_bytes, self 152 mojo/public/c/system/tests/core_perftest.cc CorePerftest* self = static_cast<CorePerftest*>(closure); self 154 mojo/public/c/system/tests/core_perftest.cc result = MojoReadMessage(self->h0_, self 87 mojo/public/cpp/bindings/lib/connector.cc Connector* self = static_cast<Connector*>(closure); self 88 mojo/public/cpp/bindings/lib/connector.cc self->OnHandleReady(result); self 30 mojo/public/cpp/environment/tests/async_waiter_unittest.cc TestAsyncWaitCallback* self = static_cast<TestAsyncWaitCallback*>(closure); self 31 mojo/public/cpp/environment/tests/async_waiter_unittest.cc self->result_count_++; self 32 mojo/public/cpp/environment/tests/async_waiter_unittest.cc self->last_result_ = result; self 64 mojo/public/cpp/utility/lib/thread.cc Thread* self = static_cast<Thread*>(arg); self 65 mojo/public/cpp/utility/lib/thread.cc self->Run(); self 212 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc Html5Fs* self = static_cast<Html5Fs*>(user_data); self 213 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc self->FilesystemOpenCallback(result); self 95 native_client_sdk/src/libraries/third_party/pthreads-win32/create.c pthread_t self; self 137 native_client_sdk/src/libraries/third_party/pthreads-win32/create.c self = pthread_self(); self 138 native_client_sdk/src/libraries/third_party/pthreads-win32/create.c tp->sigmask = ((ptw32_thread_t *)self.p)->sigmask; self 174 native_client_sdk/src/libraries/third_party/pthreads-win32/create.c self = pthread_self (); self 176 native_client_sdk/src/libraries/third_party/pthreads-win32/create.c priority = ((ptw32_thread_t *) self.p)->sched_priority; self 74 native_client_sdk/src/libraries/third_party/pthreads-win32/errno.c pthread_t self; self 77 native_client_sdk/src/libraries/third_party/pthreads-win32/errno.c if ((self = pthread_self ()).p == NULL) self 87 native_client_sdk/src/libraries/third_party/pthreads-win32/errno.c result = (int *)(&self.p->exitStatus); self 625 native_client_sdk/src/libraries/third_party/pthreads-win32/implement.h void ptw32_robust_mutex_add(pthread_mutex_t* mutex, pthread_t self); self 100 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_cancel.c pthread_t self; self 111 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_cancel.c if ((self = pthread_self ()).p == NULL) self 122 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_cancel.c cancel_self = pthread_equal (thread, self); self 88 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_delay_np.c pthread_t self; self 128 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_delay_np.c if (NULL == (self = pthread_self ()).p) self 133 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_delay_np.c sp = (ptw32_thread_t *) self.p; self 86 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_join.c pthread_t self; self 113 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_join.c self = pthread_self(); self 115 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_join.c if (NULL == self.p) self 119 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_join.c else if (pthread_equal (self, thread)) self 116 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_consistent.c ptw32_robust_mutex_add(pthread_mutex_t* mutex, pthread_t self) self 120 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_consistent.c ptw32_thread_t* tp = (ptw32_thread_t*)self.p; self 124 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_consistent.c mx->ownerThread = self; self 98 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c pthread_t self = pthread_self(); self 106 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c mx->ownerThread = self; self 110 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c if (pthread_equal (mx->ownerThread, self)) self 137 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c mx->ownerThread = self; self 160 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c pthread_t self = pthread_self(); self 198 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c ptw32_robust_mutex_add(mutex, self); self 213 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c ptw32_robust_mutex_add(mutex, self); self 217 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c if (pthread_equal (mx->ownerThread, self)) self 259 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_lock.c ptw32_robust_mutex_add(mutex, self); self 158 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c pthread_t self = pthread_self(); self 166 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c mx->ownerThread = self; self 170 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c if (pthread_equal (mx->ownerThread, self)) self 194 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c mx->ownerThread = self; self 216 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c pthread_t self = pthread_self(); self 253 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c ptw32_robust_mutex_add(mutex, self); self 259 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c pthread_t self = pthread_self(); self 271 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c ptw32_robust_mutex_add(mutex, self); self 275 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c if (pthread_equal (mx->ownerThread, self)) self 315 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_timedlock.c ptw32_robust_mutex_add(mutex, self); self 103 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_trylock.c pthread_t self; self 114 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_trylock.c self = pthread_self(); self 126 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_trylock.c ptw32_robust_mutex_add(mutex, self); self 140 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_trylock.c ptw32_robust_mutex_add(mutex, self); self 114 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_unlock.c pthread_t self = pthread_self(); self 121 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_mutex_unlock.c if (pthread_equal (mx->ownerThread, self)) self 62 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_self.c pthread_t self; self 75 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_self.c self = sp->ptHandle; self 83 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_self.c self = ptw32_new (); self 84 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_self.c sp = (ptw32_thread_t *) self.p; self 121 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_self.c ptw32_threadReusePush (self); self 139 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_self.c return (self); self 84 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setcancelstate.c pthread_t self = pthread_self (); self 85 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setcancelstate.c ptw32_thread_t * sp = (ptw32_thread_t *) self.p; self 84 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setcanceltype.c pthread_t self = pthread_self (); self 85 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setcanceltype.c ptw32_thread_t * sp = (ptw32_thread_t *) self.p; self 68 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setspecific.c pthread_t self; self 78 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setspecific.c self = pthread_self (); self 79 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setspecific.c if (self.p == NULL) self 98 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setspecific.c self = *((pthread_t *) value); self 102 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setspecific.c self = sp->ptHandle; self 110 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setspecific.c if (self.p != NULL && key->destructor != NULL && value != NULL) self 114 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_setspecific.c ptw32_thread_t * sp = (ptw32_thread_t *) self.p; self 72 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_testcancel.c pthread_t self = pthread_self (); self 73 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_testcancel.c ptw32_thread_t * sp = (ptw32_thread_t *) self.p; self 75 native_client_sdk/src/libraries/third_party/pthreads-win32/ptw32_threadStart.c pthread_t self = pthread_self (); self 77 native_client_sdk/src/libraries/third_party/pthreads-win32/ptw32_threadStart.c ptw32_callUserDestroyRoutines (self); self 132 native_client_sdk/src/libraries/third_party/pthreads-win32/ptw32_threadStart.c pthread_t self; self 149 native_client_sdk/src/libraries/third_party/pthreads-win32/ptw32_threadStart.c self = threadParms->tid; self 150 native_client_sdk/src/libraries/third_party/pthreads-win32/ptw32_threadStart.c sp = (ptw32_thread_t *) self.p; self 58 native_client_sdk/src/libraries/third_party/pthreads-win32/w32_CancelableWait.c pthread_t self; self 66 native_client_sdk/src/libraries/third_party/pthreads-win32/w32_CancelableWait.c self = pthread_self(); self 67 native_client_sdk/src/libraries/third_party/pthreads-win32/w32_CancelableWait.c sp = (ptw32_thread_t *) self.p; self 78 net/cronet/android/url_request_peer.cc void URLRequestPeer::OnAppendChunkWrapper(URLRequestPeer* self, self 82 net/cronet/android/url_request_peer.cc self->OnAppendChunk(bytes, bytes_len, is_last_chunk); self 95 net/cronet/android/url_request_peer.cc void URLRequestPeer::OnInitiateConnectionWrapper(URLRequestPeer* self) { self 96 net/cronet/android/url_request_peer.cc self->OnInitiateConnection(); self 153 net/cronet/android/url_request_peer.cc void URLRequestPeer::OnCancelRequestWrapper(URLRequestPeer* self) { self 154 net/cronet/android/url_request_peer.cc self->OnCancelRequest(); self 174 net/cronet/android/url_request_peer.cc void URLRequestPeer::OnDestroyRequest(URLRequestPeer* self) { self 175 net/cronet/android/url_request_peer.cc VLOG(self->context_->logging_level()) self 176 net/cronet/android/url_request_peer.cc << "Destroying chromium request: " << self->url_.possibly_invalid_spec(); self 177 net/cronet/android/url_request_peer.cc delete self; self 115 net/cronet/android/url_request_peer.h static void OnInitiateConnectionWrapper(URLRequestPeer* self); self 116 net/cronet/android/url_request_peer.h static void OnCancelRequestWrapper(URLRequestPeer* self); self 117 net/cronet/android/url_request_peer.h static void OnDestroyRequest(URLRequestPeer* self); self 118 net/cronet/android/url_request_peer.h static void OnAppendChunkWrapper(URLRequestPeer* self, self 2211 net/dns/host_resolver_impl.cc base::WeakPtr<HostResolverImpl> self = weak_ptr_factory_.GetWeakPtr(); self 2214 net/dns/host_resolver_impl.cc for (size_t i = 0; self.get() && i < jobs_to_abort.size(); ++i) { self 2219 net/dns/host_resolver_impl.cc if (self) self 2244 net/dns/host_resolver_impl.cc base::WeakPtr<HostResolverImpl> self = weak_ptr_factory_.GetWeakPtr(); self 2246 net/dns/host_resolver_impl.cc for (JobMap::iterator it = jobs_.begin(); self.get() && it != jobs_.end();) { self 2300 net/dns/host_resolver_impl.cc base::WeakPtr<HostResolverImpl> self = weak_ptr_factory_.GetWeakPtr(); self 2307 net/dns/host_resolver_impl.cc if (self.get()) self 276 net/proxy/proxy_config_service_android.cc virtual void ProxySettingsChanged(JNIEnv* env, jobject self) OVERRIDE { self 704 net/socket/client_socket_pool_base.h HigherLayeredPool* self, self 712 net/socket/client_socket_pool_base.h helper_(self, max_sockets, max_sockets_per_group, self 323 net/tools/balsa/balsa_headers.h bool operator==(const self& it) const { self 327 net/tools/balsa/balsa_headers.h bool operator<(const self& it) const { self 331 net/tools/balsa/balsa_headers.h bool operator<=(const self& it) const { self 335 net/tools/balsa/balsa_headers.h bool operator!=(const self& it) const { self 339 net/tools/balsa/balsa_headers.h bool operator>(const self& it) const { self 343 net/tools/balsa/balsa_headers.h bool operator>=(const self& it) const { self 427 net/tools/balsa/balsa_headers.h self& operator=(const iterator_base& it) { self 433 net/tools/balsa/balsa_headers.h self& operator=(const reverse_iterator_base& it) { self 478 net/tools/balsa/balsa_headers.h self& operator++() { self 483 net/tools/balsa/balsa_headers.h self& operator--() { self 510 net/tools/balsa/balsa_headers.h self& operator++() { self 515 net/tools/balsa/balsa_headers.h self& operator--() { self 538 net/tools/balsa/balsa_headers.h self& operator++() { self 192 ppapi/shared_impl/ppb_audio_shared.cc void PPB_Audio_Shared::CallRun(void* self) { self 193 ppapi/shared_impl/ppb_audio_shared.cc PPB_Audio_Shared* audio = static_cast<PPB_Audio_Shared*>(self); self 120 ppapi/shared_impl/ppb_audio_shared.h static void CallRun(void* self); self 688 ppapi/utility/completion_callback_factory.h Self* self = static_cast<Self*>(user_data); self 689 ppapi/utility/completion_callback_factory.h T* object = self->back_pointer_->GetObject(); self 694 ppapi/utility/completion_callback_factory.h (*self->dispatcher_)(object, result); self 696 ppapi/utility/completion_callback_factory.h delete self; self 176 remoting/base/breakpad_win.cc BreakpadWin* self = BreakpadWin::GetInstance(); self 177 remoting/base/breakpad_win.cc if (NoBarrier_CompareAndSwap(&self->handling_exception_, 0, 1) != 0) { self 187 remoting/base/breakpad_win.cc BreakpadWin* self = BreakpadWin::GetInstance(); self 188 remoting/base/breakpad_win.cc if (self->breakpad_.get() != NULL) { self 189 remoting/base/breakpad_win.cc self->breakpad_->WriteMinidumpForException(exinfo); self 137 remoting/host/disconnect_window_win.cc LONG_PTR self = NULL; self 139 remoting/host/disconnect_window_win.cc self = lparam; self 143 remoting/host/disconnect_window_win.cc LONG_PTR result = SetWindowLongPtr(hwnd, DWLP_USER, self); self 145 remoting/host/disconnect_window_win.cc reinterpret_cast<DisconnectWindowWin*>(self)->EndDialog(); self 147 remoting/host/disconnect_window_win.cc self = GetWindowLongPtr(hwnd, DWLP_USER); self 150 remoting/host/disconnect_window_win.cc if (self) { self 151 remoting/host/disconnect_window_win.cc return reinterpret_cast<DisconnectWindowWin*>(self)->OnDialogMessage( self 71 remoting/host/local_input_monitor_linux.cc static void ProcessReply(XPointer self, XRecordInterceptData* data); self 309 remoting/host/local_input_monitor_linux.cc void LocalInputMonitorLinux::Core::ProcessReply(XPointer self, self 313 remoting/host/local_input_monitor_linux.cc reinterpret_cast<Core*>(self)->ProcessXEvent(event); self 198 remoting/host/plugin/host_plugin.cc HostNPPlugin* self = reinterpret_cast<HostNPPlugin*>(npp->pdata); self 201 remoting/host/plugin/host_plugin.cc base::AutoLock auto_lock(self->timers_lock_); self 203 remoting/host/plugin/host_plugin.cc self->timers_.find(timer_id); self 204 remoting/host/plugin/host_plugin.cc CHECK(it != self->timers_.end()); self 206 remoting/host/plugin/host_plugin.cc self->timers_.erase(it); self 381 remoting/host/win/host_service.cc HostService* self = HostService::GetInstance(); self 388 remoting/host/win/host_service.cc self->main_task_runner_->PostTask( self 390 remoting/host/win/host_service.cc self->weak_ptr_)); self 403 remoting/host/win/host_service.cc HostService* self = reinterpret_cast<HostService*>(context); self 410 remoting/host/win/host_service.cc self->main_task_runner_->PostTask( self 412 remoting/host/win/host_service.cc self->weak_ptr_)); self 416 remoting/host/win/host_service.cc self->main_task_runner_->PostTask(FROM_HERE, base::Bind( self 417 remoting/host/win/host_service.cc &HostService::OnSessionChange, self->weak_ptr_, event_type, self 428 remoting/host/win/host_service.cc HostService* self = HostService::GetInstance(); self 431 remoting/host/win/host_service.cc self->RunAsServiceImpl(); self 435 remoting/host/win/host_service.cc self->stopped_event_.Signal(); self 212 third_party/bintrees/bintrees/cwalker.c #define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func)) self 212 third_party/bintrees/bintrees/qavltree.c #define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func)) self 212 third_party/bintrees/bintrees/qbintree.c #define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func)) self 212 third_party/bintrees/bintrees/qrbtree.c #define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func)) self 884 third_party/cld/base/logging.h LogStream* self() const { return self_; } self 2163 third_party/libxml/src/trio.c TRIO_ARGS6((self, number, flags, width, precision, base), self 2164 third_party/libxml/src/trio.c trio_class_t *self, self 2184 third_party/libxml/src/trio.c assert(VALID(self)); self 2185 third_party/libxml/src/trio.c assert(VALID(self->OutStream)); self 2289 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 2294 third_party/libxml/src/trio.c self->OutStream(self, '-'); self 2296 third_party/libxml/src/trio.c self->OutStream(self, '+'); self 2298 third_party/libxml/src/trio.c self->OutStream(self, ' '); self 2306 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 2307 third_party/libxml/src/trio.c self->OutStream(self, (flags & FLAGS_UPPER) ? 'B' : 'b'); self 2312 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 2316 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 2317 third_party/libxml/src/trio.c self->OutStream(self, (flags & FLAGS_UPPER) ? 'X' : 'x'); self 2332 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 2342 third_party/libxml/src/trio.c self->OutStream(self, *pointer); self 2350 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 2362 third_party/libxml/src/trio.c TRIO_ARGS3((self, ch, flags), self 2363 third_party/libxml/src/trio.c trio_class_t *self, self 2375 third_party/libxml/src/trio.c self->OutStream(self, CHAR_BACKSLASH); self 2378 third_party/libxml/src/trio.c case '\007': self->OutStream(self, 'a'); break; self 2379 third_party/libxml/src/trio.c case '\b': self->OutStream(self, 'b'); break; self 2380 third_party/libxml/src/trio.c case '\f': self->OutStream(self, 'f'); break; self 2381 third_party/libxml/src/trio.c case '\n': self->OutStream(self, 'n'); break; self 2382 third_party/libxml/src/trio.c case '\r': self->OutStream(self, 'r'); break; self 2383 third_party/libxml/src/trio.c case '\t': self->OutStream(self, 't'); break; self 2384 third_party/libxml/src/trio.c case '\v': self->OutStream(self, 'v'); break; self 2385 third_party/libxml/src/trio.c case '\\': self->OutStream(self, '\\'); break; self 2387 third_party/libxml/src/trio.c self->OutStream(self, 'x'); self 2388 third_party/libxml/src/trio.c TrioWriteNumber(self, (trio_uintmax_t)ch, self 2396 third_party/libxml/src/trio.c self->OutStream(self, CHAR_BACKSLASH); self 2397 third_party/libxml/src/trio.c self->OutStream(self, CHAR_BACKSLASH); self 2401 third_party/libxml/src/trio.c self->OutStream(self, ch); self 2406 third_party/libxml/src/trio.c self->OutStream(self, ch); self 2418 third_party/libxml/src/trio.c TRIO_ARGS5((self, string, flags, width, precision), self 2419 third_party/libxml/src/trio.c trio_class_t *self, self 2428 third_party/libxml/src/trio.c assert(VALID(self)); self 2429 third_party/libxml/src/trio.c assert(VALID(self->OutStream)); self 2451 third_party/libxml/src/trio.c self->OutStream(self, CHAR_QUOTE); self 2456 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 2463 third_party/libxml/src/trio.c TrioWriteStringCharacter(self, ch, flags); self 2469 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 2472 third_party/libxml/src/trio.c self->OutStream(self, CHAR_QUOTE); self 2484 third_party/libxml/src/trio.c TRIO_ARGS4((self, wch, flags, width), self 2485 third_party/libxml/src/trio.c trio_class_t *self, self 2509 third_party/libxml/src/trio.c TrioWriteStringCharacter(self, ch, flags); self 2524 third_party/libxml/src/trio.c TRIO_ARGS5((self, wstring, flags, width, precision), self 2525 third_party/libxml/src/trio.c trio_class_t *self, self 2534 third_party/libxml/src/trio.c assert(VALID(self)); self 2535 third_party/libxml/src/trio.c assert(VALID(self->OutStream)); self 2543 third_party/libxml/src/trio.c TrioWriteString(self, NULL, flags, width, precision); self 2558 third_party/libxml/src/trio.c self->OutStream(self, CHAR_QUOTE); self 2563 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 2568 third_party/libxml/src/trio.c size = TrioWriteWideStringCharacter(self, *wstring++, flags, length); self 2577 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 2580 third_party/libxml/src/trio.c self->OutStream(self, CHAR_QUOTE); self 2601 third_party/libxml/src/trio.c TRIO_ARGS6((self, number, flags, width, precision, base), self 2602 third_party/libxml/src/trio.c trio_class_t *self, self 2642 third_party/libxml/src/trio.c assert(VALID(self)); self 2643 third_party/libxml/src/trio.c assert(VALID(self->OutStream)); self 2650 third_party/libxml/src/trio.c TrioWriteString(self, self 2661 third_party/libxml/src/trio.c TrioWriteString(self, self 2671 third_party/libxml/src/trio.c TrioWriteString(self, self 2900 third_party/libxml/src/trio.c self->OutStream(self, '-'); self 2902 third_party/libxml/src/trio.c self->OutStream(self, '+'); self 2904 third_party/libxml/src/trio.c self->OutStream(self, ' '); self 2907 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 2908 third_party/libxml/src/trio.c self->OutStream(self, (flags & FLAGS_UPPER) ? 'X' : 'x'); self 2914 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 2925 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 2929 third_party/libxml/src/trio.c self->OutStream(self, '-'); self 2931 third_party/libxml/src/trio.c self->OutStream(self, '+'); self 2933 third_party/libxml/src/trio.c self->OutStream(self, ' '); self 2936 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 2937 third_party/libxml/src/trio.c self->OutStream(self, (flags & FLAGS_UPPER) ? 'X' : 'x'); self 2949 third_party/libxml/src/trio.c self->OutStream(self, digits[0]); self 2953 third_party/libxml/src/trio.c self->OutStream(self, digits[(int)fmodl(workNumber, dblBase)]); self 2964 third_party/libxml/src/trio.c self->OutStream(self, *groupingPointer); self 2976 third_party/libxml/src/trio.c self->OutStream(self, internalDecimalPoint); self 2982 third_party/libxml/src/trio.c self->OutStream(self, internalDecimalPointString[i]); self 3010 third_party/libxml/src/trio.c self->OutStream(self, digits[0]); self 3013 third_party/libxml/src/trio.c self->OutStream(self, digits[index]); self 3022 third_party/libxml/src/trio.c self->OutStream(self, digits[0]); self 3030 third_party/libxml/src/trio.c self->OutStream(self, self 3034 third_party/libxml/src/trio.c self->OutStream(self, (isExponentNegative) ? '-' : '+'); self 3038 third_party/libxml/src/trio.c self->OutStream(self, '0'); self 3045 third_party/libxml/src/trio.c self->OutStream(self, digits[(uExponent / exponentBase) % base]); self 3054 third_party/libxml/src/trio.c self->OutStream(self, CHAR_ADJUST); self 3451 third_party/libxml/src/trio.c TRIO_ARGS2((self, output), self 3452 third_party/libxml/src/trio.c trio_class_t *self, self 3457 third_party/libxml/src/trio.c assert(VALID(self)); self 3458 third_party/libxml/src/trio.c assert(VALID(self->location)); self 3460 third_party/libxml/src/trio.c file = (FILE *)self->location; self 3461 third_party/libxml/src/trio.c self->processed++; self 3464 third_party/libxml/src/trio.c self->error = TRIO_ERROR_RETURN(TRIO_EOF, 0); self 3468 third_party/libxml/src/trio.c self->committed++; self 3477 third_party/libxml/src/trio.c TRIO_ARGS2((self, output), self 3478 third_party/libxml/src/trio.c trio_class_t *self, self 3484 third_party/libxml/src/trio.c assert(VALID(self)); self 3486 third_party/libxml/src/trio.c fd = *((int *)self->location); self 3488 third_party/libxml/src/trio.c self->processed++; self 3491 third_party/libxml/src/trio.c self->error = TRIO_ERROR_RETURN(TRIO_ERRNO, 0); self 3495 third_party/libxml/src/trio.c self->committed++; self 3504 third_party/libxml/src/trio.c TRIO_ARGS2((self, output), self 3505 third_party/libxml/src/trio.c trio_class_t *self, self 3511 third_party/libxml/src/trio.c assert(VALID(self)); self 3512 third_party/libxml/src/trio.c assert(VALID(self->location)); self 3514 third_party/libxml/src/trio.c data = (trio_custom_t *)self->location; self 3520 third_party/libxml/src/trio.c self->committed++; self 3524 third_party/libxml/src/trio.c if (self->error == 0) self 3526 third_party/libxml/src/trio.c self->error = TRIO_ERROR_RETURN(TRIO_ECUSTOM, -status); self 3530 third_party/libxml/src/trio.c self->processed++; self 3538 third_party/libxml/src/trio.c TRIO_ARGS2((self, output), self 3539 third_party/libxml/src/trio.c trio_class_t *self, self 3544 third_party/libxml/src/trio.c assert(VALID(self)); self 3545 third_party/libxml/src/trio.c assert(VALID(self->location)); self 3547 third_party/libxml/src/trio.c buffer = (char **)self->location; self 3550 third_party/libxml/src/trio.c self->processed++; self 3551 third_party/libxml/src/trio.c self->committed++; self 3559 third_party/libxml/src/trio.c TRIO_ARGS2((self, output), self 3560 third_party/libxml/src/trio.c trio_class_t *self, self 3565 third_party/libxml/src/trio.c assert(VALID(self)); self 3566 third_party/libxml/src/trio.c assert(VALID(self->location)); self 3568 third_party/libxml/src/trio.c buffer = (char **)self->location; self 3570 third_party/libxml/src/trio.c if (self->processed < self->max) self 3574 third_party/libxml/src/trio.c self->committed++; self 3576 third_party/libxml/src/trio.c self->processed++; self 3584 third_party/libxml/src/trio.c TRIO_ARGS2((self, output), self 3585 third_party/libxml/src/trio.c trio_class_t *self, self 3588 third_party/libxml/src/trio.c assert(VALID(self)); self 3589 third_party/libxml/src/trio.c assert(VALID(self->location)); self 3591 third_party/libxml/src/trio.c if (self->error == 0) self 3593 third_party/libxml/src/trio.c trio_xstring_append_char((trio_string_t *)self->location, self 3595 third_party/libxml/src/trio.c self->committed++; self 3598 third_party/libxml/src/trio.c self->processed++; self 4342 third_party/libxml/src/trio.c trio_userdef_t *self = (trio_userdef_t *)handle; self 4346 third_party/libxml/src/trio.c assert(VALID(self)); self 4348 third_party/libxml/src/trio.c if (self->name) self 4350 third_party/libxml/src/trio.c def = TrioFindNamespace(self->name, &prev); self 4364 third_party/libxml/src/trio.c trio_destroy(self->name); self 4366 third_party/libxml/src/trio.c TRIO_FREE(self); self 4847 third_party/libxml/src/trio.c trio_reference_t *self = (trio_reference_t *)ref; self 4849 third_party/libxml/src/trio.c TrioWriteNumber(self->data, self 4851 third_party/libxml/src/trio.c self->parameter->flags, self 4852 third_party/libxml/src/trio.c self->parameter->width, self 4853 third_party/libxml/src/trio.c self->parameter->precision, self 4854 third_party/libxml/src/trio.c self->parameter->base); self 4866 third_party/libxml/src/trio.c trio_reference_t *self = (trio_reference_t *)ref; self 4868 third_party/libxml/src/trio.c TrioWriteNumber(self->data, self 4870 third_party/libxml/src/trio.c self->parameter->flags | FLAGS_UNSIGNED, self 4871 third_party/libxml/src/trio.c self->parameter->width, self 4872 third_party/libxml/src/trio.c self->parameter->precision, self 4873 third_party/libxml/src/trio.c self->parameter->base); self 4885 third_party/libxml/src/trio.c trio_reference_t *self = (trio_reference_t *)ref; self 4887 third_party/libxml/src/trio.c TrioWriteDouble(self->data, self 4889 third_party/libxml/src/trio.c self->parameter->flags, self 4890 third_party/libxml/src/trio.c self->parameter->width, self 4891 third_party/libxml/src/trio.c self->parameter->precision, self 4892 third_party/libxml/src/trio.c self->parameter->base); self 4904 third_party/libxml/src/trio.c trio_reference_t *self = (trio_reference_t *)ref; self 4906 third_party/libxml/src/trio.c TrioWriteString(self->data, self 4908 third_party/libxml/src/trio.c self->parameter->flags, self 4909 third_party/libxml/src/trio.c self->parameter->width, self 4910 third_party/libxml/src/trio.c self->parameter->precision); self 4975 third_party/libxml/src/trio.c trio_reference_t *self = (trio_reference_t *)ref; self 4983 third_party/libxml/src/trio.c self->data->OutStream(self->data, *string++); self 4997 third_party/libxml/src/trio.c flags = self->parameter->flags; self 5000 third_party/libxml/src/trio.c TrioWriteNumber(self->data, self 5111 third_party/libxml/src/trio.c TRIO_ARGS1((self), self 5112 third_party/libxml/src/trio.c trio_class_t *self) self 5116 third_party/libxml/src/trio.c ch = self->current; self 5119 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5422 third_party/libxml/src/trio.c TRIO_ARGS5((self, target, flags, width, base), self 5423 third_party/libxml/src/trio.c trio_class_t *self, self 5436 third_party/libxml/src/trio.c assert(VALID(self)); self 5437 third_party/libxml/src/trio.c assert(VALID(self->InStream)); self 5452 third_party/libxml/src/trio.c TrioSkipWhitespaces(self); self 5457 third_party/libxml/src/trio.c if (self->current == '+') self 5459 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5461 third_party/libxml/src/trio.c else if (self->current == '-') self 5463 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5468 third_party/libxml/src/trio.c count = self->processed; self 5478 third_party/libxml/src/trio.c if (self->current == '0') self 5480 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5481 third_party/libxml/src/trio.c if (self->current) self 5484 third_party/libxml/src/trio.c (trio_to_upper(self->current) == 'X')) self 5486 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5489 third_party/libxml/src/trio.c (trio_to_upper(self->current) == 'B')) self 5491 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5503 third_party/libxml/src/trio.c while (((width == NO_WIDTH) || (self->processed - count < width)) && self 5504 third_party/libxml/src/trio.c (! ((self->current == EOF) || isspace(self->current)))) self 5506 third_party/libxml/src/trio.c if (isascii(self->current)) self 5508 third_party/libxml/src/trio.c digit = internalDigitArray[self->current]; self 5516 third_party/libxml/src/trio.c for (j = 0; internalThousandSeparator[j] && self->current; j++) self 5518 third_party/libxml/src/trio.c if (internalThousandSeparator[j] != self->current) self 5521 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5535 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5552 third_party/libxml/src/trio.c TRIO_ARGS4((self, target, flags, width), self 5553 third_party/libxml/src/trio.c trio_class_t *self, self 5562 third_party/libxml/src/trio.c assert(VALID(self)); self 5563 third_party/libxml/src/trio.c assert(VALID(self->InStream)); self 5566 third_party/libxml/src/trio.c (self->current != EOF) && (i < width); self 5569 third_party/libxml/src/trio.c ch = (char)self->current; self 5570 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5573 third_party/libxml/src/trio.c switch (self->current) self 5584 third_party/libxml/src/trio.c if (isdigit(self->current)) self 5587 third_party/libxml/src/trio.c if (!TrioReadNumber(self, &number, 0, 3, BASE_OCTAL)) self 5591 third_party/libxml/src/trio.c else if (trio_to_upper(self->current) == 'X') self 5594 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5595 third_party/libxml/src/trio.c if (!TrioReadNumber(self, &number, 0, 2, BASE_HEX)) self 5601 third_party/libxml/src/trio.c ch = (char)self->current; self 5618 third_party/libxml/src/trio.c TRIO_ARGS4((self, target, flags, width), self 5619 third_party/libxml/src/trio.c trio_class_t *self, self 5626 third_party/libxml/src/trio.c assert(VALID(self)); self 5627 third_party/libxml/src/trio.c assert(VALID(self->InStream)); self 5629 third_party/libxml/src/trio.c TrioSkipWhitespaces(self); self 5637 third_party/libxml/src/trio.c (! ((self->current == EOF) || isspace(self->current))); self 5640 third_party/libxml/src/trio.c if (TrioReadChar(self, (target ? &target[i] : 0), flags, 1) == 0) self 5654 third_party/libxml/src/trio.c TRIO_ARGS4((self, target, flags, width), self 5655 third_party/libxml/src/trio.c trio_class_t *self, self 5667 third_party/libxml/src/trio.c assert(VALID(self)); self 5668 third_party/libxml/src/trio.c assert(VALID(self->InStream)); self 5671 third_party/libxml/src/trio.c (self->current != EOF) && (i < width); self 5674 third_party/libxml/src/trio.c if (isascii(self->current)) self 5676 third_party/libxml/src/trio.c if (TrioReadChar(self, buffer, flags, 1) == 0) self 5690 third_party/libxml/src/trio.c buffer[j++] = (char)self->current; self 5692 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5703 third_party/libxml/src/trio.c self->InStream(self, NULL); self 5715 third_party/libxml/src/trio.c TRIO_ARGS4((self, target, flags, width), self 5716 third_party/libxml/src/trio.c trio_class_t *self, self 5724 third_party/libxml/src/trio.c assert(VALID(self)); self 5725 third_party/libxml/src/trio.c assert(VALID(self->InStream)); self 5727 third_party/libxml/src/trio.c TrioSkipWhitespaces(self); self 5739 third_party/libxml/src/trio.c (! ((self->current == EOF) || isspace(self->current))); self 5742 third_party/libxml/src/trio.c size = TrioReadWideChar(self, &target[i], flags, 1); self 5761 third_party/libxml/src/trio.c TRIO_ARGS5((self, target, characterclass, flags, width), self 5762 third_party/libxml/src/trio.c trio_class_t *self, self 5771 third_party/libxml/src/trio.c assert(VALID(self)); self 5772 third_party/libxml/src/trio.c assert(VALID(self->InStream)); self 5774 third_party/libxml/src/trio.c ch = self->current; self 5783 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5800 third_party/libxml/src/trio.c TRIO_ARGS4((self, target, flags, width), self 5801 third_party/libxml/src/trio.c trio_class_t *self, self 5818 third_party/libxml/src/trio.c TrioSkipWhitespaces(self); self 5825 third_party/libxml/src/trio.c ch = self->current; self 5829 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5848 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5897 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5902 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5916 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5921 third_party/libxml/src/trio.c for (j = 0; internalThousandSeparator[j] && self->current; j++) self 5923 third_party/libxml/src/trio.c if (internalThousandSeparator[j] != self->current) self 5926 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5940 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5945 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5951 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5955 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5960 third_party/libxml/src/trio.c self->InStream(self, &ch); self 5986 third_party/libxml/src/trio.c TRIO_ARGS3((self, target, flags), self 5987 third_party/libxml/src/trio.c trio_class_t *self, self 5996 third_party/libxml/src/trio.c if (TrioReadNumber(self, self 6010 third_party/libxml/src/trio.c else if (TrioReadString(self, self 6413 third_party/libxml/src/trio.c TRIO_ARGS2((self, intPointer), self 6414 third_party/libxml/src/trio.c trio_class_t *self, self 6417 third_party/libxml/src/trio.c FILE *file = (FILE *)self->location; self 6419 third_party/libxml/src/trio.c assert(VALID(self)); self 6422 third_party/libxml/src/trio.c self->current = fgetc(file); self 6423 third_party/libxml/src/trio.c if (self->current == EOF) self 6425 third_party/libxml/src/trio.c self->error = (ferror(file)) self 6431 third_party/libxml/src/trio.c self->processed++; self 6432 third_party/libxml/src/trio.c self->committed++; self 6437 third_party/libxml/src/trio.c *intPointer = self->current; self 6446 third_party/libxml/src/trio.c TRIO_ARGS2((self, intPointer), self 6447 third_party/libxml/src/trio.c trio_class_t *self, self 6450 third_party/libxml/src/trio.c int fd = *((int *)self->location); self 6454 third_party/libxml/src/trio.c assert(VALID(self)); self 6459 third_party/libxml/src/trio.c self->error = TRIO_ERROR_RETURN(TRIO_ERRNO, 0); self 6460 third_party/libxml/src/trio.c self->current = EOF; self 6464 third_party/libxml/src/trio.c self->current = (size == 0) ? EOF : input; self 6466 third_party/libxml/src/trio.c if (self->current != EOF) self 6468 third_party/libxml/src/trio.c self->committed++; self 6469 third_party/libxml/src/trio.c self->processed++; self 6474 third_party/libxml/src/trio.c *intPointer = self->current; self 6483 third_party/libxml/src/trio.c TRIO_ARGS2((self, intPointer), self 6484 third_party/libxml/src/trio.c trio_class_t *self, self 6489 third_party/libxml/src/trio.c assert(VALID(self)); self 6490 third_party/libxml/src/trio.c assert(VALID(self->location)); self 6492 third_party/libxml/src/trio.c data = (trio_custom_t *)self->location; self 6494 third_party/libxml/src/trio.c self->current = (data->stream.in == NULL) self 6498 third_party/libxml/src/trio.c if (self->current == NIL) self 6500 third_party/libxml/src/trio.c self->current = EOF; self 6504 third_party/libxml/src/trio.c self->processed++; self 6505 third_party/libxml/src/trio.c self->committed++; self 6510 third_party/libxml/src/trio.c *intPointer = self->current; self 6519 third_party/libxml/src/trio.c TRIO_ARGS2((self, intPointer), self 6520 third_party/libxml/src/trio.c trio_class_t *self, self 6525 third_party/libxml/src/trio.c assert(VALID(self)); self 6526 third_party/libxml/src/trio.c assert(VALID(self->location)); self 6528 third_party/libxml/src/trio.c buffer = (unsigned char **)self->location; self 6529 third_party/libxml/src/trio.c self->current = (*buffer)[0]; self 6530 third_party/libxml/src/trio.c if (self->current == NIL) self 6532 third_party/libxml/src/trio.c self->current = EOF; self 6537 third_party/libxml/src/trio.c self->processed++; self 6538 third_party/libxml/src/trio.c self->committed++; self 6543 third_party/libxml/src/trio.c *intPointer = self->current; self 1268 third_party/libxml/src/triostr.c trio_string_t *self; self 1270 third_party/libxml/src/triostr.c self = (trio_string_t *)TRIO_MALLOC(sizeof(trio_string_t)); self 1271 third_party/libxml/src/triostr.c if (self) self 1273 third_party/libxml/src/triostr.c self->content = NULL; self 1274 third_party/libxml/src/triostr.c self->length = 0; self 1275 third_party/libxml/src/triostr.c self->allocated = 0; self 1277 third_party/libxml/src/triostr.c return self; self 1289 third_party/libxml/src/triostr.c TRIO_ARGS2((self, delta), self 1290 third_party/libxml/src/triostr.c trio_string_t *self, self 1298 third_party/libxml/src/triostr.c ? ( (self->allocated == 0) ? 1 : self->allocated * 2 ) self 1299 third_party/libxml/src/triostr.c : self->allocated + delta; self 1301 third_party/libxml/src/triostr.c new_content = (char *)TRIO_REALLOC(self->content, new_size); self 1304 third_party/libxml/src/triostr.c self->content = new_content; self 1305 third_party/libxml/src/triostr.c self->allocated = new_size; self 1322 third_party/libxml/src/triostr.c TRIO_ARGS2((self, length), self 1323 third_party/libxml/src/triostr.c trio_string_t *self, self 1327 third_party/libxml/src/triostr.c return (self->allocated < length) self 1328 third_party/libxml/src/triostr.c ? TrioStringGrow(self, length - self->allocated) self 1346 third_party/libxml/src/triostr.c trio_string_t *self; self 1348 third_party/libxml/src/triostr.c self = TrioStringAlloc(); self 1349 third_party/libxml/src/triostr.c if (self) self 1351 third_party/libxml/src/triostr.c if (TrioStringGrow(self, self 1354 third_party/libxml/src/triostr.c self->content[0] = (char)0; self 1355 third_party/libxml/src/triostr.c self->allocated = initial_size; self 1359 third_party/libxml/src/triostr.c trio_string_destroy(self); self 1360 third_party/libxml/src/triostr.c self = NULL; self 1363 third_party/libxml/src/triostr.c return self; self 1375 third_party/libxml/src/triostr.c TRIO_ARGS1((self), self 1376 third_party/libxml/src/triostr.c trio_string_t *self) self 1378 third_party/libxml/src/triostr.c assert(self); self 1380 third_party/libxml/src/triostr.c if (self) self 1382 third_party/libxml/src/triostr.c trio_destroy(self->content); self 1383 third_party/libxml/src/triostr.c TRIO_FREE(self); self 1405 third_party/libxml/src/triostr.c TRIO_ARGS2((self, offset), self 1406 third_party/libxml/src/triostr.c trio_string_t *self, self 1411 third_party/libxml/src/triostr.c assert(self); self 1413 third_party/libxml/src/triostr.c if (self->content != NULL) self 1415 third_party/libxml/src/triostr.c if (self->length == 0) self 1417 third_party/libxml/src/triostr.c (void)trio_string_length(self); self 1421 third_party/libxml/src/triostr.c if (offset > (int)self->length) self 1423 third_party/libxml/src/triostr.c offset = self->length; self 1428 third_party/libxml/src/triostr.c offset += self->length + 1; self 1434 third_party/libxml/src/triostr.c result = &(self->content[offset]); self 1452 third_party/libxml/src/triostr.c TRIO_ARGS1((self), self 1453 third_party/libxml/src/triostr.c trio_string_t *self) self 1457 third_party/libxml/src/triostr.c assert(self); self 1459 third_party/libxml/src/triostr.c result = self->content; self 1461 third_party/libxml/src/triostr.c self->content = NULL; self 1462 third_party/libxml/src/triostr.c self->length = self->allocated = 0; self 1483 third_party/libxml/src/triostr.c TRIO_ARGS2((self, buffer), self 1484 third_party/libxml/src/triostr.c trio_string_t *self, self 1487 third_party/libxml/src/triostr.c assert(self); self 1489 third_party/libxml/src/triostr.c trio_destroy(self->content); self 1490 third_party/libxml/src/triostr.c self->content = trio_duplicate(buffer); self 1500 third_party/libxml/src/triostr.c TRIO_ARGS1((self), self 1501 third_party/libxml/src/triostr.c trio_string_t *self) self 1503 third_party/libxml/src/triostr.c assert(self); self 1505 third_party/libxml/src/triostr.c return self->allocated; self 1514 third_party/libxml/src/triostr.c TRIO_ARGS1((self), self 1515 third_party/libxml/src/triostr.c trio_string_t *self) self 1517 third_party/libxml/src/triostr.c trio_xstring_append_char(self, 0); self 1531 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1532 third_party/libxml/src/triostr.c trio_string_t *self, self 1537 third_party/libxml/src/triostr.c assert(self); self 1540 third_party/libxml/src/triostr.c length = self->length + other->length; self 1541 third_party/libxml/src/triostr.c if (!TrioStringGrowTo(self, length)) self 1543 third_party/libxml/src/triostr.c trio_copy(&self->content[self->length], other->content); self 1544 third_party/libxml/src/triostr.c self->length = length; self 1559 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1560 third_party/libxml/src/triostr.c trio_string_t *self, self 1565 third_party/libxml/src/triostr.c assert(self); self 1568 third_party/libxml/src/triostr.c length = self->length + trio_length(other); self 1569 third_party/libxml/src/triostr.c if (!TrioStringGrowTo(self, length)) self 1571 third_party/libxml/src/triostr.c trio_copy(&self->content[self->length], other); self 1572 third_party/libxml/src/triostr.c self->length = length; self 1586 third_party/libxml/src/triostr.c TRIO_ARGS2((self, character), self 1587 third_party/libxml/src/triostr.c trio_string_t *self, self 1590 third_party/libxml/src/triostr.c assert(self); self 1592 third_party/libxml/src/triostr.c if ((int)self->length >= trio_string_size(self)) self 1594 third_party/libxml/src/triostr.c if (!TrioStringGrow(self, 0)) self 1597 third_party/libxml/src/triostr.c self->content[self->length] = character; self 1598 third_party/libxml/src/triostr.c self->length++; self 1616 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1617 third_party/libxml/src/triostr.c trio_string_t *self, self 1620 third_party/libxml/src/triostr.c assert(self); self 1623 third_party/libxml/src/triostr.c return trio_contains(self->content, other->content); self 1634 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1635 third_party/libxml/src/triostr.c trio_string_t *self, self 1638 third_party/libxml/src/triostr.c assert(self); self 1641 third_party/libxml/src/triostr.c return trio_contains(self->content, other); self 1652 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1653 third_party/libxml/src/triostr.c trio_string_t *self, self 1656 third_party/libxml/src/triostr.c assert(self); self 1659 third_party/libxml/src/triostr.c self->length = 0; self 1660 third_party/libxml/src/triostr.c return trio_string_append(self, other); self 1671 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1672 third_party/libxml/src/triostr.c trio_string_t *self, self 1675 third_party/libxml/src/triostr.c assert(self); self 1678 third_party/libxml/src/triostr.c self->length = 0; self 1679 third_party/libxml/src/triostr.c return trio_xstring_append(self, other); self 1693 third_party/libxml/src/triostr.c trio_string_t *self; self 1697 third_party/libxml/src/triostr.c self = TrioStringAlloc(); self 1698 third_party/libxml/src/triostr.c if (self) self 1700 third_party/libxml/src/triostr.c self->content = TrioDuplicateMax(other->content, other->length); self 1701 third_party/libxml/src/triostr.c if (self->content) self 1703 third_party/libxml/src/triostr.c self->length = other->length; self 1704 third_party/libxml/src/triostr.c self->allocated = self->length + 1; self 1708 third_party/libxml/src/triostr.c self->length = self->allocated = 0; self 1711 third_party/libxml/src/triostr.c return self; self 1724 third_party/libxml/src/triostr.c trio_string_t *self; self 1728 third_party/libxml/src/triostr.c self = TrioStringAlloc(); self 1729 third_party/libxml/src/triostr.c if (self) self 1731 third_party/libxml/src/triostr.c self->content = TrioDuplicateMax(other, trio_length(other)); self 1732 third_party/libxml/src/triostr.c if (self->content) self 1734 third_party/libxml/src/triostr.c self->length = trio_length(self->content); self 1735 third_party/libxml/src/triostr.c self->allocated = self->length + 1; self 1739 third_party/libxml/src/triostr.c self->length = self->allocated = 0; self 1742 third_party/libxml/src/triostr.c return self; self 1752 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1753 third_party/libxml/src/triostr.c trio_string_t *self, self 1756 third_party/libxml/src/triostr.c assert(self); self 1759 third_party/libxml/src/triostr.c return trio_equal(self->content, other->content); self 1770 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1771 third_party/libxml/src/triostr.c trio_string_t *self, self 1774 third_party/libxml/src/triostr.c assert(self); self 1777 third_party/libxml/src/triostr.c return trio_equal(self->content, other); self 1788 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other), self 1789 third_party/libxml/src/triostr.c trio_string_t *self, self 1793 third_party/libxml/src/triostr.c assert(self); self 1796 third_party/libxml/src/triostr.c return trio_equal_max(self->content, max, other->content); self 1807 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other), self 1808 third_party/libxml/src/triostr.c trio_string_t *self, self 1812 third_party/libxml/src/triostr.c assert(self); self 1815 third_party/libxml/src/triostr.c return trio_equal_max(self->content, max, other); self 1826 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1827 third_party/libxml/src/triostr.c trio_string_t *self, self 1830 third_party/libxml/src/triostr.c assert(self); self 1833 third_party/libxml/src/triostr.c return trio_equal_case(self->content, other->content); self 1844 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1845 third_party/libxml/src/triostr.c trio_string_t *self, self 1848 third_party/libxml/src/triostr.c assert(self); self 1851 third_party/libxml/src/triostr.c return trio_equal_case(self->content, other); self 1862 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other), self 1863 third_party/libxml/src/triostr.c trio_string_t *self, self 1867 third_party/libxml/src/triostr.c assert(self); self 1870 third_party/libxml/src/triostr.c return trio_equal_case_max(self->content, max, other->content); self 1881 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other), self 1882 third_party/libxml/src/triostr.c trio_string_t *self, self 1886 third_party/libxml/src/triostr.c assert(self); self 1889 third_party/libxml/src/triostr.c return trio_equal_case_max(self->content, max, other); self 1900 third_party/libxml/src/triostr.c TRIO_ARGS4((self, max, format, datetime), self 1901 third_party/libxml/src/triostr.c trio_string_t *self, self 1906 third_party/libxml/src/triostr.c assert(self); self 1908 third_party/libxml/src/triostr.c return trio_format_date_max(self->content, max, format, datetime); self 1919 third_party/libxml/src/triostr.c TRIO_ARGS2((self, character), self 1920 third_party/libxml/src/triostr.c trio_string_t *self, self 1923 third_party/libxml/src/triostr.c assert(self); self 1925 third_party/libxml/src/triostr.c return trio_index(self->content, character); self 1936 third_party/libxml/src/triostr.c TRIO_ARGS2((self, character), self 1937 third_party/libxml/src/triostr.c trio_string_t *self, self 1940 third_party/libxml/src/triostr.c assert(self); self 1942 third_party/libxml/src/triostr.c return trio_index_last(self->content, character); self 1953 third_party/libxml/src/triostr.c TRIO_ARGS1((self), self 1954 third_party/libxml/src/triostr.c trio_string_t *self) self 1956 third_party/libxml/src/triostr.c assert(self); self 1958 third_party/libxml/src/triostr.c if (self->length == 0) self 1960 third_party/libxml/src/triostr.c self->length = trio_length(self->content); self 1962 third_party/libxml/src/triostr.c return self->length; self 1973 third_party/libxml/src/triostr.c TRIO_ARGS1((self), self 1974 third_party/libxml/src/triostr.c trio_string_t *self) self 1976 third_party/libxml/src/triostr.c assert(self); self 1978 third_party/libxml/src/triostr.c return trio_lower(self->content); self 1989 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 1990 third_party/libxml/src/triostr.c trio_string_t *self, self 1993 third_party/libxml/src/triostr.c assert(self); self 1996 third_party/libxml/src/triostr.c return trio_match(self->content, other->content); self 2007 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 2008 third_party/libxml/src/triostr.c trio_string_t *self, self 2011 third_party/libxml/src/triostr.c assert(self); self 2014 third_party/libxml/src/triostr.c return trio_match(self->content, other); self 2025 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 2026 third_party/libxml/src/triostr.c trio_string_t *self, self 2029 third_party/libxml/src/triostr.c assert(self); self 2032 third_party/libxml/src/triostr.c return trio_match_case(self->content, other->content); self 2043 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 2044 third_party/libxml/src/triostr.c trio_string_t *self, self 2047 third_party/libxml/src/triostr.c assert(self); self 2050 third_party/libxml/src/triostr.c return trio_match_case(self->content, other); self 2061 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 2062 third_party/libxml/src/triostr.c trio_string_t *self, self 2065 third_party/libxml/src/triostr.c assert(self); self 2068 third_party/libxml/src/triostr.c return trio_substring(self->content, other->content); self 2079 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other), self 2080 third_party/libxml/src/triostr.c trio_string_t *self, self 2083 third_party/libxml/src/triostr.c assert(self); self 2086 third_party/libxml/src/triostr.c return trio_substring(self->content, other); self 2097 third_party/libxml/src/triostr.c TRIO_ARGS1((self), self 2098 third_party/libxml/src/triostr.c trio_string_t *self) self 2100 third_party/libxml/src/triostr.c assert(self); self 2102 third_party/libxml/src/triostr.c return trio_upper(self->content); self 98 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC void trio_string_destroy TRIO_PROTO((trio_string_t *self)); self 99 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_string_extract TRIO_PROTO((trio_string_t *self)); self 100 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_size TRIO_PROTO((trio_string_t *self)); self 101 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC void trio_string_terminate TRIO_PROTO((trio_string_t *self)); self 102 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_append_char TRIO_PROTO((trio_string_t *self, char character)); self 108 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_string_get TRIO_PROTO((trio_string_t *self, int offset)); self 109 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC void trio_xstring_set TRIO_PROTO((trio_string_t *self, char *buffer)); self 111 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_append TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 112 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_contains TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 113 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_copy TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 115 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_equal TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 116 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_equal_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *second)); self 117 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_equal_case TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 118 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *other)); self 120 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC size_t trio_string_format_date_max TRIO_PROTO((trio_string_t *self, size_t max, const char *format, const struct tm *datetime)); self 122 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_string_index TRIO_PROTO((trio_string_t *self, int character)); self 123 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_string_index_last TRIO_PROTO((trio_string_t *self, int character)); self 124 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_length TRIO_PROTO((trio_string_t *self)); self 125 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_lower TRIO_PROTO((trio_string_t *self)); self 126 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_match TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 127 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_match_case TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 128 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_string_substring TRIO_PROTO((trio_string_t *self, trio_string_t *other)); self 129 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_upper TRIO_PROTO((trio_string_t *self)); self 131 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_append TRIO_PROTO((trio_string_t *self, const char *other)); self 132 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_contains TRIO_PROTO((trio_string_t *self, const char *other)); self 133 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_copy TRIO_PROTO((trio_string_t *self, const char *other)); self 134 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal TRIO_PROTO((trio_string_t *self, const char *other)); self 135 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal_max TRIO_PROTO((trio_string_t *self, size_t max, const char *other)); self 136 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal_case TRIO_PROTO((trio_string_t *self, const char *other)); self 137 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, const char *other)); self 138 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_match TRIO_PROTO((trio_string_t *self, const char *other)); self 139 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_match_case TRIO_PROTO((trio_string_t *self, const char *other)); self 140 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_xstring_substring TRIO_PROTO((trio_string_t *self, const char *other)); self 127 third_party/libxslt/libxslt/numbers.c #define IS_SPECIAL(self,letter) \ self 128 third_party/libxslt/libxslt/numbers.c ((xsltUTF8Charcmp((letter), (self)->zeroDigit) == 0) || \ self 129 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp((letter), (self)->digit) == 0) || \ self 130 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp((letter), (self)->decimalPoint) == 0) || \ self 131 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp((letter), (self)->grouping) == 0) || \ self 132 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp((letter), (self)->patternSeparator) == 0)) self 852 third_party/libxslt/libxslt/numbers.c xsltFormatNumberPreSuffix(xsltDecimalFormatPtr self, xmlChar **format, xsltFormatNumberInfoPtr info) self 869 third_party/libxslt/libxslt/numbers.c else if (IS_SPECIAL(self, *format)) self 880 third_party/libxslt/libxslt/numbers.c if (xsltUTF8Charcmp(*format, self->percent) == 0) { self 885 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(*format, self->permille) == 0) { self 943 third_party/libxslt/libxslt/numbers.c xsltFormatNumberConversion(xsltDecimalFormatPtr self, self 976 third_party/libxslt/libxslt/numbers.c if (self->minusSign == NULL) self 979 third_party/libxslt/libxslt/numbers.c *result = xmlStrdup(self->minusSign); self 982 third_party/libxslt/libxslt/numbers.c if ((self == NULL) || (self->infinity == NULL)) self 985 third_party/libxslt/libxslt/numbers.c *result = xmlStrcat(*result, self->infinity); self 989 third_party/libxslt/libxslt/numbers.c if ((self == NULL) || (self->noNumber == NULL)) self 992 third_party/libxslt/libxslt/numbers.c *result = xmlStrdup(self->noNumber); self 1019 third_party/libxslt/libxslt/numbers.c prefix_length = xsltFormatNumberPreSuffix(self, &the_format, &format_info); self 1032 third_party/libxslt/libxslt/numbers.c self_grouping_len = xmlStrlen(self->grouping); self 1034 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp(the_format, self->decimalPoint) != 0) && self 1035 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp(the_format, self->patternSeparator) != 0)) { self 1042 third_party/libxslt/libxslt/numbers.c if (xsltUTF8Charcmp(the_format, self->digit) == 0) { self 1050 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(the_format, self->zeroDigit) == 0) { self 1055 third_party/libxslt/libxslt/numbers.c (!xmlStrncmp(the_format, self->grouping, self_grouping_len))) { self 1060 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(the_format, self->percent) == 0) { self 1066 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(the_format, self->permille) == 0) { self 1084 third_party/libxslt/libxslt/numbers.c if (xsltUTF8Charcmp(the_format, self->decimalPoint) == 0) { self 1091 third_party/libxslt/libxslt/numbers.c if (xsltUTF8Charcmp(the_format, self->zeroDigit) == 0) { self 1097 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(the_format, self->digit) == 0) { self 1099 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(the_format, self->percent) == 0) { self 1111 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(the_format, self->permille) == 0) { self 1123 third_party/libxslt/libxslt/numbers.c } else if (xsltUTF8Charcmp(the_format, self->grouping) != 0) { self 1148 third_party/libxslt/libxslt/numbers.c suffix_length = xsltFormatNumberPreSuffix(self, &the_format, &format_info); self 1151 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp(the_format, self->patternSeparator) != 0)) ) { self 1165 third_party/libxslt/libxslt/numbers.c j = xmlUTF8Strloc(format, self->patternSeparator); self 1182 third_party/libxslt/libxslt/numbers.c nprefix_length = xsltFormatNumberPreSuffix(self, self 1190 third_party/libxslt/libxslt/numbers.c if ( (xsltUTF8Charcmp(the_format, (self)->percent) == 0) || self 1191 third_party/libxslt/libxslt/numbers.c (xsltUTF8Charcmp(the_format, (self)->permille)== 0) ) { self 1199 third_party/libxslt/libxslt/numbers.c else if (IS_SPECIAL(self, the_format)) self 1217 third_party/libxslt/libxslt/numbers.c nsuffix_length = xsltFormatNumberPreSuffix(self, self 1269 third_party/libxslt/libxslt/numbers.c xmlBufferAdd(buffer, self->minusSign, xsltUTF8Size(self->minusSign)); self 1286 third_party/libxslt/libxslt/numbers.c if ((self->grouping != NULL) && self 1287 third_party/libxslt/libxslt/numbers.c (self->grouping[0] != 0)) { self 1289 third_party/libxslt/libxslt/numbers.c len = xmlStrlen(self->grouping); self 1290 third_party/libxslt/libxslt/numbers.c pchar = xsltGetUTF8Char(self->grouping, &len); self 1291 third_party/libxslt/libxslt/numbers.c xsltNumberFormatDecimal(buffer, floor(number), self->zeroDigit[0], self 1296 third_party/libxslt/libxslt/numbers.c xsltNumberFormatDecimal(buffer, floor(number), self->zeroDigit[0], self 1311 third_party/libxslt/libxslt/numbers.c xmlBufferAdd(buffer, self->zeroDigit, xsltUTF8Size(self->zeroDigit)); self 1317 third_party/libxslt/libxslt/numbers.c xmlBufferAdd(buffer, self->decimalPoint, self 1318 third_party/libxslt/libxslt/numbers.c xsltUTF8Size(self->decimalPoint)); self 1323 third_party/libxslt/libxslt/numbers.c xmlBufferAdd(buffer, self->decimalPoint, self 1324 third_party/libxslt/libxslt/numbers.c xsltUTF8Size(self->decimalPoint)); self 1331 third_party/libxslt/libxslt/numbers.c xsltNumberFormatDecimal(buffer, floor(number), self->zeroDigit[0], self 276 third_party/libxslt/libxslt/xslt.c xsltDecimalFormatPtr self; self 280 third_party/libxslt/libxslt/xslt.c self = xmlMalloc(sizeof(xsltDecimalFormat)); self 281 third_party/libxslt/libxslt/xslt.c if (self != NULL) { self 282 third_party/libxslt/libxslt/xslt.c self->next = NULL; self 283 third_party/libxslt/libxslt/xslt.c self->name = name; self 286 third_party/libxslt/libxslt/xslt.c self->digit = xmlStrdup(BAD_CAST("#")); self 287 third_party/libxslt/libxslt/xslt.c self->patternSeparator = xmlStrdup(BAD_CAST(";")); self 288 third_party/libxslt/libxslt/xslt.c self->decimalPoint = xmlStrdup(BAD_CAST(".")); self 289 third_party/libxslt/libxslt/xslt.c self->grouping = xmlStrdup(BAD_CAST(",")); self 290 third_party/libxslt/libxslt/xslt.c self->percent = xmlStrdup(BAD_CAST("%")); self 291 third_party/libxslt/libxslt/xslt.c self->permille = xmlStrdup(BAD_CAST(permille)); self 292 third_party/libxslt/libxslt/xslt.c self->zeroDigit = xmlStrdup(BAD_CAST("0")); self 293 third_party/libxslt/libxslt/xslt.c self->minusSign = xmlStrdup(BAD_CAST("-")); self 294 third_party/libxslt/libxslt/xslt.c self->infinity = xmlStrdup(BAD_CAST("Infinity")); self 295 third_party/libxslt/libxslt/xslt.c self->noNumber = xmlStrdup(BAD_CAST("NaN")); self 297 third_party/libxslt/libxslt/xslt.c return self; self 301 third_party/libxslt/libxslt/xslt.c xsltFreeDecimalFormat(xsltDecimalFormatPtr self) self 303 third_party/libxslt/libxslt/xslt.c if (self != NULL) { self 304 third_party/libxslt/libxslt/xslt.c if (self->digit) self 305 third_party/libxslt/libxslt/xslt.c xmlFree(self->digit); self 306 third_party/libxslt/libxslt/xslt.c if (self->patternSeparator) self 307 third_party/libxslt/libxslt/xslt.c xmlFree(self->patternSeparator); self 308 third_party/libxslt/libxslt/xslt.c if (self->decimalPoint) self 309 third_party/libxslt/libxslt/xslt.c xmlFree(self->decimalPoint); self 310 third_party/libxslt/libxslt/xslt.c if (self->grouping) self 311 third_party/libxslt/libxslt/xslt.c xmlFree(self->grouping); self 312 third_party/libxslt/libxslt/xslt.c if (self->percent) self 313 third_party/libxslt/libxslt/xslt.c xmlFree(self->percent); self 314 third_party/libxslt/libxslt/xslt.c if (self->permille) self 315 third_party/libxslt/libxslt/xslt.c xmlFree(self->permille); self 316 third_party/libxslt/libxslt/xslt.c if (self->zeroDigit) self 317 third_party/libxslt/libxslt/xslt.c xmlFree(self->zeroDigit); self 318 third_party/libxslt/libxslt/xslt.c if (self->minusSign) self 319 third_party/libxslt/libxslt/xslt.c xmlFree(self->minusSign); self 320 third_party/libxslt/libxslt/xslt.c if (self->infinity) self 321 third_party/libxslt/libxslt/xslt.c xmlFree(self->infinity); self 322 third_party/libxslt/libxslt/xslt.c if (self->noNumber) self 323 third_party/libxslt/libxslt/xslt.c xmlFree(self->noNumber); self 324 third_party/libxslt/libxslt/xslt.c if (self->name) self 325 third_party/libxslt/libxslt/xslt.c xmlFree(self->name); self 326 third_party/libxslt/libxslt/xslt.c xmlFree(self); self 331 third_party/libxslt/libxslt/xslt.c xsltFreeDecimalFormatList(xsltStylesheetPtr self) self 336 third_party/libxslt/libxslt/xslt.c if (self == NULL) self 339 third_party/libxslt/libxslt/xslt.c iter = self->decimalFormat; self 1863 third_party/libxslt/libxslt/xsltInternals.h xsltFormatNumberConversion(xsltDecimalFormatPtr self, self 118 third_party/markupsafe/_speedups.c escape(PyObject *self, PyObject *text) self 163 third_party/markupsafe/_speedups.c escape_silent(PyObject *self, PyObject *text) self 166 third_party/markupsafe/_speedups.c return escape(self, text); self 172 third_party/markupsafe/_speedups.c soft_unicode(PyObject *self, PyObject *s) self 63 third_party/ocmock/OCMock/OCMConstraint.h #define CONSTRAINT(aSelector) [OCMConstraint constraintWithSelector:aSelector onObject:self] self 64 third_party/ocmock/OCMock/OCMConstraint.h #define CONSTRAINTV(aSelector, aValue) [OCMConstraint constraintWithSelector:aSelector onObject:self withValue:(aValue)] self 147 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static void CMessageDealloc(CMessage* self); self 148 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static int CMessageInit(CMessage* self, PyObject *args, PyObject *kwds); self 149 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessageStr(CMessage* self); self 151 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AddMessage(CMessage* self, PyObject* args); self 152 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AddRepeatedScalar(CMessage* self, PyObject* args); self 153 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AssignRepeatedScalar(CMessage* self, PyObject* args); self 154 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ByteSize(CMessage* self, PyObject* args); self 155 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_Clear(CMessage* self, PyObject* args); self 156 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ClearField(CMessage* self, PyObject* args); self 158 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc CMessage* self, PyObject* args); self 159 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_CopyFrom(CMessage* self, PyObject* args); self 160 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DebugString(CMessage* self, PyObject* args); self 161 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DeleteRepeatedField(CMessage* self, PyObject* args); self 162 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_Equals(CMessage* self, PyObject* args); self 163 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_FieldLength(CMessage* self, PyObject* args); self 164 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_FindInitializationErrors(CMessage* self); self 165 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedMessage(CMessage* self, PyObject* args); self 166 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedScalar(CMessage* self, PyObject* args); self 167 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetScalar(CMessage* self, PyObject* args); self 168 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_HasField(CMessage* self, PyObject* args); self 169 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_HasFieldByDescriptor(CMessage* self, PyObject* args); self 170 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_IsInitialized(CMessage* self, PyObject* args); self 171 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ListFields(CMessage* self, PyObject* args); self 172 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MergeFrom(CMessage* self, PyObject* args); self 173 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MergeFromString(CMessage* self, PyObject* args); self 174 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MutableMessage(CMessage* self, PyObject* args); self 175 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_NewSubMessage(CMessage* self, PyObject* args); self 176 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetScalar(CMessage* self, PyObject* args); self 178 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc CMessage* self, PyObject* args); self 179 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SerializeToString(CMessage* self, PyObject* args); self 180 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetInParent(CMessage* self, PyObject* args); self 182 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc CMessage* self, PyObject* args); self 509 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static void AssureWritable(CMessage* self) { self 510 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc if (self == NULL || self 511 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->parent == NULL || self 512 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->parent_field == NULL) { self 516 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc if (!self->read_only) { self 520 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self->parent); self 522 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->parent->message; self 524 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message = reflection->MutableMessage( self 525 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc message, self->parent_field->descriptor, global_message_factory); self 526 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->read_only = false; self 959 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static int CMessageInit(CMessage* self, PyObject *args, PyObject *kwds) { self 960 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message = NULL; self 964 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static void CMessageDealloc(CMessage* self) { self 965 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc if (self->free_message) { self 966 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc if (self->read_only) { self 967 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc PyErr_WriteUnraisable(reinterpret_cast<PyObject*>(self)); self 969 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc delete self->message; self 971 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->ob_type->tp_free(reinterpret_cast<PyObject*>(self)); self 976 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_Clear(CMessage* self, PyObject* arg) { self 977 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 978 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1014 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_IsInitialized(CMessage* self, PyObject* args) { self 1015 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc return PyBool_FromLong(self->message->IsInitialized() ? 1 : 0); self 1018 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_HasField(CMessage* self, PyObject* arg) { self 1024 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1038 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_HasFieldByDescriptor(CMessage* self, PyObject* arg) { self 1047 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1069 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc CMessage* self, PyObject* arg) { self 1078 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1092 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ClearField(CMessage* self, PyObject* args) { self 1100 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1117 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetScalar(CMessage* self, PyObject* arg) { self 1126 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1130 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedScalar(CMessage* self, PyObject* args) { self 1139 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self, cfield_descriptor->descriptor, slice); self 1142 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AssignRepeatedScalar(CMessage* self, PyObject* args) { self 1150 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1151 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1169 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DeleteRepeatedField(CMessage* self, PyObject* args) { self 1176 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1179 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1242 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetScalar(CMessage* self, PyObject* args) { self 1249 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1251 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc return InternalSetScalar(self->message, cfield_descriptor->descriptor, arg); self 1254 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AddRepeatedScalar(CMessage* self, PyObject* args) { self 1261 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1264 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message, cfield_descriptor->descriptor, value); self 1267 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_FieldLength(CMessage* self, PyObject* arg) { self 1276 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1282 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DebugString(CMessage* self, PyObject* args) { self 1283 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc return PyString_FromString(self->message->DebugString().c_str()); self 1286 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SerializeToString(CMessage* self, PyObject* args) { self 1287 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc int size = self->message->ByteSize(); self 1296 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->SerializeWithCachedSizesToArray( self 1302 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc CMessage* self, PyObject* args) { self 1304 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->SerializePartialToString(&contents); self 1308 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessageStr(CMessage* self) { self 1311 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc snprintf(str, sizeof(str) - 1, "CMessage: <%p>", self->message); self 1315 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MergeFrom(CMessage* self, PyObject* arg) { self 1324 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->GetDescriptor()) { self 1328 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->GetDescriptor()->full_name().c_str(), self 1332 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1334 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->MergeFrom(*other_message->message); self 1338 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_CopyFrom(CMessage* self, PyObject* arg) { self 1347 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->GetDescriptor()) { self 1351 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->GetDescriptor()->full_name().c_str(), self 1356 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1358 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->CopyFrom(*other_message->message); self 1362 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MergeFromString(CMessage* self, PyObject* arg) { self 1369 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1373 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc bool success = self->message->MergePartialFromCodedStream(&input); self 1375 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc return PyInt_FromLong(self->message->ByteSize()); self 1381 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ByteSize(CMessage* self, PyObject* args) { self 1382 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc return PyLong_FromLong(self->message->ByteSize()); self 1385 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetInParent(CMessage* self, PyObject* args) { self 1386 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1391 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc CMessage* self, PyObject* args) { self 1400 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1408 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AddMessage(CMessage* self, PyObject* arg) { self 1416 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1423 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1436 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedMessage(CMessage* self, PyObject* args) { self 1445 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self, cfield_descriptor->descriptor, slice); self 1448 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_NewSubMessage(CMessage* self, PyObject* arg) { self 1462 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1469 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc py_cmsg->parent = self; self 1477 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MutableMessage(CMessage* self, PyObject* arg) { self 1485 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc AssureWritable(self); self 1492 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1505 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_Equals(CMessage* self, PyObject* arg) { self 1513 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc if (other_message->message == self->message) { self 1518 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc self->message->GetDescriptor()) { self 1525 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ListFields(CMessage* self, PyObject* args) { self 1526 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 1568 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_FindInitializationErrors(CMessage* self) { self 1569 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc google::protobuf::Message* message = self->message; self 46 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc static void CFieldDescriptorDealloc(CFieldDescriptor* self); self 51 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc CFieldDescriptor* self, void *closure) { self 52 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_XINCREF(self->full_name); self 53 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc return self->full_name; self 57 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc CFieldDescriptor *self, void *closure) { self 58 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_XINCREF(self->name); self 59 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc return self->name; self 63 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc CFieldDescriptor *self, void *closure) { self 64 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_XINCREF(self->cpp_type); self 65 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc return self->cpp_type; self 69 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc CFieldDescriptor *self, void *closure) { self 70 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_XINCREF(self->label); self 71 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc return self->label; self 75 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc CFieldDescriptor *self, void *closure) { self 76 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_XINCREF(self->id); self 77 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc return self->id; self 140 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc static void CFieldDescriptorDealloc(CFieldDescriptor* self) { self 141 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_DECREF(self->full_name); self 142 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_DECREF(self->name); self 143 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_DECREF(self->cpp_type); self 144 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_DECREF(self->label); self 145 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc Py_DECREF(self->id); self 146 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc self->ob_type->tp_free(reinterpret_cast<PyObject*>(self)); self 155 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc static void CDescriptorPoolDealloc(CDescriptorPool* self); self 177 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc CDescriptorPool* self, PyObject* arg) { self 185 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc field_descriptor = self->pool->FindFieldByName(full_field_name); self 198 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc CDescriptorPool* self, PyObject* arg) { self 205 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc self->pool->FindExtensionByName(full_field_name); self 272 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc static void CDescriptorPoolDealloc(CDescriptorPool* self) { self 273 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc self->ob_type->tp_free(reinterpret_cast<PyObject*>(self)); self 119 third_party/simplejson/_speedups.c py_encode_basestring_ascii(PyObject* self UNUSED, PyObject *pystr); self 130 third_party/simplejson/_speedups.c scanner_init(PyObject *self, PyObject *args, PyObject *kwds); self 132 third_party/simplejson/_speedups.c scanner_dealloc(PyObject *self); self 134 third_party/simplejson/_speedups.c scanner_clear(PyObject *self); self 138 third_party/simplejson/_speedups.c encoder_init(PyObject *self, PyObject *args, PyObject *kwds); self 140 third_party/simplejson/_speedups.c encoder_dealloc(PyObject *self); self 142 third_party/simplejson/_speedups.c encoder_clear(PyObject *self); self 923 third_party/simplejson/_speedups.c py_scanstring(PyObject* self UNUSED, PyObject *args) self 959 third_party/simplejson/_speedups.c py_encode_basestring_ascii(PyObject* self UNUSED, PyObject *pystr) self 978 third_party/simplejson/_speedups.c scanner_dealloc(PyObject *self) self 981 third_party/simplejson/_speedups.c scanner_clear(self); self 982 third_party/simplejson/_speedups.c Py_TYPE(self)->tp_free(self); self 986 third_party/simplejson/_speedups.c scanner_traverse(PyObject *self, visitproc visit, void *arg) self 989 third_party/simplejson/_speedups.c assert(PyScanner_Check(self)); self 990 third_party/simplejson/_speedups.c s = (PyScannerObject *)self; self 1003 third_party/simplejson/_speedups.c scanner_clear(PyObject *self) self 1006 third_party/simplejson/_speedups.c assert(PyScanner_Check(self)); self 1007 third_party/simplejson/_speedups.c s = (PyScannerObject *)self; self 1883 third_party/simplejson/_speedups.c scanner_call(PyObject *self, PyObject *args, PyObject *kwds) self 1892 third_party/simplejson/_speedups.c assert(PyScanner_Check(self)); self 1893 third_party/simplejson/_speedups.c s = (PyScannerObject *)self; self 1931 third_party/simplejson/_speedups.c scanner_init(PyObject *self, PyObject *args, PyObject *kwds) self 1938 third_party/simplejson/_speedups.c assert(PyScanner_Check(self)); self 1939 third_party/simplejson/_speedups.c s = (PyScannerObject *)self; self 2067 third_party/simplejson/_speedups.c encoder_init(PyObject *self, PyObject *args, PyObject *kwds) self 2078 third_party/simplejson/_speedups.c assert(PyEncoder_Check(self)); self 2079 third_party/simplejson/_speedups.c s = (PyEncoderObject *)self; self 2121 third_party/simplejson/_speedups.c encoder_call(PyObject *self, PyObject *args, PyObject *kwds) self 2129 third_party/simplejson/_speedups.c assert(PyEncoder_Check(self)); self 2130 third_party/simplejson/_speedups.c s = (PyEncoderObject *)self; self 2620 third_party/simplejson/_speedups.c encoder_dealloc(PyObject *self) self 2623 third_party/simplejson/_speedups.c encoder_clear(self); self 2624 third_party/simplejson/_speedups.c Py_TYPE(self)->tp_free(self); self 2628 third_party/simplejson/_speedups.c encoder_traverse(PyObject *self, visitproc visit, void *arg) self 2631 third_party/simplejson/_speedups.c assert(PyEncoder_Check(self)); self 2632 third_party/simplejson/_speedups.c s = (PyEncoderObject *)self; self 2647 third_party/simplejson/_speedups.c encoder_clear(PyObject *self) self 2651 third_party/simplejson/_speedups.c assert(PyEncoder_Check(self)); self 2652 third_party/simplejson/_speedups.c s = (PyEncoderObject *)self; self 17242 third_party/sqlite/amalgamation/sqlite3.c pthread_t self = pthread_self(); self 17243 third_party/sqlite/amalgamation/sqlite3.c if( p->nRef>0 && pthread_equal(p->owner, self) ){ self 17248 third_party/sqlite/amalgamation/sqlite3.c p->owner = self; self 17285 third_party/sqlite/amalgamation/sqlite3.c pthread_t self = pthread_self(); self 17286 third_party/sqlite/amalgamation/sqlite3.c if( p->nRef>0 && pthread_equal(p->owner, self) ){ self 17291 third_party/sqlite/amalgamation/sqlite3.c p->owner = self; self 223 third_party/sqlite/src/src/mutex_unix.c pthread_t self = pthread_self(); self 224 third_party/sqlite/src/src/mutex_unix.c if( p->nRef>0 && pthread_equal(p->owner, self) ){ self 229 third_party/sqlite/src/src/mutex_unix.c p->owner = self; self 266 third_party/sqlite/src/src/mutex_unix.c pthread_t self = pthread_self(); self 267 third_party/sqlite/src/src/mutex_unix.c if( p->nRef>0 && pthread_equal(p->owner, self) ){ self 272 third_party/sqlite/src/src/mutex_unix.c p->owner = self; self 27 third_party/talloc/pytalloc.c void py_talloc_dealloc(PyObject* self) self 29 third_party/talloc/pytalloc.c py_talloc_Object *obj = (py_talloc_Object *)self; self 32 third_party/talloc/pytalloc.c self->ob_type->tp_free(self); self 33 third_party/talloc/pytalloc.h void py_talloc_dealloc(PyObject* self); self 23 third_party/tlslite/tlslite/utils/entropy.c static PyObject* entropy(PyObject *self, PyObject *args) self 104 third_party/tlslite/tlslite/utils/entropy.c static PyObject* entropy(PyObject *self, PyObject *args) self 149 third_party/tlslite/tlslite/utils/entropy.c static PyObject* entropy(PyObject *self, PyObject *args) self 7 third_party/tlslite/tlslite/utils/win32prng.c static PyObject* getRandomBytes(PyObject *self, PyObject *args) self 31 third_party/v4l2capture/v4l2capture.c #define ASSERT_OPEN if(self->fd < 0) \ self 95 third_party/v4l2capture/v4l2capture.c static void Video_device_unmap(Video_device *self) self 99 third_party/v4l2capture/v4l2capture.c for(i = 0; i < self->buffer_count; i++) self 101 third_party/v4l2capture/v4l2capture.c v4l2_munmap(self->buffers[i].start, self->buffers[i].length); self 103 third_party/v4l2capture/v4l2capture.c free(self->buffers); self 104 third_party/v4l2capture/v4l2capture.c self->buffers = NULL; self 107 third_party/v4l2capture/v4l2capture.c static void Video_device_dealloc(Video_device *self) self 109 third_party/v4l2capture/v4l2capture.c if(self->fd >= 0) self 111 third_party/v4l2capture/v4l2capture.c if(self->buffers) self 113 third_party/v4l2capture/v4l2capture.c Video_device_unmap(self); self 116 third_party/v4l2capture/v4l2capture.c v4l2_close(self->fd); self 119 third_party/v4l2capture/v4l2capture.c self->ob_type->tp_free((PyObject *)self); self 122 third_party/v4l2capture/v4l2capture.c static int Video_device_init(Video_device *self, PyObject *args, self 140 third_party/v4l2capture/v4l2capture.c self->fd = fd; self 141 third_party/v4l2capture/v4l2capture.c self->buffers = NULL; self 142 third_party/v4l2capture/v4l2capture.c self->buffer_count = 0; self 146 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_close(Video_device *self) self 148 third_party/v4l2capture/v4l2capture.c if(self->fd >= 0) self 150 third_party/v4l2capture/v4l2capture.c if(self->buffers) self 152 third_party/v4l2capture/v4l2capture.c Video_device_unmap(self); self 155 third_party/v4l2capture/v4l2capture.c v4l2_close(self->fd); self 156 third_party/v4l2capture/v4l2capture.c self->fd = -1; self 162 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_fileno(Video_device *self) self 165 third_party/v4l2capture/v4l2capture.c return PyInt_FromLong(self->fd); self 168 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_get_info(Video_device *self) self 173 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_QUERYCAP, &caps)) self 208 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_set_format(Video_device *self, PyObject *args) self 225 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_S_FMT, &format)) self 233 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_set_fps(Video_device *self, PyObject *args) self 245 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_S_PARM, &setfps)){ self 251 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_start(Video_device *self) self 257 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_STREAMON, &type)) self 265 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_stop(Video_device *self) self 271 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_STREAMOFF, &type)) self 279 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_create_buffers(Video_device *self, PyObject *args) self 290 third_party/v4l2capture/v4l2capture.c if(self->buffers) self 301 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_REQBUFS, &reqbuf)) self 312 third_party/v4l2capture/v4l2capture.c self->buffers = malloc(reqbuf.count * sizeof(struct buffer)); self 314 third_party/v4l2capture/v4l2capture.c if(!self->buffers) self 329 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_QUERYBUF, &buffer)) self 334 third_party/v4l2capture/v4l2capture.c self->buffers[i].length = buffer.length; self 335 third_party/v4l2capture/v4l2capture.c self->buffers[i].start = v4l2_mmap(NULL, buffer.length, self 336 third_party/v4l2capture/v4l2capture.c PROT_READ | PROT_WRITE, MAP_SHARED, self->fd, buffer.m.offset); self 338 third_party/v4l2capture/v4l2capture.c if(self->buffers[i].start == MAP_FAILED) self 341 third_party/v4l2capture/v4l2capture.c Video_device_unmap(self); self 344 third_party/v4l2capture/v4l2capture.c ++self->buffer_count; self 350 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_queue_all_buffers(Video_device *self) self 352 third_party/v4l2capture/v4l2capture.c if(!self->buffers) self 360 third_party/v4l2capture/v4l2capture.c int buffer_count = self->buffer_count; self 369 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_QBUF, &buffer)) self 378 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_read_internal(Video_device *self, int queue) self 380 third_party/v4l2capture/v4l2capture.c if(!self->buffers) self 391 third_party/v4l2capture/v4l2capture.c if(my_ioctl(self->fd, VIDIOC_DQBUF, &buffer)) self 397 third_party/v4l2capture/v4l2capture.c self->buffers[buffer.index].start, buffer.bytesused); self 404 third_party/v4l2capture/v4l2capture.c if(queue && my_ioctl(self->fd, VIDIOC_QBUF, &buffer)) self 412 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_read(Video_device *self) self 414 third_party/v4l2capture/v4l2capture.c return Video_device_read_internal(self, 0); self 417 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_read_and_queue(Video_device *self) self 419 third_party/v4l2capture/v4l2capture.c return Video_device_read_internal(self, 1); self 518 tools/clang/plugins/FindBadConstructs.cpp FindBadConstructsConsumer* self = self 538 tools/clang/plugins/FindBadConstructs.cpp self->GetNamespace(decl) == "base") { self 56 ui/aura/window_event_dispatcher_unittest.cc NonClientDelegate* self = const_cast<NonClientDelegate*>(this); self 57 ui/aura/window_event_dispatcher_unittest.cc self->non_client_count_++; self 58 ui/aura/window_event_dispatcher_unittest.cc self->non_client_location_ = location;