HomeSort by relevance Sort by last modified time
    Searched refs:data_type (Results 1 - 25 of 298) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 60 typedef llvm::ImmutableMap<Key,Data,Info> data_type; typedef in struct:clang::ento::ProgramStatePartialTrait
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) : data_type(0);
69 static inline void *MakeVoidPtr(data_type B) {
72 static lookup_type Lookup(data_type B, key_type K) {
75 static data_type Set(data_type B, key_type K, value_type E,context_type F)
110 typedef llvm::ImmutableSet<Key,Info> data_type; typedef in struct:clang::ento::ProgramStatePartialTrait
152 typedef llvm::ImmutableList<T> data_type; typedef in struct:clang::ento::ProgramStatePartialTrait
189 typedef bool data_type; typedef in struct:clang::ento::ProgramStatePartialTrait
202 typedef unsigned data_type; typedef in struct:clang::ento::ProgramStatePartialTrait
215 typedef void *data_type; typedef in struct:clang::ento::ProgramStatePartialTrait
228 typedef const void *data_type; typedef in struct:clang::ento::ProgramStatePartialTrait
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.py 116 def cpp_value_to_js_value(data_type, cpp_value, isolate, creation_context=''):
118 if data_type == 'boolean':
120 if data_type in ['long long', 'unsigned long long', 'DOMTimeStamp']:
123 if primitive_type(data_type):
124 if data_type not in ['float', 'double']:
125 raise Exception('unexpected data_type %s' % data_type)
127 if data_type == 'DOMString':
129 if array_or_sequence_type(data_type):
146 def includes_for_type(data_type)
    [all...]
idl_definitions.py 73 data_type = None variable in class:TypedObject
81 data_type_object = IdlType.from_string(self.data_type)
85 data_type_object.base_type = replacement_type.data_type
87 self.data_type = str(data_type_object)
140 def __init__(self, name=None, data_type=None, arguments=None):
141 self.data_type = data_type
154 'callbackFunction::type': self.data_type,
247 def __init__(self, data_type=None, extended_attributes=None, getter_exceptions=None, is_nullable=False, is_static=False, is_read_only=False, name=None, setter_exceptions=None):
248 self.data_type = data_typ
    [all...]
idl_definitions_builder.py 125 data_type = None
136 data_type = type_node_to_type(child)
143 return IdlAttribute(data_type=data_type, extended_attributes=extended_attributes, is_nullable=is_nullable, is_read_only=is_read_only, is_static=is_static, name=name)
157 data_type = type_node_inner_to_type(type_node)
170 return IdlConstant(data_type=data_type, extended_attributes=extended_attributes, name=name, value=value)
201 return IdlOperation(name=name, data_type=return_type, extended_attributes=extended_attributes, is_static=is_static, arguments=arguments, specials=specials)
221 data_type = None
232 data_type = type_node_to_type(child
    [all...]
  /external/chromium_org/tools/perf/measurements/
dromaeo.py 27 data_type = 'unimportant'
29 data_type = 'default'
30 results.Add(Escape(k), 'runs/s', v, data_type=data_type)
page_cycler.py 96 data_type='unimportant')
101 data_type='unimportant')
106 data_type='unimportant')
111 data_type='unimportant')
  /external/chromium_org/tools/perf/metrics/
smoothness.py 92 data_type='unimportant')
98 data_type='unimportant')
101 data_type='unimportant')
104 data_type='unimportant')
109 data_type='unimportant')
118 data_type='unimportant')
121 data_type='unimportant')
125 data_type='unimportant')
128 data_type='unimportant')
133 data_type='unimportant'
    [all...]
memory.py 59 'bytes', sum(values), data_type='unimportant')
76 data_type='unimportant')
78 data_type='unimportant')
  /external/chromium_org/tools/telemetry/telemetry/page/
page_measurement_value.py 10 def __init__(self, trace_name, units, value, chart_name, data_type):
15 self.data_type = data_type
26 if 'histogram' in self.data_type:
buildbot_page_measurement_results.py 58 value.data_type)
65 measurement, units, data_type = measurement_units_type
67 if 'histogram' in data_type:
71 if '.' in measurement and 'histogram' not in data_type:
83 if 'histogram' in data_type and url_value_map[url]:
99 if 'histogram' not in data_type or len(value_url_list) == 1:
103 self._PrintPerfResult(measurement, trace, values, units, data_type)
117 values, value.units, value.data_type)
page_measurement_results.py 75 def Add(self, trace_name, units, value, chart_name=None, data_type='default'):
77 data_type)
81 data_type='default'):
83 data_type)
87 data_type):
89 trace_name, units, value, chart_name, data_type)
101 assert last_seen_data_type == data_type, \
106 'type': data_type}
  /external/chromium_org/tools/perf/benchmarks/
