Searched defs:type_ (Results 276 - 300 of 329) sorted by relevance

<<11121314

/external/deqp/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp98 Varying (const char* name_, const glu::VarType& type_, Interpolation interp_) argument
100 , type (type_)
120 Attribute (const std::string& name_, const glu::VarType& type_, int offset_) argument
122 , type (type_)
H A Des3fFragmentOutputTests.cpp103 FragmentOutput (glu::DataType type_, glu::Precision precision_, int location_, int arrayLength_ = 0) argument
104 : type (type_)
H A Des3fShaderCommonFunctionTests.cpp287 VarValue (const glu::VarType& type_, const void* value_) : type(type_), value(value_) {} argument
/external/deqp/modules/gles31/functional/
H A Des31fShaderIntegerFunctionTests.cpp74 VarValue (const glu::VarType& type_, const void* value_) : type(type_), value(value_) {} argument
H A Des31fShaderCommonFunctionTests.cpp314 VarValue (const glu::VarType& type_, const void* value_) : type(type_), value(value_) {} argument
/external/protobuf/src/google/protobuf/
H A Ddescriptor.h499 Type type_; member in class:google::protobuf::FieldDescriptor
662 const EnumDescriptor* type_; member in class:google::protobuf::EnumValueDescriptor
1334 return this - type_->values_;
1346 return kTypeToCppTypeMap[type_];
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfst.h402 : properties_(0), type_("null"), isymbols_(0), osymbols_(0),
406 : properties_(impl.properties_), type_(impl.type_),
416 const string& Type() const { return type_; }
418 void SetType(const string &type) { type_ = type; }
464 if (hdr->FstType() != type_) {
466 << type_ << "\": " << opts.source;
477 << type_ << " Fst version: " << opts.source;
503 hdr->SetFstType(type_);
523 string type_; // Uniqu member in class:fst::FstImpl
[all...]
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dwrench_menu.cc135 : type_(type), left_button_(NULL), right_button_(NULL) {}
160 if (type_ != RIGHT_BUTTON) {
220 return type_;
222 switch (type_) {
227 return type_;
230 const ButtonType type_; member in class:__anon5378::InMenuButtonBackground
/external/chromium_org/content/browser/fileapi/
H A Dobfuscated_file_util_unittest.cc148 type_(storage::kFileSystemTypeTemporary),
150 sandbox_file_system_(origin_, type_),
252 storage::FileSystemType type() const { return type_; }
255 return GetTypeString(type_);
804 storage::FileSystemType type_; member in class:content::ObfuscatedFileUtilTest
/external/chromium_org/google_apis/drive/
H A Dgdata_wapi_parser.h74 LinkType type() const { return type_; }
89 void set_type(LinkType type) { type_ = type; }
107 LinkType type_; member in class:google_apis::Link
133 ResourceLinkType type() const { return type_; }
138 void set_type(ResourceLinkType type) { type_ = type; }
149 ResourceLinkType type_; member in class:google_apis::ResourceLink
202 CategoryType type() const { return type_; }
208 void set_type(CategoryType type) { type_ = type; }
221 CategoryType type_; member in class:google_apis::Category
/external/chromium_org/net/spdy/
H A Dspdy_session.h192 SpdyStreamType type() const { return type_; }
199 SpdyStreamType type_; member in class:net::SpdyStreamRequest
/external/chromium_org/storage/browser/quota/
H A Dquota_manager.cc543 type_(type),
559 origin_, type_,
574 manager()->DeleteOriginFromDatabase(origin_, type_);
603 StorageType type_; member in class:storage::QuotaManager::OriginDataDeleter
623 type_(type),
638 type_, host_,
679 manager(), *p, type_, quota_client_mask_,
701 StorageType type_; member in class:storage::QuotaManager::HostDataDeleter
/external/chromium_org/third_party/libwebp/enc/
H A Dvp8enci.h231 unsigned int type_:2; // 0=i4x4, 1=i16x16 member in struct:__anon13286
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.h544 Type type_; member in class:google::protobuf::FieldDescriptor
731 const EnumDescriptor* type_; member in class:google::protobuf::EnumValueDescriptor
1470 return this - type_->values_;
1482 return kTypeToName[type_];
1486 return kTypeToCppTypeMap[type_];
1490 return kCppTypeToName[kTypeToCppTypeMap[type_]];
/external/chromium_org/third_party/webrtc/base/
H A Dvirtualsocketserver.cc99 : server_(server), family_(family), type_(type), async_(async),
103 ASSERT((type_ == SOCK_DGRAM) || (type_ == SOCK_STREAM));
104 ASSERT(async_ || (type_ != SOCK_STREAM)); // We only support async streams
157 if (SOCK_STREAM == type_) {
228 if (SOCK_DGRAM == type_) {
236 if (SOCK_DGRAM == type_) {
279 if (SOCK_STREAM == type_) {
293 ASSERT(SOCK_STREAM == type_);
311 VirtualSocket* socket = new VirtualSocket(server_, AF_INET, type_,
497 int type_; member in class:rtc::VirtualSocket
[all...]
/external/chromium_org/v8/src/compiler/
H A Dinstruction.h659 explicit Constant(int32_t v) : type_(kInt32), value_(v) {}
660 explicit Constant(int64_t v) : type_(kInt64), value_(v) {}
661 explicit Constant(double v) : type_(kFloat64), value_(bit_cast<int64_t>(v)) {}
663 : type_(kExternalReference), value_(bit_cast<intptr_t>(ref)) {}
665 : type_(kHeapObject), value_(bit_cast<intptr_t>(obj)) {}
667 Type type() const { return type_; }
697 Type type_; member in class:v8::internal::compiler::FINAL
708 : type_(state_info.type()),
717 FrameStateType type() const { return type_; }
765 if (iter->type_
775 FrameStateType type_; member in class:v8::internal::compiler::FrameStateDescriptor
[all...]
/external/chromium_org/v8/src/
H A Ddeoptimizer.h253 : masm_(masm), type_(type) { }
260 BailoutType type() const { return type_; }
267 Deoptimizer::BailoutType type_; member in class:v8::internal::Deoptimizer::BASE_EMBEDDED
555 StackFrame::Type GetFrameType() const { return type_; }
556 void SetFrameType(StackFrame::Type type) { type_ = type; }
613 StackFrame::Type type_;
H A Dtypes.h890 explicit Iterator(TypeHandle type) : type_(type), index_(-1) {
897 TypeHandle type_; member in class:v8::internal::TypeImpl::Iterator
/external/deqp/framework/common/
H A DtcuTexture.hpp100 TextureFormat (ChannelOrder order_, ChannelType type_) argument
102 , type (type_)
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.hpp346 void set_type(uint64 type) { type_ = type; }
347 uint64 type() const { return type_; }
370 uint64 type_; member in class:mkvmuxer::Track
/external/openfst/src/include/fst/
H A Dfst.h609 : properties_(0), type_("null"), isymbols_(0), osymbols_(0) {}
612 : properties_(impl.properties_), type_(impl.type_),
621 const string& Type() const { return type_; }
623 void SetType(const string &type) { type_ = type; }
690 hdr->SetFstType(type_);
771 string type_; // Unique name of Fst class member in class:fst::FstImpl
795 if (hdr->FstType() != type_) {
796 LOG(ERROR) << "FstImpl::ReadHeader: Fst not of type \"" << type_
806 LOG(ERROR) << "FstImpl::ReadHeader: Obsolete " << type_
[all...]
/external/webp/src/enc/
H A Dvp8enci.h231 unsigned int type_:2; // 0=i4x4, 1=i16x16 member in struct:__anon33383
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1625 // type_ in static mutexes. critical_section_ will be initialized lazily
1629 // This constructor intentionally does nothing. It relies on type_ being
1655 MutexType type_; member in class:testing::internal::Mutex
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxer.hpp343 void set_type(uint64 type) { type_ = type; }
344 uint64 type() const { return type_; }
371 uint64 type_; member in class:mkvmuxer::Track
/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.cc1008 type_(type),
1024 ExternalReference::Type type() { return type_; }
1052 ExternalReference::Type type_; member in class:v8::internal::Redirection

Completed in 402 milliseconds

<<11121314