Home
last modified time | relevance | path

Searched refs:GetKind (Results 1 – 25 of 61) sorted by relevance

123

/external/llvm-project/lldb/source/Plugins/Process/POSIX/
DProcessMessage.h43 Kind GetKind() const { return m_kind; } in GetKind() function
107 assert(GetKind() == eExitMessage || GetKind() == eLimboMessage); in GetExitStatus()
112 assert(GetKind() == eSignalMessage || GetKind() == eCrashMessage || in GetSignal()
113 GetKind() == eSignalDeliveredMessage); in GetSignal()
118 assert(GetKind() == eSignalMessage); in GetStopStatus()
123 assert(GetKind() == eCrashMessage); in GetCrashReason()
128 assert(GetKind() == eCrashMessage); in GetFaultAddress()
133 assert(GetKind() == eWatchpointMessage || GetKind() == eTraceMessage); in GetHWAddress()
138 assert(GetKind() == eNewThreadMessage); in GetChildTID()
/external/llvm-project/lldb/include/lldb/Symbol/
DPostfixExpression.h44 Kind GetKind() const { return m_kind; } in GetKind() function
70 static bool classof(const Node *node) { return node->GetKind() == BinaryOp; } in classof()
84 return node->GetKind() == InitialValue; in classof()
95 static bool classof(const Node *node) { return node->GetKind() == Integer; } in classof()
111 static bool classof(const Node *node) { return node->GetKind() == Register; } in classof()
125 static bool classof(const Node *node) { return node->GetKind() == Symbol; } in classof()
146 static bool classof(const Node *node) { return node->GetKind() == UnaryOp; } in classof()
177 switch (node->GetKind()) { in Dispatch()
DDeclVendor.h33 DeclVendorKind GetKind() const { return m_kind; } in GetKind() function
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_lexer.h99 TokKind GetKind() const { return token_state_.current_kind; } in GetKind() function
101 switch (GetKind()) { in GetStrVal()
115 CHECK(GetKind() == TokKind::kInt); in GetInt64Val()
119 CHECK(GetKind() == TokKind::kDecimal); in GetDecimalVal()
123 CHECK(GetKind() == TokKind::kPrimitiveType); in GetPrimitiveTypeVal()
Dhlo_parser.cc596 if (lexer_.GetKind() == TokKind::kw_HloModule) { in Run()
655 while (lexer_.GetKind() != TokKind::kRbrace) { in ParseShapeIndex()
678 while (lexer_.GetKind() != TokKind::kRbrace) { in ParseAliasing()
743 while (lexer_.GetKind() != TokKind::kRbrace) { in ParseInstructionOutputOperandAliasing()
788 if (lexer_.GetKind() != TokKind::kw_HloModule) { in ParseHloModule()
840 } while (lexer_.GetKind() != TokKind::kEof); in ParseComputations()
929 } while (lexer_.GetKind() != TokKind::kRbrace); in ParseInstructionList()
2666 if (lexer_.GetKind() != TokKind::kLbrace && in ParseSharding()
2667 lexer_.GetKind() != TokKind::kRbrace) { in ParseSharding()
2673 if (lexer_.GetKind() != TokKind::kRbrace) { in ParseSharding()
[all …]
Dhlo_lexer.cc81 if (GetKind() == TokKind::kEof || GetKind() == TokKind::kError) { in LookAhead()
82 return GetKind(); in LookAhead()
88 TokKind kind = GetKind(); in LookAhead()
/external/golang-protobuf/ptypes/struct/
Dstruct.pb.go191 func (m *Value) GetKind() isValue_Kind { func
199 if x, ok := m.GetKind().(*Value_NullValue); ok {
206 if x, ok := m.GetKind().(*Value_NumberValue); ok {
213 if x, ok := m.GetKind().(*Value_StringValue); ok {
220 if x, ok := m.GetKind().(*Value_BoolValue); ok {
227 if x, ok := m.GetKind().(*Value_StructValue); ok {
234 if x, ok := m.GetKind().(*Value_ListValue); ok {
/external/llvm-project/lldb/tools/debugserver/source/
DJSON.h35 Kind GetKind() const { return m_kind; } in GetKind() function
59 return V->GetKind() == JSONValue::Kind::String; in classof()
120 return V->GetKind() == JSONValue::Kind::Number; in classof()
145 return V->GetKind() == JSONValue::Kind::True; in classof()
163 return V->GetKind() == JSONValue::Kind::False; in classof()
181 return V->GetKind() == JSONValue::Kind::Null; in classof()
199 return V->GetKind() == JSONValue::Kind::Object; in classof()
243 return V->GetKind() == JSONValue::Kind::Array; in classof()
/external/llvm-project/lldb/source/API/
DSBQueueItem.cpp60 lldb::QueueItemKind SBQueueItem::GetKind() const { in GetKind() function in SBQueueItem
61 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::QueueItemKind, SBQueueItem, GetKind); in GetKind()
65 result = m_queue_item_sp->GetKind(); in GetKind()
131 LLDB_REGISTER_METHOD_CONST(lldb::QueueItemKind, SBQueueItem, GetKind, ()); in RegisterMethods()
DSBQueue.cpp200 lldb::QueueKind GetKind() { in GetKind() function in lldb_private::QueueImpl
204 kind = queue_sp->GetKind(); in GetKind()
326 lldb::QueueKind SBQueue::GetKind() { in GetKind() function in SBQueue
327 LLDB_RECORD_METHOD_NO_ARGS(lldb::QueueKind, SBQueue, GetKind); in GetKind()
329 return m_opaque_sp->GetKind(); in GetKind()
355 LLDB_REGISTER_METHOD(lldb::QueueKind, SBQueue, GetKind, ()); in RegisterMethods()
DSBTypeSummary.cpp239 return m_opaque_sp->GetKind() == TypeSummaryImpl::Kind::eSummaryString; in IsSummaryString()
376 if (m_opaque_sp->GetKind() != rhs.m_opaque_sp->GetKind()) in IsEqualTo()
379 switch (m_opaque_sp->GetKind()) { in IsEqualTo()
455 (m_opaque_sp->GetKind() == TypeSummaryImpl::Kind::eScript)) { in ChangeSummaryType()
456 if (m_opaque_sp->GetKind() == in ChangeSummaryType()
/external/llvm-project/lldb/bindings/interface/
DSBQueue.i48 GetKind();
51 GetKind();
DSBQueueItem.i29 GetKind () const;
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangDeclVendor.h33 return vendor->GetKind() >= eClangDeclVendor && in classof()
34 vendor->GetKind() < eLastClangDeclVendor; in classof()
DClangModulesDeclVendor.h30 return vendor->GetKind() == eClangModuleDeclVendor; in classof()
/external/llvm-project/lldb/include/lldb/DataFormatters/
DTypeSummary.h51 Kind GetKind() const { return m_kind; } in GetKind() function
297 return S->GetKind() == Kind::eSummaryString; in classof()
340 return S->GetKind() == Kind::eCallback; in classof()
388 return S->GetKind() == Kind::eScript; in classof()
/external/llvm-project/flang/lib/Semantics/
Dprogram-tree.cpp126 auto kind{GetKind()}; in IsModule()
131 return GetKind() == Kind::Function ? Symbol::Flag::Function in GetSubpFlag()
158 ProgramTree::Kind ProgramTree::GetKind() const { in GetKind() function in Fortran::semantics::ProgramTree
/external/llvm-project/lldb/include/lldb/Expression/
DDynamicCheckerFunctions.h55 DynamicCheckerFunctionsKind GetKind() const { return m_kind; } in GetKind() function
/external/llvm-project/lldb/include/lldb/API/
DSBQueueItem.h31 lldb::QueueItemKind GetKind() const;
DSBQueue.h55 lldb::QueueKind GetKind();
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCDeclVendor.h27 return vendor->GetKind() == eAppleObjCDeclVendor; in classof()
/external/llvm-project/lldb/test/API/macosx/queues/
DTestQueues.py89 if queue.GetKind() == lldb.eQueueKindSerial:
91 if queue.GetKind() == lldb.eQueueKindConcurrent:
94 queue.GetKind() == kind,
/external/llvm-project/lldb/source/Target/
DThreadPlanStepRange.cpp127 GetKind() == eKindStepOverRange; in InRange()
146 GetKind() == eKindStepOverRange; in InRange()
330 const bool ignore_calls = GetKind() == eKindStepOverRange; in SetNextBranchBreakpoint()
/external/libvpx/libwebm/mkvparser/
Dmkvparser.h129 bool EOS() const { return (GetKind() == kBlockEOS); } in EOS()
135 virtual Kind GetKind() const = 0;
150 Kind GetKind() const;
170 Kind GetKind() const;
381 Kind GetKind() const;
/external/libaom/libaom/third_party/libwebm/mkvparser/
Dmkvparser.h129 bool EOS() const { return (GetKind() == kBlockEOS); } in EOS()
135 virtual Kind GetKind() const = 0;
150 Kind GetKind() const;
170 Kind GetKind() const;
381 Kind GetKind() const;

123