octane.py 39 data_type = 'unimportant'
41 data_type = 'default'
42 results.Add(key, 'score (bigger is better)', value, data_type=data_type)
  /external/clang/lib/Serialization/
ASTReaderInternals.h 48 typedef std::pair<LE32DeclID *, LE32DeclID *> data_type; typedef in class:clang::serialization::reader::ASTDeclContextNameLookupTrait
78 data_type ReadData(internal_key_type, const unsigned char* d,
89 /// must provide the \c data_type typedef and the ReadData operation,
128 typedef IdentifierInfo * data_type; typedef in class:clang::serialization::reader::ASTIdentifierLookupTrait
134 data_type ReadData(const internal_key_type& k,
153 struct data_type { struct in class:clang::serialization::reader::ASTSelectorLookupTrait
181 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen);
213 typedef HeaderFileInfo data_type; typedef in class:clang::serialization::reader::HeaderFileInfoTrait
228 data_type ReadData(internal_key_ref,const unsigned char *d, unsigned DataLen);
  /external/llvm/utils/
lldbDataFormatters.py 34 offset, self.data_type)
45 self.data_type = the_type.GetTemplateArgumentType(0)
46 self.type_size = self.data_type.GetByteSize()
  /external/webrtc/src/system_wrappers/source/spreadsortlib/
spreadsort.hpp 123 template <class RandomAccessIter, class div_type, class data_type>
164 data_type tmp;
198 spread_sort_rec<RandomAccessIter, div_type, data_type>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes);
203 template <class RandomAccessIter, class div_type, class data_type, class right_shift>
211 data_type tmp;
231 template <class RandomAccessIter, class div_type, class data_type, class right_shift>
236 inner_swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, ii, shift, log_divisor, div_min);
240 template <class RandomAccessIter, class div_type, class data_type, class right_shift, class compare>
266 swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, u, shift, bin_sizes, log_divisor, div_min);
283 spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes, shift, comp);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
indirect_vertex_array_priv.h 55 GLenum data_type; member in struct:array_state
67 * represented by \c data_type.
143 GLenum data_type; member in struct:array_stack_state
  /external/mesa3d/src/glx/
indirect_vertex_array_priv.h 55 GLenum data_type; member in struct:array_state
67 * represented by \c data_type.
143 GLenum data_type; member in struct:array_stack_state
  /external/chromium_org/ui/base/x/
device_data_manager.cc 202 for (int data_type = 0; data_type < DT_LAST_ENTRY; ++data_type)
203 atoms[data_type] = atom_cache_.GetAtom(kCachedAtoms[data_type]);
240 for (int data_type = 0; data_type < DT_LAST_ENTRY; ++data_type) {
241 if (v->label == atoms[data_type]) {
242 valuator_lookup_[deviceid][data_type] = v->number
    [all...]
  /bionic/libc/kernel/common/linux/
zlib.h 36 int data_type; member in struct:z_stream_s
  /development/ndk/platforms/android-3/include/linux/
zlib.h 33 int data_type; member in struct:z_stream_s
  /external/chromium/net/tools/testserver/
chromiumsync.py 123 return [data_type for data_type, extension
128 def SyncTypeToProtocolDataTypeId(data_type):
130 return SYNC_TYPE_TO_EXTENSION[data_type].number
135 for data_type, protocol_extension in SYNC_TYPE_TO_EXTENSION.iteritems():
137 return data_type
141 def GetDefaultEntitySpecifics(data_type):
144 if data_type in SYNC_TYPE_TO_EXTENSION:
145 extension_handle = SYNC_TYPE_TO_EXTENSION[data_type]
194 data_type = ProtocolDataTypeIdToSyncType(marker.data_type_id
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
zlib.h 33 int data_type; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
zlib.h 33 int data_type; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
zlib.h 33 int data_type; member in struct:z_stream_s
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
zlib.h 33 int data_type; member in struct:z_stream_s

Completed in 893 milliseconds

1 2 3 4 5 6 7 8 91011>>