/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ProgramStateTrait.h | 60 typedef llvm::ImmutableMap<Key,Data,Info> data_type; 61 typedef typename data_type::Factory& context_type; 66 static inline data_type MakeData(void *const* p) { 67 return p ? data_type((typename data_type::TreeTy*) *p) 68 : data_type(nullptr); 70 static inline void *MakeVoidPtr(data_type B) { 73 static lookup_type Lookup(data_type B, key_type K) { 76 static data_type Set(data_type B, key_type K, value_type E,context_type F){ 80 static data_type Remove(data_type B, key_type K, context_type F) { 85 return *((typename data_type::Factory*) p); [all …]
|
D | ProgramState.h | 54 typedef typename T::data_type data_type; typedef 55 static inline void *MakeVoidPtr(data_type D) { return (void*) D; } in MakeVoidPtr() 56 static inline data_type MakeData(void *const* P) { in MakeData() 57 return P ? (data_type) *P : (data_type) 0; in MakeData() 371 typename ProgramStateTrait<T>::data_type 397 ProgramStateRef set(typename ProgramStateTrait<T>::data_type D) const; 572 ProgramStateRef set(ProgramStateRef st, typename ProgramStateTrait<T>::data_type D) { in set() 790 ProgramStateRef ProgramState::set(typename ProgramStateTrait<T>::data_type D) const { in set()
|
/external/webrtc/webrtc/system_wrappers/source/spreadsortlib/ |
D | spreadsort.hpp | 128 template <class RandomAccessIter, class div_type, class data_type> 169 data_type tmp; in spread_sort_rec() 203 …spread_sort_rec<RandomAccessIter, div_type, data_type>(lastPos, bin_cache[u], bin_cache, cache_end… in spread_sort_rec() 208 template <class RandomAccessIter, class div_type, class data_type, class right_shift> 216 data_type tmp; in inner_swap_loop() 236 template <class RandomAccessIter, class div_type, class data_type, class right_shift> 241 …inner_swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, ii, shift,… in swap_loop() 245 …template <class RandomAccessIter, class div_type, class data_type, class right_shift, class compar… 271 …swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, u, shift, bin_si… in spread_sort_rec() 288 …spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(lastPos, bin_cache[u]… in spread_sort_rec() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/ |
D | property.py | 35 data_type = str variable in Property 82 if not isinstance(value, self.data_type): 83 … %s.%s expecting %s, got %s' % (self.model_class.__name__, self.name, self.data_type, type(value))) 200 data_type = Password variable in PasswordProperty 216 p = self.data_type(value, hashfunc=self.hashfunc) 227 if not isinstance(value, self.data_type): 228 p = self.data_type(hashfunc=self.hashfunc) 234 … return self.data_type(super(PasswordProperty, self).__get__(obj, objtype), hashfunc=self.hashfunc) 238 if isinstance(value, self.data_type): 242 raise TypeError('Expecting %s, got %s' % (type(self.data_type), type(value))) [all …]
|
/external/clang/lib/Serialization/ |
D | ASTReaderInternals.h | 50 typedef llvm::SmallVector<DeclID, 4> data_type; typedef 52 data_type &Data; 55 data_type_builder(data_type &D) : Data(D) {} in data_type_builder() 104 static void MergeDataInto(const data_type &From, data_type_builder &To) { in MergeDataInto() 175 typedef IdentifierInfo * data_type; typedef 181 data_type ReadData(const internal_key_type& k, 202 struct data_type { struct 234 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen); 267 typedef HeaderFileInfo data_type; typedef 284 data_type ReadData(internal_key_ref,const unsigned char *d, unsigned DataLen);
|
D | MultiOnDiskHashTable.h | 40 typedef typename Info::data_type data_type; typedef 61 llvm::DenseMap<internal_key_type, data_type> Data; 212 data_type find(const external_key_type &EKey) { in find() 213 data_type Result; in find() 245 data_type findAll() { in findAll() 246 data_type Result; in findAll()
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | base_config.py | 289 dependency, platform, data_type='version_in_cs') 297 def _SetPlatformData(self, dependency, platform, data_type, data): argument 304 if (data_type == 'cloud_storage_bucket' or 305 data_type == 'cloud_storage_base_folder'): 306 self._config_data[dependency][data_type] = data 308 self._config_data[dependency]['file_info'][platform][data_type] = data 310 def _GetPlatformData(self, dependency, platform, data_type=None): argument 318 if data_type: 319 if (data_type == 'cloud_storage_bucket' or 320 data_type == 'cloud_storage_base_folder'): [all …]
|
/external/llvm/utils/ |
D | lldbDataFormatters.py | 48 offset, self.data_type) 59 self.data_type = the_type.GetTemplateArgumentType(0) 60 self.type_size = self.data_type.GetByteSize() 83 offset, self.data_type) 89 self.data_type = self.data.GetType().GetPointeeType() 90 self.type_size = self.data_type.GetByteSize()
|
/external/autotest/client/common_lib/cros/bluetooth/ |
D | bluetooth_sdp_socket.py | 396 data_type = header >> 3 400 if data_type == 0: 404 elif data_type <= 3 or data_type == 5: 406 data_type == 3 and (data_size == 0 or data_size == 3) or 407 data_type == 5 and data_size != 0): 414 if data_type == 2 and (ord(data[0]) & 128) != 0: 418 if data_type == 5: 423 elif data_type == 4 or data_type == 8: 433 elif data_type == 6 or data_type == 7:
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
D | json_util.py | 157 def __init__(self, data_type, default=None, **kwargs): argument 168 self.data_type = data_type 203 if self.data_type == dict: 205 return self.data_type.from_json(_json) 219 if value is not None and not isinstance(value, self.data_type): 222 (self.name, self.data_type, value))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb2/ |
D | fields.py | 13 def __init__(self, name, data_type=STRING): argument 25 self.data_type = data_type 42 'AttributeType': self.data_type, 121 'AttributeType': part.data_type,
|
/external/webrtc/webrtc/system_wrappers/source/ |
D | sort.cc | 188 DataType* data_type = static_cast<DataType*>(data); 189 boost::integer_sort(data_type, data_type + num_of_elements); 194 DataType* data_type = static_cast<DataType*>(data); 196 boost::float_sort_cast(data_type, data_type + num_of_elements, c_val); 201 DataType* data_type = static_cast<DataType*>(data); 202 std::sort(data_type, data_type + num_of_elements);
|
/external/llvm/include/llvm/ADT/ |
D | ImmutableMap.h | 30 typedef const S data_type; typedef 66 typedef typename ValInfo::data_type data_type; typedef 112 TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D)); in add() 218 data_type* lookup(key_type_ref K) const { in lookup() 258 typedef typename ValInfo::data_type data_type; typedef 324 TreeTy *NewT = Factory->add(Root, std::pair<key_type, data_type>(K, D)); in add() 377 data_type *lookup(key_type_ref K) const { in lookup()
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
D | basic_endpoint.hpp | 46 typedef asio::detail::socket_addr_type data_type; typedef in asio::ip::basic_endpoint 119 data_type* data() in data() 125 const data_type* data() const in data()
|
/external/autotest/scheduler/ |
D | scheduler_config.py | 36 for field, data_type in self.FIELDS: 39 type=data_type))
|
/external/mesa3d/src/glx/ |
D | indirect_vertex_array.c | 211 arrays->arrays[0].data_type = GL_FLOAT; in __glXInitVertexArrayState() 217 arrays->arrays[1].data_type = GL_FLOAT; in __glXInitVertexArrayState() 223 arrays->arrays[2].data_type = GL_FLOAT; in __glXInitVertexArrayState() 228 arrays->arrays[3].data_type = GL_UNSIGNED_BYTE; in __glXInitVertexArrayState() 234 arrays->arrays[4 + i].data_type = GL_FLOAT; in __glXInitVertexArrayState() 247 arrays->arrays[i].data_type = GL_FLOAT; in __glXInitVertexArrayState() 255 arrays->arrays[i].data_type = GL_FLOAT; in __glXInitVertexArrayState() 268 arrays->arrays[idx + i].data_type = GL_FLOAT; in __glXInitVertexArrayState() 285 arrays->arrays[i].data_type = GL_FLOAT; in __glXInitVertexArrayState() 462 *(info++) = arrays->arrays[i].data_type; in fill_array_info_cache() [all …]
|
D | indirect_vertex_array_priv.h | 55 GLenum data_type; member 143 GLenum data_type; member
|
/external/llvm/include/llvm/Support/ |
D | OnDiskHashTable.h | 65 typename Info::data_type Data; 269 typedef typename Info::data_type data_type; typedef 317 data_type operator*() const { return InfoObj->ReadData(Key, Data, Len); } 422 typedef typename base_type::data_type data_type; typedef 535 typedef data_type value_type;
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_screen.c | 223 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name() 228 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name() 233 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name() 285 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_renderbuffer() 323 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image() 328 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image() 333 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_screen.c | 223 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name() 228 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name() 233 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name() 285 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_renderbuffer() 323 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image() 328 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image() 333 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()
|
/external/opencv3/modules/core/src/ |
D | convert.cpp | 64 #define SPLIT2_KERNEL_TEMPLATE(name, data_type, reg_type, load_func, store_func) \ argument 66 struct name<data_type> \ 68 void operator()(const data_type* src, data_type* dst0, \ 69 data_type* dst1) const \ 77 #define SPLIT3_KERNEL_TEMPLATE(name, data_type, reg_type, load_func, store_func) \ argument 79 struct name<data_type> \ 81 void operator()(const data_type* src, data_type* dst0, data_type* dst1, \ 82 data_type* dst2) const \ 91 #define SPLIT4_KERNEL_TEMPLATE(name, data_type, reg_type, load_func, store_func) \ argument 93 struct name<data_type> \ [all …]
|
/external/llvm/lib/ProfileData/ |
D | InstrProfReader.cpp | 444 typedef InstrProfLookupTrait::data_type data_type; typedef 461 data_type InstrProfLookupTrait::ReadData(StringRef K, const unsigned char *D, in ReadData() 465 return data_type(); in ReadData() 475 return data_type(); in ReadData() 483 return data_type(); in ReadData() 488 return data_type(); in ReadData() 500 return data_type(); in ReadData()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/ |
D | optiongroup.py | 198 default_value=False, allowed_values=None, data_type=None, argument 205 self.data_type = data_type 228 self.data_type = value
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-US/ |
D | en-US_lh0_kpdf_dur.utf | 22 ! NOTE : 'data_type' resticted to 'unit8', 'unit16', 'uint32' 31 ! the order, number and data_type for each section should match this reference description
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/de-DE/ |
D | de-DE_gl0_kpdf_dur.utf | 22 ! NOTE : 'data_type' resticted to 'unit8', 'unit16', 'uint32' 31 ! the order, number and data_type for each section should match this reference description
|