Searched refs:size_type (Results 1 - 25 of 470) sorted by path

1234567891011>>

/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h89 typedef size_t size_type; typedef in class:ceres::internal::FixedArray
98 explicit FixedArray(size_type n);
104 inline size_type size() const { return size_; }
115 inline T& operator[](size_type i) {
122 inline const T& operator[](size_type i) const {
148 static const size_type S1 = ((inline_elements < 0)
150 static const size_type S2 = (S1 <= 0) ? 1 : S1;
151 static const size_type kInlineElements = S2;
153 size_type const size_;
164 inline FixedArray<T, S>::FixedArray(typename FixedArray<T, S>::size_type
[all...]
/external/ceres-solver/internal/ceres/
H A Dsplit.cc96 string::size_type begin_index, end_index;
/external/chromium_org/base/containers/
H A Dmru_cache.h56 typedef typename PayloadList::size_type size_type; typedef in class:base::MRUCacheBase
69 explicit MRUCacheBase(size_type max_size) : max_size_(max_size) {
72 MRUCacheBase(size_type max_size, const DeletorType& deletor)
82 size_type max_size() const { return max_size_; }
159 void ShrinkToSize(size_type new_size) {
160 for (size_type i = size(); i > new_size; i--)
174 size_type size() const {
203 size_type max_size_;
232 explicit MRUCache(typename ParentType::size_type max_siz
[all...]
H A Dmru_cache_unittest.cc233 static const Cache::size_type kMaxSize = 3;
H A Dstack_container.h40 typedef typename std::allocator<T>::size_type size_type; typedef in class:base::StackAllocator
106 pointer allocate(size_type n, void* hint = 0) {
118 void deallocate(pointer p, size_type n) {
/external/chromium_org/base/debug/
H A Ddebugger_posix.cc151 StringPiece::size_type pid_index = status.find(tracer);
H A Dstack_trace_posix.cc78 std::string::size_type search_from = 0;
81 std::string::size_type mangled_start =
88 std::string::size_type mangled_end =
H A Dtrace_event_android.cc41 std::string::size_type value_start = out.length();
/external/chromium_org/base/files/
H A Dfile_path.cc48 StringType::size_type FindDriveLetter(const StringType& path) {
83 StringType::size_type letter = FindDriveLetter(path);
111 StringType::size_type FinalExtensionSeparatorPosition(const StringType& path) {
123 StringType::size_type ExtensionSeparatorPosition(const StringType& path) {
124 const StringType::size_type last_dot = FinalExtensionSeparatorPosition(path);
130 const StringType::size_type penultimate_dot =
132 const StringType::size_type last_separator =
181 StringType::size_type nul_pos = path_.find(kStringTerminator);
248 StringType::size_type letter = FindDriveLetter(dir.value());
316 StringType::size_type lette
[all...]
H A Dfile_util.cc111 std::string::size_type end1 = line1.find_last_not_of("\r\n");
117 std::string::size_type end2 = line2.find_last_not_of("\r\n");
/external/chromium_org/base/
H A Dlogging.cc169 PathString::size_type last_backslash =
H A Dvlog.cc38 std::string::size_type first_slash = pattern.find_first_of("\\/");
90 base::StringPiece::size_type last_slash_pos =
94 base::StringPiece::size_type extension_start = module.rfind('.');
/external/chromium_org/base/memory/
H A Dscoped_vector.h23 typedef typename std::vector<T*>::size_type size_type; typedef in class:ScopedVector
/external/chromium_org/base/strings/
H A Dstring_piece.h165 typedef size_t size_type; typedef in class:base::BasicStringPiece
174 static const size_type npos;
186 BasicStringPiece(const value_type* offset, size_type len)
191 length_((end > begin) ? (size_type)(end - begin) : 0) {}
198 size_type size() const { return length_; }
199 size_type length() const { return length_; }
206 void set(const value_type* data, size_type len) {
215 value_type operator[](size_type i) const { return ptr_[i]; }
217 void remove_prefix(size_type n) {
222 void remove_suffix(size_type
[all...]
H A Dstring_piece_unittest.cc678 static_cast<typename BasicStringPiece<TypeParam>::size_type>(0)));
681 static_cast<typename BasicStringPiece<TypeParam>::size_type>(0)));
H A Dstring_split.cc69 typename STR::size_type begin_index = 0;
71 const typename STR::size_type end_index = str.find(s, begin_index);
H A Dstring_util_unittest.cc424 EXPECT_EQ(static_cast<std::wstring::size_type>(length_with_nul),
427 EXPECT_EQ(static_cast<std::string::size_type>(length_with_nul),
513 string16::size_type start_offset;
544 string16::size_type start_offset;
/external/chromium_org/base/win/
H A Di18n_unittest.cc20 EXPECT_NE(static_cast<std::vector<std::wstring>::size_type>(0),
32 EXPECT_NE(static_cast<std::vector<std::wstring>::size_type>(0),
/external/chromium_org/chrome/app/
H A Dchrome_main_delegate.cc149 std::wstring::size_type pos = command_line_lower.find(kChromeHtml);
/external/chromium_org/chrome/browser/browsing_data/
H A Dcookies_tree_model.cc90 std::string::size_type position = host.rfind(retval);
106 std::string::size_type next_dot = host.rfind(".", position - 1);
/external/chromium_org/chrome/browser/
H A Dchrome_content_browser_client.cc354 const std::string::size_type separator = old_path.find('/', 1);
/external/chromium_org/chrome/browser/chromeos/options/
H A Dvpn_config_view.cc315 base::string16::size_type n = server.find_first_of(L'.');
/external/chromium_org/chrome/browser/chromeos/settings/
H A Dcros_settings.cc209 std::string::size_type at_pos = canonicalized_email.find('@');
/external/chromium_org/chrome/browser/chromeos/system/
H A Dtimezone_util.cc76 std::string::size_type slash_pos = zone_id_str.rfind('/');
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_database_unittest.cc83 std::vector<scoped_refptr<Action> >::size_type i;

Completed in 3888 milliseconds

1234567891011>>