HomeSort by relevance Sort by last modified time
    Searched refs:type_ (Results 101 - 125 of 656) sorted by null

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gold/
attributes.h 78 : type_(0), int_value_(0), string_value_()
83 : type_(oa.type_), int_value_(oa.int_value_), string_value_(oa.string_value_)
93 this->type_ = source.type_;
102 { return this->type_; }
107 { this->type_ = type; }
197 int type_; member in class:gold::Object_attribute
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 139 , type_(type) {
149 if (type_ == Normal)
152 else if (type_ == Spin)
155 else if (type_ == RW)
163 CHECK(type_ == Normal);
172 if (type_ == Normal)
175 else if (type_ == Spin)
178 else if (type_ == RW)
184 if (type_ == Normal)
187 else if (type_ == Spin
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
mixins.py 64 type_ The type to match in the context.
83 type_ = CriteriaDescriptor("type_regex", "lookup_type") variable in class:MatchContext
95 log.debug("Type: {0.type_!r}, regex: {0.type_regex}".format(self))
105 "type_" and "range_".
120 if self.type_ and not match_regex(
121 context.type_,
122 self.type_,
constraintquery.py 55 type_ The name of the type/attribute to match in the
73 type_ = CriteriaDescriptor("type_regex", "lookup_type_or_attr") variable in class:ConstraintQuery
110 self.log.debug("Type: {0.type_!r}, regex: {0.type_regex}".format(self))
133 if self.type_ and not self._match_expr(
135 self.type_,
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
constants.h 77 const analysis::Type* type() const { return type_; }
80 Constant(const analysis::Type* ty) : type_(ty) {}
83 const analysis::Type* type_; member in class:spvtools::opt::analysis::Constant
117 return MakeUnique<IntConstant>(type_->AsInteger(), words_);
137 return MakeUnique<FloatConstant>(type_->AsFloat(), words_);
155 return MakeUnique<BoolConstant>(type_->AsBool(), value_);
207 return MakeUnique<StructConstant>(type_->AsStruct(), components_);
233 auto another = MakeUnique<VectorConstant>(type_->AsVector());
264 return MakeUnique<ArrayConstant>(type_->AsArray(), components_);
280 return MakeUnique<NullConstant>(type_);
    [all...]
  /external/ImageMagick/Magick++/lib/
Pixels.cpp 113 const StorageType type_)
115 init(image_,0,0,image_.columns(),image_.rows(),map_,type_);
120 const StorageType type_)
122 init(image_,x_,y_,width_,height_,map_,type_);
147 std::string map_,const StorageType type_)
161 switch(type_)
195 map_.c_str(),type_,_data,exceptionInfo);
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 91 def __init__(self, instance, type_):
94 self.type = type_
160 def dump_type(instance, type_):
161 type_ = type_traits.remove_alias(type_)
162 visitor = type_dumper_t(instance, type_)
163 algorithm.apply_visitor(visitor, type_)
  /external/webrtc/webrtc/p2p/base/
candidate.h 59 type_(type),
115 const std::string & type() const { return type_; }
116 void set_type(const std::string & type) { type_ = type; }
168 (password_ == c.password_) && (type_ == c.type_) &&
216 << address << ":" << type_ << ":" << related_address_ << ":"
229 std::string type_; member in class:cricket::Candidate
  /art/compiler/linker/arm/
relative_patcher_arm_base.h 52 : type_(type), custom_value1_(custom_value1), custom_value2_(custom_value2) { }
55 return type_;
67 ThunkType type_; member in class:art::linker::ArmBaseRelativePatcher::ThunkKey
  /art/runtime/mirror/
emulated_stack_frame.h 60 return GetFieldObject<MethodType>(OFFSET_OF_OBJECT_MEMBER(EmulatedStackFrame, type_));
91 return MemberOffset(OFFSETOF_MEMBER(EmulatedStackFrame, type_));
105 HeapReference<mirror::MethodType> type_; member in class:art::mirror::EmulatedStackFrame
  /external/v8/src/compiler/
frame-states.h 93 : type_(type),
101 FrameStateType type() const { return type_; }
109 FrameStateType const type_; member in class:v8::internal::compiler::FrameStateFunctionInfo
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
default.py 68 type_ = sym.type_default(policy)
83 if type_:
86 obj.default = type_
typeattr.py 149 for type_ in self.expand():
150 if other == type_:
157 for type_ in self.qpol_symbol.type_iter(self.policy):
158 yield type_factory(self.policy, type_)
  /external/libchrome/base/
values.cc 98 Value::Value() noexcept : type_(Type::NONE) {} function in namespace:base
100 Value::Value(Type type) : type_(type) {
102 switch (type_) {
130 Value::Value(bool in_bool) : type_(Type::BOOLEAN), bool_value_(in_bool) {}
132 Value::Value(int in_int) : type_(Type::INTEGER), int_value_(in_int) {}
134 Value::Value(double in_double) : type_(Type::DOUBLE), double_value_(in_double) {
142 Value::Value(const char* in_string) : type_(Type::STRING) {
147 Value::Value(const std::string& in_string) : type_(Type::STRING) {
152 Value::Value(std::string&& in_string) noexcept : type_(Type::STRING) { function in namespace:base
157 Value::Value(const char16* in_string) : type_(Type::STRING)
171 Value::Value(std::vector<char>&& in_blob) noexcept : type_(Type::BINARY) { function in namespace:base
    [all...]
observer_list_threadsafe.h 81 : type_(ObserverListBase<ObserverType>::NOTIFY_ALL) {}
82 explicit ObserverListThreadSafe(NotificationType type) : type_(type) {}
98 base::MakeUnique<ObserverListContext>(type_);
221 const NotificationType type_; member in class:base::ObserverListThreadSafe
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutex.h 59 MutexType type_; member in class:__tsan::Mutex
  /external/drm_hwcomposer/
drmproperty.h 61 DrmPropertyType type_ = DRM_PROPERTY_TYPE_INVALID; member in class:android::DrmProperty
  /external/perfetto/src/traced/probes/filesystem/
file_scanner_unittest.cc 72 type_(type) {}
77 type_ == other.type_;
83 protos::pbzero::InodeFileMap_Entry_Type type_; member in struct:perfetto::__anon32015::FileEntry
  /external/tensorflow/tensorflow/core/framework/
types.cc 26 return type_ < other.type_;
30 return type_ == other.type_;
  /frameworks/ml/nn/common/operations/
LSHProjection.h 65 LSHProjectionType type_; member in class:android::nn::LSHProjection
LSHProjectionTest.cpp 48 : type_(type) {
127 execution.setInput(LSHProjection::kTypeParam, &type_, sizeof(type_)),
135 LSHProjectionType type_; member in class:android::nn::wrapper::LSHProjectionOpModel
  /hardware/nxp/secure_element/libese-spi/p73/utils/
config.h 34 Type type_; member in class:ConfigValue
  /system/core/init/
descriptors.cpp 38 : name_(name), type_(type), uid_(uid), gid_(gid), perm_(perm), context_(context) {
45 return os << " descriptors " << info.name_ << " " << info.type_ << " " << std::oct << info.perm_;
49 return name_ == other.name_ && type_ == other.type_ && key() == other.key();
  /external/deqp/framework/referencerenderer/
rrVertexAttrib.hpp 127 VertexAttrib (VertexAttribType type_, int size_, int stride_, int instanceDivisor_, const void* pointer_)
128 : type (type_)
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_resource.h 65 DataType type() const { return type_; }
145 DataType type_; member in class:tensorflow::XlaResource

Completed in 1565 milliseconds

1 2 3 45 6 7 8 91011>>