HomeSort by relevance Sort by last modified time
    Searched refs:type_ (Results 151 - 175 of 524) sorted by null

1 2 3 4 5 67 8 91011>>

  /build/kati/
find.cc 73 : type_(t) {
76 return type == type_;
85 unsigned char type_; member in class:__anon1405::TypeCond
185 : DirentNode(name), type_(type) {
192 PrintIfNecessary(fc, *path, type_, d, out);
199 unsigned char type_; member in class:__anon1405::DirentFileNode
  /external/vixl/src/aarch64/
operands-aarch64.cc 40 return CPURegister(index, size_, type_);
53 return CPURegister(index, size_, type_);
58 if ((type_ == CPURegister::kRegister) || (type_ == CPURegister::kVRegister)) {
63 is_valid &= CPURegister(i, size_, type_).IsValid();
67 } else if (type_ == CPURegister::kNoRegister) {
  /system/tools/aidl/
aidl_language.h 127 const AidlType& GetType() const { return *type_; }
128 AidlType* GetMutableType() { return type_.get(); }
133 std::unique_ptr<AidlType> type_; member in class:AidlArgument
210 const AidlType& GetType() const { return *type_; }
211 AidlType* GetMutableType() { return type_.get(); }
235 std::unique_ptr<AidlType> type_; member in class:AidlMethod
aidl_language.cpp 54 : type_(type),
61 : type_(type),
84 ret += type_->ToString();
137 type_(type),
  /external/webrtc/webrtc/base/
virtualsocketserver.cc 102 type_(type),
112 ASSERT((type_ == SOCK_DGRAM) || (type_ == SOCK_STREAM));
113 ASSERT(async_ || (type_ != SOCK_STREAM)); // We only support async streams
174 if (SOCK_STREAM == type_) {
245 if (SOCK_DGRAM == type_) {
255 if (SOCK_DGRAM == type_) {
298 if (SOCK_STREAM == type_) {
312 ASSERT(SOCK_STREAM == type_);
330 VirtualSocket* socket = new VirtualSocket(server_, AF_INET, type_, async_)
    [all...]
multipart.cc 24 : type_(type),
30 ASSERT(0 == strncmp(type_.c_str(), "multipart/", 10));
39 content_type->assign(type_);
  /external/protobuf/src/google/protobuf/
map.h 99 MapKey() : type_(0) {
101 MapKey(const MapKey& other) : type_(0) {
106 if (type_ == FieldDescriptor::CPPTYPE_STRING) {
112 if (type_ == 0) {
118 return (FieldDescriptor::CppType)type_;
178 if (type_ != other.type_) {
207 if (type_ != other.type_) {
237 switch (type_) {
293 int type_; member in class:google::protobuf::MapKey
462 int type_; member in class:google::protobuf::MapValueRef
    [all...]
unknown_field_set.h 231 uint32 type_; member in class:google::protobuf::UnknownField
278 return static_cast<Type>(type_);
333 type_ = type;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map.h 99 MapKey() : type_(0) {
101 MapKey(const MapKey& other) : type_(0) {
106 if (type_ == FieldDescriptor::CPPTYPE_STRING) {
112 if (type_ == 0) {
118 return (FieldDescriptor::CppType)type_;
178 if (type_ != other.type_) {
207 if (type_ != other.type_) {
237 switch (type_) {
293 int type_; member in class:google::protobuf::MapKey
462 int type_; member in class:google::protobuf::MapValueRef
    [all...]
unknown_field_set.h 231 uint32 type_; member in class:google::protobuf::UnknownField
278 return static_cast<Type>(type_);
333 type_ = type;
  /art/runtime/mirror/
field.h 79 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_));
107 HeapReference<mirror::Class> type_; member in class:art::mirror::Field
field-inl.h 88 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type);
  /external/deqp/execserver/
xsProtocol.hpp 72 Message (MessageType type_) : type(type_) {}
  /external/drm_hwcomposer/
drmdisplaycomposition.cpp 63 return type_ == DRM_COMPOSITION_TYPE_EMPTY || type_ == des;
97 type_ = DRM_COMPOSITION_TYPE_FRAME;
105 type_ = DRM_COMPOSITION_TYPE_DPMS;
114 type_ = DRM_COMPOSITION_TYPE_MODESET;
289 if (type_ != DRM_COMPOSITION_TYPE_FRAME)
521 << " type=" << DrmCompositionTypeToString(type_);
523 switch (type_) {
  /external/google-breakpad/src/processor/
synth_minidump.h 169 Stream(const Dump &dump, uint32_t type) : Section(dump), type_(type) { }
176 uint32_t type_; member in class:google_breakpad::SynthMinidump::Stream
  /external/libchrome/base/
cpu.cc 33 type_(0),
170 type_ = (cpu_info[0] >> 12) & 0x3;
  /external/v8/src/debug/
debug.h 83 inline bool IsReturn() const { return type_ == DEBUG_BREAK_SLOT_AT_RETURN; }
84 inline bool IsCall() const { return type_ == DEBUG_BREAK_SLOT_AT_CALL; }
86 return type_ == DEBUG_BREAK_SLOT_AT_TAIL_CALL;
88 inline bool IsDebugBreakSlot() const { return type_ >= DEBUG_BREAK_SLOT; }
90 return type_ == DEBUGGER_STATEMENT;
102 type_(type),
104 DCHECK_NE(NOT_DEBUG_BREAK, type_);
116 DebugBreakType type_; member in class:v8::internal::BreakLocation
  /system/core/adb/
shell_service.cpp 177 SubprocessType type_; member in class:__anon106724::Subprocess
194 type_(type),
202 if (protocol_ == SubprocessProtocol::kNone && type_ == SubprocessType::kRaw) {
205 type_ = SubprocessType::kPty;
276 if (type_ == SubprocessType::kPty) {
307 if (type_ == SubprocessType::kPty) {
586 if (type_ == SubprocessType::kRaw) {
631 if (bytes < 0 && !(type_ == SubprocessType::kPty && errno == EIO)) {
  /system/extras/simpleperf/
dso.h 105 DsoType type() const { return type_; }
161 const DsoType type_; member in class:Dso
  /art/compiler/optimizing/
induction_var_analysis.cc 103 type_(Primitive::kPrimVoid),
187 type_ = scc_[0]->GetType();
294 type_));
355 induction = CreateInduction(kLinear, kNop, induction, initial, /*fetch*/ nullptr, type_);
397 type_);
404 type_);
441 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
453 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_);
463 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
483 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);
    [all...]
  /external/v8/src/asmjs/
asm-typer.h 115 explicit VariableInfo(AsmType* t) : type_(t) {}
140 AsmType* type() const { return type_; }
141 void set_type(AsmType* type) { type_ = type; }
154 AsmType* type_; member in class:v8::internal::wasm::final::VariableInfo
  /external/v8/src/compiler/
instruction-selector.h 34 PushParameter() : node_(nullptr), type_(MachineType::None()) {}
35 PushParameter(Node* node, MachineType type) : node_(node), type_(type) {}
38 MachineType type() const { return type_; }
42 MachineType type_; member in class:v8::internal::compiler::PushParameter
instruction.h     [all...]
  /external/google-breakpad/src/common/linux/
synth_elf.cc 124 if (section.type_ == SHT_NULL) {
126 } else if (section.type_ == SHT_NOBITS) {
155 if (sections_[i].type_ != SHT_NOBITS) {
  /external/webrtc/talk/app/webrtc/
statstypes.h 245 const StatsType type_; member in class:webrtc::StatsReport::IdBase
306 Type type() const { return type_; }
312 const Type type_; member in struct:webrtc::StatsReport::Value

Completed in 879 milliseconds

1 2 3 4 5 67 8 91011>>