Searched refs:value_type (Results 1 - 25 of 768) sorted by path

1234567891011>>

/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp243 const char* value_type = value->Attribute(BLUEDROID_VALUE_TYPE); local
245 // value->Name(), section_name, key_name, value_name, value_type);
246 int type = type_str2int(value_type);
250 //debug("value_name:%s, value_str:%s, value_type:%s, type:%x",
251 // value_name, value_str, value_type, type);
272 else error("Unsupported value:%s, type:%s not loaded", value_name, value_type);
282 const char* name_tag, const char* value_type = NULL)
288 //debug("ele name:%s, tag:%s, index:%d, value type:%s", ele_name, name_tag, index, value_type);
290 if(value_type && *value_type)
[all...]
H A Dbtif_gatt_util.c255 p_dest->value_type = GATTC_READ_VALUE_TYPE_AGG_FORMAT;
275 p_dest->value_type = GATTC_READ_VALUE_TYPE_VALUE;
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h82 typedef T value_type; typedef in class:ceres::internal::FixedArray
/external/ceres-solver/internal/ceres/
H A Dmap_util.h58 const typename Collection::value_type::second_type&
60 const typename Collection::value_type::first_type& key) {
70 const typename Collection::value_type::second_type&
72 const typename Collection::value_type::first_type& key,
73 const typename Collection::value_type::second_type& value) {
88 const typename Collection::value_type::first_type& key,
89 const typename Collection::value_type::second_type& value) {
91 collection->insert(typename Collection::value_type(key, value));
99 typename Collection::value_type::second_type*
101 const typename Collection::value_type
123 typedef typename Collection::value_type value_type; typedef
[all...]
/external/chromium-libpac/src/
H A Dproxy_resolver_v8.cc148 inline typename string_type::value_type* WriteInto(string_type* str,
251 const typename STR::value_type remove_chars[],
/external/chromium_org/base/
H A Dcommand_line.h39 typedef StringType::value_type CharType;
H A Denvironment.cc106 size_t ParseEnvLine(const NativeEnvironmentString::value_type* input,
H A Dstl_util.h205 // value_type to implement operator<.
207 std::less<typename Container::value_type>())
/external/chromium_org/base/containers/
H A Dmru_cache.h48 typedef std::pair<KeyType, PayloadType> value_type; typedef in class:base::MRUCacheBase
51 typedef std::list<value_type> PayloadList;
103 ordering_.push_front(value_type(key, payload));
H A Dscoped_ptr_hash_map.h29 typedef typename Container::value_type value_type; typedef in class:base::ScopedPtrHashMap
H A Dsmall_map.h196 typedef typename NormalMap::value_type value_type; typedef in class:base::SmallMap
213 // to be resolved is that the value_type itself is pair<const K,
227 typedef typename NormalMap::iterator::value_type value_type; typedef in class:base::SmallMap::iterator
260 inline value_type* operator->() const {
268 inline value_type& operator*() const {
294 inline explicit iterator(ManualConstructor<value_type>* init)
299 ManualConstructor<value_type>* array_iter_;
307 typedef typename NormalMap::const_iterator::value_type value_typ typedef in class:base::SmallMap::const_iterator
[all...]
H A Dstack_container.h141 typedef typename ContainerType::value_type ContainedType;
/external/chromium_org/base/files/
H A Dfile_path.h145 typedef StringType::value_type CharType;
/external/chromium_org/base/json/
H A Dstring_escape.cc138 ToUnsigned<StringPiece::value_type>::Unsigned c = *it;
/external/chromium_org/base/memory/
H A Dscoped_vector.h29 typedef typename std::vector<T*>::value_type value_type; typedef in class:ScopedVector
/external/chromium_org/base/posix/
H A Dfile_descriptor_shuffle.cc26 InjectiveMultimap::value_type* i = &(*m)[i_index];
31 InjectiveMultimap::value_type* j = &(*m)[j_index];
39 InjectiveMultimap::value_type* j = &(*m)[j_index];
/external/chromium_org/base/process/
H A Dlaunch_posix.cc421 const FileHandleMappingVector::value_type& value =
/external/chromium_org/base/strings/
H A Dstring_number_conversions.cc85 *it = static_cast<typename STR::value_type>((res % 10) + '0');
91 *it = static_cast<typename STR::value_type>('-');
161 // - a typedef for value_type, the target numeric type.
170 typedef typename traits::value_type value_type; typedef in class:base::__anon2451::IteratorRangeToNumber
176 value_type* output) {
185 if (!std::numeric_limits<value_type>::is_signed) {
212 typename traits::value_type* output) {
248 static bool CheckBounds(value_type* output, uint8 new_digit) {
249 if (*output > static_cast<value_type>(trait
283 typedef VALUE value_type; typedef in class:base::__anon2451::BaseIteratorRangeToNumberTraits
[all...]
H A Dstring_piece.cc85 typename STR::value_type* buf,
89 memcpy(buf, self.data() + pos, ret * sizeof(typename STR::value_type));
125 typename STR::value_type c,
172 typename STR::value_type c,
274 typename STR::value_type c,
389 typename STR::value_type c,
H A Dstring_piece.h166 typedef typename STRING_TYPE::value_type value_type; typedef in class:base::BasicStringPiece
167 typedef const value_type* pointer;
168 typedef const value_type& reference;
169 typedef const value_type& const_reference;
171 typedef const value_type* const_iterator;
181 BasicStringPiece(const value_type* str)
186 BasicStringPiece(const value_type* offset, size_type len)
197 const value_type* data() const { return ptr_; }
206 void set(const value_type* dat
[all...]
H A Dstring_piece_unittest.cc147 temp += static_cast<typename TypeParam::value_type>(0);
151 ASSERT_EQ(a[6], static_cast<typename TypeParam::value_type>('g'));
152 ASSERT_EQ(b[0], static_cast<typename TypeParam::value_type>('a'));
153 ASSERT_EQ(c[2], static_cast<typename TypeParam::value_type>('z'));
154 ASSERT_EQ(f[3], static_cast<typename TypeParam::value_type>('\0'));
155 ASSERT_EQ(f[5], static_cast<typename TypeParam::value_type>('5'));
157 ASSERT_EQ(*d.data(), static_cast<typename TypeParam::value_type>('f'));
158 ASSERT_EQ(d.data()[5], static_cast<typename TypeParam::value_type>('r'));
161 ASSERT_EQ(*a.begin(), static_cast<typename TypeParam::value_type>('a'));
162 ASSERT_EQ(*(b.begin() + 2), static_cast<typename TypeParam::value_type>('
[all...]
H A Dstring_split.cc18 const typename STR::value_type s,
H A Dstring_tokenizer.h94 typedef typename str::value_type char_type;
H A Dstring_util.cc328 typename ToUnsigned<typename STR::value_type>::Unsigned c = str[i];
430 base::CaseInsensitiveCompare<typename STR::value_type>());
449 base::CaseInsensitiveCompare<typename STR::value_type>());
H A Dstring_util.h420 // (|length_with_null - 1| * sizeof(string_type::value_type)) bytes. Ideally we
427 inline typename string_type::value_type* WriteInto(string_type* str,

Completed in 405 milliseconds

1234567891011>>