/external/libchrome/base/message_loop/ |
D | message_loop_current.cc | 130 DCHECK(loop->IsType(MessageLoop::TYPE_UI) || in Get() 131 loop->IsType(MessageLoop::TYPE_JAVA)); in Get() 133 DCHECK(loop->IsType(MessageLoop::TYPE_UI)); in Get() 145 (loop->IsType(MessageLoop::TYPE_UI) || in IsSet() 146 loop->IsType(MessageLoop::TYPE_JAVA)); in IsSet() 148 loop->IsType(MessageLoop::TYPE_UI); in IsSet() 194 return loop && loop->IsType(MessageLoop::TYPE_IO); in IsSet()
|
D | message_loop.h | 156 virtual bool IsType(Type type) const;
|
D | message_loop.cc | 278 bool MessageLoop::IsType(Type type) const { in IsType() function in base::MessageLoop
|
D | message_loop_unittest.cc | 2034 TEST_P(MessageLoopTest, IsType) { in TEST_P() argument 2036 EXPECT_TRUE(loop.IsType(MessageLoop::TYPE_UI)); in TEST_P() 2037 EXPECT_FALSE(loop.IsType(MessageLoop::TYPE_IO)); in TEST_P() 2038 EXPECT_FALSE(loop.IsType(MessageLoop::TYPE_DEFAULT)); in TEST_P()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | decoder_database.cc | 144 bool DecoderDatabase::IsType(uint8_t rtp_payload_type, in IsType() function in webrtc::DecoderDatabase 155 if (IsType(rtp_payload_type, NetEqDecoder::kDecoderCNGnb) || in IsComfortNoise() 156 IsType(rtp_payload_type, NetEqDecoder::kDecoderCNGwb) || in IsComfortNoise() 157 IsType(rtp_payload_type, NetEqDecoder::kDecoderCNGswb32kHz) || in IsComfortNoise() 158 IsType(rtp_payload_type, NetEqDecoder::kDecoderCNGswb48kHz)) { in IsComfortNoise() 166 return IsType(rtp_payload_type, NetEqDecoder::kDecoderAVT); in IsDtmf() 170 return IsType(rtp_payload_type, NetEqDecoder::kDecoderRED); in IsRed()
|
D | decoder_database_unittest.cc | 117 EXPECT_FALSE(db.IsType(kPayloadTypePcmU, NetEqDecoder::kDecoderISAC)); in TEST() 118 EXPECT_TRUE(db.IsType(kPayloadTypePcmU, NetEqDecoder::kDecoderPCMu)); in TEST()
|
D | decoder_database.h | 119 virtual bool IsType(uint8_t rtp_payload_type,
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | usb_hubs.py | 45 def IsType(self, node): member in HubType 66 if self.IsType(node):
|
D | find_usb_devices.py | 327 if hub_type.IsType(device):
|
/external/clang/lib/Sema/ |
D | AttributeList.cpp | 161 unsigned IsType : 1; member 205 return getInfo(*this).IsType; in isTypeAttr()
|
D | SemaCodeComplete.cpp | 335 bool IsType(const NamedDecl *ND) const; 1166 bool ResultBuilder::IsType(const NamedDecl *ND) const { in IsType() function in ResultBuilder 4406 &ResultBuilder::IsType); in CodeCompleteOperatorName()
|
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/ |
D | options.go | 155 if !function.IsType(v.Type(), function.ValueFilter) || v.IsNil() { 226 if !function.IsType(v.Type(), function.Transformer) || v.IsNil() { 288 if !function.IsType(v.Type(), function.Equal) || v.IsNil() {
|
D | compare.go | 315 if !ok || !function.IsType(m.Type, function.EqualAssignable) {
|
/external/clang/include/clang/Serialization/ |
D | ASTWriter.h | 151 DeclOrType(Decl *D) : Stored(D), IsType(false) { } in DeclOrType() 152 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) { } in DeclOrType() 154 bool isType() const { return IsType; } in isType() 155 bool isDecl() const { return !IsType; } in isDecl() 169 bool IsType; variable
|
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/cmpopts/ |
D | sort.go | 30 if !function.IsType(vf.Type(), function.Less) || vf.IsNil() { 101 if !function.IsType(vf.Type(), function.Less) || vf.IsNil() {
|
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/function/ |
D | func.go | 29 func IsType(t reflect.Type, ft funcType) bool { func
|
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/ |
D | mock_decoder_database.h | 47 MOCK_CONST_METHOD2(IsType,
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | MinimalSymbolDumper.h | 50 std::string typeOrIdIndex(codeview::TypeIndex TI, bool IsType) const;
|
D | MinimalSymbolDumper.cpp | 341 bool IsType) const { in typeOrIdIndex() 344 auto &Container = IsType ? Types : Ids; in typeOrIdIndex() 708 bool IsType = true; in visitKnownRecord() local 713 IsType = false; in visitKnownRecord() 719 typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart, in visitKnownRecord()
|
/external/libchrome/base/files/ |
D | file_descriptor_watcher_posix_unittest.cc | 71 ASSERT_TRUE(message_loop_for_io->IsType(MessageLoop::TYPE_IO)); in SetUp()
|
/external/python/cpython2/Lib/plat-mac/ |
D | aetypes.py | 119 def IsType(x): function 123 if IsType(type): return type
|
D | aepack.py | 339 if want == 'prop' and form == 'prop' and aetypes.IsType(seld):
|
/external/clang/include/clang/AST/ |
D | Expr.h | 1993 UnaryExprOrTypeTraitExprBits.IsType = true; in UnaryExprOrTypeTraitExpr() 2010 bool isArgumentType() const { return UnaryExprOrTypeTraitExprBits.IsType; } in isArgumentType() 2028 UnaryExprOrTypeTraitExprBits.IsType = false; in setArgument() 2032 UnaryExprOrTypeTraitExprBits.IsType = true; in setArgument()
|
D | Stmt.h | 166 unsigned IsType : 1; // true if operand is a type, false if an expression. in LLVM_ALIGNAS() local
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 283 inline bool IsType() const { in IsType() function 3447 if (resolve_mode == LOOKUP_TYPES && !result.IsType()) { in LookupSymbolNoPlaceholder()
|