Searched defs:Node (Results 226 - 250 of 302) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlobject.h548 struct Node *next; /* for chaining */
554 typedef struct Node { struct
557 } Node; typedef in typeref:struct:Node
566 Node *node;
567 Node *lastfree; /* any free position is before this position */
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h61 /// \brief Adds \c Node to the map with key \c ID.
65 void addNode(StringRef ID, const T* Node) { argument
66 NodeMap[ID] = ast_type_traits::DynTypedNode::create(*Node);
129 template <typename T> void setBinding(const std::string &Id, const T *Node) { argument
133 Bindings[i].addNode(Id, Node);
174 /// \brief Returns true if 'Node' can be matched.
176 /// May bind 'Node' to an ID via 'Builder', or recurse into
178 virtual bool matches(const T &Node,
191 virtual bool matchesNode(const T &Node) const = 0;
195 bool matches(const T &Node,
237 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
574 matchesSpecialized( const U &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder, typename std::enable_if<has_getDecl<U>::value, int>::type = 0) const argument
582 matchesSpecialized(const QualType &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
594 matchesSpecialized(const TemplateSpecializationType &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
603 matchesSpecialized(const CallExpr &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
610 matchesSpecialized(const CXXConstructExpr &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
618 matchesSpecialized(const MemberExpr &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
626 matchesDecl(const Decl *Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
708 matchesChildOf(const T &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, TraversalKind Traverse, BindKind Bind) argument
725 matchesDescendantOf(const T &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, BindKind Bind) argument
742 matchesAncestorOf(const T &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, AncestorMatchMode MatchMode) argument
1638 ast_type_traits::DynTypedNode Node; member in struct:clang::ast_matchers::internal::VariadicOperatorMatcherFunc::NotEqualsBoundNodePredicate
[all...]
/external/clang/lib/AST/
H A DASTDiagnostic.cpp529 // Node writing functions.
597 DiffNode &Node = FlatTree[CurrentNode]; local
598 if (Node.ChildNode == 0) {
600 Node.ChildNode = NextFreeNode;
605 for (i = Node.ChildNode; FlatTree[i].NextNode != 0;
614 // Node reading functions.
1310 // Node is root of template. Recurse on children.
H A DASTDumper.cpp218 void dumpBareDeclRef(const Decl *Node);
219 void dumpDeclRef(const Decl *Node, const char *Label = nullptr);
302 void VisitStmt(const Stmt *Node);
303 void VisitDeclStmt(const DeclStmt *Node);
304 void VisitAttributedStmt(const AttributedStmt *Node);
305 void VisitLabelStmt(const LabelStmt *Node);
306 void VisitGotoStmt(const GotoStmt *Node);
307 void VisitCXXCatchStmt(const CXXCatchStmt *Node);
310 void VisitExpr(const Expr *Node);
311 void VisitCastExpr(const CastExpr *Node);
340 VisitLambdaExpr(const LambdaExpr *Node) argument
1523 VisitStmt(const Stmt *Node) argument
1532 VisitDeclStmt(const DeclStmt *Node) argument
1543 VisitAttributedStmt(const AttributedStmt *Node) argument
1554 VisitLabelStmt(const LabelStmt *Node) argument
1559 VisitGotoStmt(const GotoStmt *Node) argument
1565 VisitCXXCatchStmt(const CXXCatchStmt *Node) argument
1574 VisitExpr(const Expr *Node) argument
1613 dumpBasePath(raw_ostream &OS, const CastExpr *Node) argument
1638 VisitCastExpr(const CastExpr *Node) argument
1649 VisitDeclRefExpr(const DeclRefExpr *Node) argument
1661 VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node) argument
1676 VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node) argument
1689 VisitPredefinedExpr(const PredefinedExpr *Node) argument
1702 VisitCharacterLiteral(const CharacterLiteral *Node) argument
1708 VisitIntegerLiteral(const IntegerLiteral *Node) argument
1716 VisitFloatingLiteral(const FloatingLiteral *Node) argument
1745 VisitUnaryOperator(const UnaryOperator *Node) argument
1751 VisitUnaryExprOrTypeTraitExpr( const UnaryExprOrTypeTraitExpr *Node) argument
1769 VisitMemberExpr(const MemberExpr *Node) argument
1775 VisitExtVectorElementExpr(const ExtVectorElementExpr *Node) argument
1780 VisitBinaryOperator(const BinaryOperator *Node) argument
1785 VisitCompoundAssignOperator( const CompoundAssignOperator *Node) argument
1795 VisitBlockExpr(const BlockExpr *Node) argument
1800 VisitOpaqueValueExpr(const OpaqueValueExpr *Node) argument
1811 VisitAddrLabelExpr(const AddrLabelExpr *Node) argument
1821 VisitCXXNamedCastExpr(const CXXNamedCastExpr *Node) argument
1830 VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node) argument
1835 VisitCXXThisExpr(const CXXThisExpr *Node) argument
1840 VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *Node) argument
1846 VisitCXXConstructExpr(const CXXConstructExpr *Node) argument
1856 VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Node) argument
1863 VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Node) argument
1871 VisitExprWithCleanups(const ExprWithCleanups *Node) argument
1887 VisitObjCMessageExpr(const ObjCMessageExpr *Node) argument
1910 VisitObjCBoxedExpr(const ObjCBoxedExpr *Node) argument
1916 VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) argument
1924 VisitObjCEncodeExpr(const ObjCEncodeExpr *Node) argument
1929 VisitObjCSelectorExpr(const ObjCSelectorExpr *Node) argument
1936 VisitObjCProtocolExpr(const ObjCProtocolExpr *Node) argument
1942 VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) argument
1973 VisitObjCSubscriptRefExpr(const ObjCSubscriptRefExpr *Node) argument
1994 VisitObjCBoolLiteralExpr(const ObjCBoolLiteralExpr *Node) argument
[all...]
H A DStmtPrinter.cpp94 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
97 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED {
100 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);
104 void Visit##CLASS(CLASS *Node);
115 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { argument
117 for (auto *I : Node->body())
132 void StmtPrinter::VisitNullStmt(NullStmt *Node) { argument
136 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { argument
138 PrintRawDeclStmt(Node);
142 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { argument
148 VisitCaseStmt(CaseStmt *Node) argument
160 VisitDefaultStmt(DefaultStmt *Node) argument
165 VisitLabelStmt(LabelStmt *Node) argument
170 VisitAttributedStmt(AttributedStmt *Node) argument
218 VisitSwitchStmt(SwitchStmt *Node) argument
237 VisitWhileStmt(WhileStmt *Node) argument
247 VisitDoStmt(DoStmt *Node) argument
263 VisitForStmt(ForStmt *Node) argument
292 VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) argument
311 VisitCXXForRangeStmt(CXXForRangeStmt *Node) argument
324 VisitMSDependentExistsStmt(MSDependentExistsStmt *Node) argument
340 VisitGotoStmt(GotoStmt *Node) argument
345 VisitIndirectGotoStmt(IndirectGotoStmt *Node) argument
352 VisitContinueStmt(ContinueStmt *Node) argument
357 VisitBreakStmt(BreakStmt *Node) argument
363 VisitReturnStmt(ReturnStmt *Node) argument
374 VisitGCCAsmStmt(GCCAsmStmt *Node) argument
437 VisitMSAsmStmt(MSAsmStmt *Node) argument
447 VisitCapturedStmt(CapturedStmt *Node) argument
451 VisitObjCAtTryStmt(ObjCAtTryStmt *Node) argument
480 VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) argument
483 VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node) argument
487 VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) argument
496 VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) argument
504 VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *Node) argument
510 PrintRawCXXCatchStmt(CXXCatchStmt *Node) argument
520 VisitCXXCatchStmt(CXXCatchStmt *Node) argument
526 VisitCXXTryStmt(CXXTryStmt *Node) argument
536 VisitSEHTryStmt(SEHTryStmt *Node) argument
550 PrintRawSEHFinallyStmt(SEHFinallyStmt *Node) argument
556 PrintRawSEHExceptHandler(SEHExceptStmt *Node) argument
564 VisitSEHExceptStmt(SEHExceptStmt *Node) argument
570 VisitSEHFinallyStmt(SEHFinallyStmt *Node) argument
576 VisitSEHLeaveStmt(SEHLeaveStmt *Node) argument
600 VisitOMPIfClause(OMPIfClause *Node) argument
606 VisitOMPNumThreadsClause(OMPNumThreadsClause *Node) argument
612 VisitOMPSafelenClause(OMPSafelenClause *Node) argument
618 VisitOMPCollapseClause(OMPCollapseClause *Node) argument
624 VisitOMPDefaultClause(OMPDefaultClause *Node) argument
630 VisitOMPProcBindClause(OMPProcBindClause *Node) argument
636 VisitOMPScheduleClause(OMPScheduleClause *Node) argument
655 VisitOMPClauseList(T *Node, char StartSym) argument
670 VisitOMPPrivateClause(OMPPrivateClause *Node) argument
678 VisitOMPFirstprivateClause(OMPFirstprivateClause *Node) argument
686 VisitOMPLastprivateClause(OMPLastprivateClause *Node) argument
694 VisitOMPSharedClause(OMPSharedClause *Node) argument
702 VisitOMPReductionClause(OMPReductionClause *Node) argument
724 VisitOMPLinearClause(OMPLinearClause *Node) argument
736 VisitOMPAlignedClause(OMPAlignedClause *Node) argument
748 VisitOMPCopyinClause(OMPCopyinClause *Node) argument
756 VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) argument
788 VisitOMPParallelDirective(OMPParallelDirective *Node) argument
793 VisitOMPSimdDirective(OMPSimdDirective *Node) argument
798 VisitOMPForDirective(OMPForDirective *Node) argument
803 VisitOMPSectionsDirective(OMPSectionsDirective *Node) argument
808 VisitOMPSectionDirective(OMPSectionDirective *Node) argument
813 VisitOMPSingleDirective(OMPSingleDirective *Node) argument
818 VisitOMPParallelForDirective(OMPParallelForDirective *Node) argument
823 VisitOMPParallelSectionsDirective( OMPParallelSectionsDirective *Node) argument
833 VisitDeclRefExpr(DeclRefExpr *Node) argument
844 VisitDependentScopeDeclRefExpr( DependentScopeDeclRefExpr *Node) argument
856 VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) argument
867 VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) argument
875 VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) argument
891 VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *Node) argument
899 VisitPredefinedExpr(PredefinedExpr *Node) argument
924 VisitCharacterLiteral(CharacterLiteral *Node) argument
979 VisitIntegerLiteral(IntegerLiteral *Node) argument
1001 PrintFloatingLiteral(raw_ostream &OS, FloatingLiteral *Node, bool PrintSuffix) argument
1022 VisitFloatingLiteral(FloatingLiteral *Node) argument
1026 VisitImaginaryLiteral(ImaginaryLiteral *Node) argument
1034 VisitParenExpr(ParenExpr *Node) argument
1039 VisitUnaryOperator(UnaryOperator *Node) argument
1065 VisitOffsetOfExpr(OffsetOfExpr *Node) argument
1099 VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *Node) argument
1126 VisitGenericSelectionExpr(GenericSelectionExpr *Node) argument
1142 VisitArraySubscriptExpr(ArraySubscriptExpr *Node) argument
1167 VisitMemberExpr(MemberExpr *Node) argument
1191 VisitObjCIsaExpr(ObjCIsaExpr *Node) argument
1196 VisitExtVectorElementExpr(ExtVectorElementExpr *Node) argument
1201 VisitCStyleCastExpr(CStyleCastExpr *Node) argument
1207 VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) argument
1213 VisitImplicitCastExpr(ImplicitCastExpr *Node) argument
1217 VisitBinaryOperator(BinaryOperator *Node) argument
1222 VisitCompoundAssignOperator(CompoundAssignOperator *Node) argument
1227 VisitConditionalOperator(ConditionalOperator *Node) argument
1238 VisitBinaryConditionalOperator(BinaryConditionalOperator *Node) argument
1243 VisitAddrLabelExpr(AddrLabelExpr *Node) argument
1253 VisitChooseExpr(ChooseExpr *Node) argument
1267 VisitShuffleVectorExpr(ShuffleVectorExpr *Node) argument
1276 VisitConvertVectorExpr(ConvertVectorExpr *Node) argument
1284 VisitInitListExpr(InitListExpr* Node) argument
1301 VisitParenListExpr(ParenListExpr* Node) argument
1310 VisitDesignatedInitExpr(DesignatedInitExpr *Node) argument
1338 VisitImplicitValueInitExpr(ImplicitValueInitExpr *Node) argument
1354 VisitVAArgExpr(VAArgExpr *Node) argument
1362 VisitPseudoObjectExpr(PseudoObjectExpr *Node) argument
1366 VisitAtomicExpr(AtomicExpr *Node) argument
1407 VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) argument
1453 VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) argument
1463 VisitCUDAKernelCallExpr(CUDAKernelCallExpr *Node) argument
1472 VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) argument
1480 VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) argument
1484 VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) argument
1488 VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) argument
1492 VisitCXXConstCastExpr(CXXConstCastExpr *Node) argument
1496 VisitCXXTypeidExpr(CXXTypeidExpr *Node) argument
1506 VisitCXXUuidofExpr(CXXUuidofExpr *Node) argument
1516 VisitMSPropertyRefExpr(MSPropertyRefExpr *Node) argument
1528 VisitUserDefinedLiteral(UserDefinedLiteral *Node) argument
1566 VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) argument
1570 VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *Node) argument
1574 VisitCXXThisExpr(CXXThisExpr *Node) argument
1578 VisitCXXThrowExpr(CXXThrowExpr *Node) argument
1587 VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) argument
1591 VisitCXXDefaultInitExpr(CXXDefaultInitExpr *Node) argument
1595 VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) argument
1602 VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *Node) argument
1606 VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) argument
1621 VisitLambdaExpr(LambdaExpr *Node) argument
1709 VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *Node) argument
1809 VisitCXXUnresolvedConstructExpr( CXXUnresolvedConstructExpr *Node) argument
1823 VisitCXXDependentScopeMemberExpr( CXXDependentScopeMemberExpr *Node) argument
1839 VisitUnresolvedMemberExpr(UnresolvedMemberExpr *Node) argument
1920 VisitSubstNonTypeTemplateParmPackExpr( SubstNonTypeTemplateParmPackExpr *Node) argument
1925 VisitSubstNonTypeTemplateParmExpr( SubstNonTypeTemplateParmExpr *Node) argument
1934 VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *Node) argument
1940 VisitObjCStringLiteral(ObjCStringLiteral *Node) argument
1980 VisitObjCEncodeExpr(ObjCEncodeExpr *Node) argument
1986 VisitObjCSelectorExpr(ObjCSelectorExpr *Node) argument
1992 VisitObjCProtocolExpr(ObjCProtocolExpr *Node) argument
2034 VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *Node) argument
2051 VisitBlockExpr(BlockExpr *Node) argument
2078 VisitOpaqueValueExpr(OpaqueValueExpr *Node) argument
2082 VisitAsTypeExpr(AsTypeExpr *Node) argument
[all...]
H A DStmtProfile.cpp38 #define STMT(Node, Base) void Visit##Node(const Node *S);
263 void VisitOMPClauseList(T *Node);
305 void OMPClauseProfiler::VisitOMPClauseList(T *Node) { argument
306 for (auto *I : Node->varlists())
/external/clang/lib/Format/
H A DFormat.cpp1082 StateNode *Node = local
1084 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
1092 StateNode *Node = Queue.top().second; local
1093 if (!Node->State.NextToken) {
1102 Node->State.IgnoreStackForComparison = true;
1104 if (!Seen.insert(&Node->State).second)
1108 FormatDecision LastFormat = Node->State.NextToken->Decision;
1110 addNextStateToQueue(Penalty, Node, /*NewLine=*/false, &Count, &Queue);
1112 addNextStateToQueue(Penalty, Node, /*NewLine=*/true, &Count, &Queue);
1166 StateNode *Node
[all...]
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h229 bool isHeader(const BlockNode &Node) const {
232 Node);
233 return Node == Nodes[0];
249 BlockNode Node; ///< This node. member in struct:llvm::BlockFrequencyInfoImplBase::WorkingData
253 WorkingData(const BlockNode &Node) : Node(Node), Loop(nullptr) {} argument
255 bool isLoopHeader() const { return Loop && Loop->isHeader(Node); }
258 Loop->Parent->isHeader(Node);
271 /// Get the node currently representing Node, whic
354 addLocal(const BlockNode &Node, uint64_t Amount) argument
357 addExit(const BlockNode &Node, uint64_t Amount) argument
360 addBackedge(const BlockNode &Node, uint64_t Amount) argument
542 BlockNode Node; member in struct:llvm::bfi_detail::IrreducibleGraph::IrrNode
545 IrrNode(const BlockNode &Node) argument
579 addNode(const BlockNode &Node) argument
605 addEdges(const BlockNode &Node, const BFIBase::LoopData *OuterLoop, BlockEdgesAdder addBlockEdges) argument
965 BlockNode Node = getNode(I); local
1083 BlockNode Node = getNode(I); local
1144 propagateMassToSuccessors(LoopData *OuterLoop, const BlockNode &Node) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp287 const SDNode *Node = RegDefPos.GetNode(); local
290 if (!Node->isMachineOpcode() && Node->getOpcode() == ISD::CopyFromReg) {
291 unsigned Reg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
298 unsigned Opcode = Node->getMachineOpcode();
300 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
552 for (SDNode *Node = SU->getNode(); Node; Node = Node
[all...]
H A DSelectionDAGISel.cpp326 SDNode *Node) const {
392 // Since this block has a PHI Node, we assume it has multiple input
858 SDNode *Node = --ISelPosition; local
862 if (Node->use_empty())
865 SDNode *ResNode = Select(Node);
871 if (ResNode == Node || Node->getOpcode() == ISD::DELETED_NODE)
875 ReplaceUses(Node, ResNode);
880 if (Node->use_empty()) // Don't delete EntryToken, etc.
881 CurDAG->RemoveDeadNode(Node);
2161 MorphNode(SDNode *Node, unsigned TargetOpc, SDVTList VTList, ArrayRef<SDValue> Ops, unsigned EmitNodeInfo) argument
[all...]
H A DLegalizeIntegerTypes.cpp1224 std::pair <SDValue, SDValue> DAGTypeLegalizer::ExpandAtomic(SDNode *Node) { argument
1225 unsigned Opc = Node->getOpcode();
1226 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
1314 return ExpandChainLibCall(LC, Node, false);
2004 void DAGTypeLegalizer::ExpandIntRes_SADDSUBO(SDNode *Node, argument
2006 SDValue LHS = Node->getOperand(0);
2007 SDValue RHS = Node->getOperand(1);
2008 SDLoc dl(Node);
2012 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
2028 EVT OType = Node
[all...]
/external/llvm/lib/IR/
H A DAsmWriter.cpp1045 static void WriteMDNodeBodyInternal(raw_ostream &Out, const MDNode *Node, argument
1050 for (unsigned mi = 0, me = Node->getNumOperands(); mi != me; ++mi) {
1051 const Value *V = Node->getOperand(mi);
1057 WriteAsOperandInternal(Out, Node->getOperand(mi),
2111 static void WriteMDNodeComment(const MDNode *Node, argument
2113 if (Node->getNumOperands() < 1)
2116 Value *Op = Node->getOperand(0);
2120 DIDescriptor Desc(Node);
2134 void AssemblyWriter::writeMDNode(unsigned Slot, const MDNode *Node) { argument
2136 printMDNodeBody(Node);
2151 printMDNodeBody(const MDNode *Node) argument
[all...]
H A DDebugInfo.cpp136 MDNode *Node = const_cast<MDNode *>(DbgNode); local
137 Node->replaceOperandWith(Elt, F);
361 MDNode *Node = const_cast<MDNode *>(DbgNode); local
363 Node->replaceAllUsesWith(const_cast<Value *>(V));
364 MDNode::deleteTemporary(Node);
374 MDNode *Node = const_cast<MDNode *>(DbgNode); local
377 Node->replaceAllUsesWith(const_cast<Value *>(V));
378 MDNode::deleteTemporary(Node);
/external/llvm/lib/Support/
H A DYAMLParser.cpp100 void Node::anchor() {}
1534 void Stream::printError(Node *N, const Twine &Msg) {
1563 Node::Node(unsigned int Type, std::unique_ptr<Document> &D, StringRef A, function in class:Node
1570 std::string Node::getVerbatimTag() const {
1614 Token &Node::peekNext() {
1618 Token Node::getNext() {
1622 Node *Node::parseBlockNode() {
1626 BumpPtrAllocator &Node
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp65 SDNode *Select(SDNode *Node) override;
527 MachineSDNode *Node = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG, local
529 return SDValue(Node, 0);
669 MachineSDNode *Node = CurDAG->getMachineNode( local
671 return SDValue(Node, 0);
726 const SDNode *Node = N.getNode(); local
727 for (SDNode *UI : Node->uses()) {
797 const SDNode *Node = N.getNode(); local
798 for (SDNode *UI : Node->uses()) {
1545 MachineSDNode *Node local
2042 Select(SDNode *Node) argument
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp690 SDNode *Node = Op.getNode(); local
694 switch (Node->getOpcode()) {
696 unsigned NumOps = Node->getNumOperands();
697 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
704 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
721 cast<RegisterSDNode>(Node->getOperand(i))->getReg();
737 } // Node->getOpcode
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp2178 SDNode *R600TargetLowering::PostISelFolding(MachineSDNode *Node, argument
2182 if (!Node->isMachineOpcode())
2183 return Node;
2184 unsigned Opcode = Node->getMachineOpcode();
2188 for (const SDUse &I : Node->ops())
2224 return Node;
2233 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, FakeOp, DAG))
2234 return DAG.getMachineNode(Opcode, SDLoc(Node), Node->getVTList(), Ops);
2237 for (unsigned i = 1, e = Node
[all...]
H A DSIISelLowering.cpp1203 if (const ConstantSDNode *Node = dyn_cast<ConstantSDNode>(N)) {
1204 if (Node->getZExtValue() >> 32) {
1207 Imm.I = Node->getSExtValue();
1208 } else if (const ConstantFPSDNode *Node = dyn_cast<ConstantFPSDNode>(N)) {
1211 Imm.F = Node->getValueAPF().convertToFloat();
1352 SDNode *Node = DAG.getMachineNode(TargetOpcode::COPY_TO_REGCLASS, SDLoc(), local
1354 Operand = SDValue(Node, 0);
1357 /// \returns true if \p Node's operands are different from the SDValue list
1359 static bool isNodeChanged(const SDNode *Node, const std::vector<SDValue> &Ops) { argument
1360 for (unsigned i = 0, e = Node
1369 foldOperands(MachineSDNode *Node, SelectionDAG &DAG) const argument
1556 adjustWritemask(MachineSDNode *&Node, SelectionDAG &DAG) const argument
1636 PostISelFolding(MachineSDNode *Node, SelectionDAG &DAG) const argument
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp487 Entry.Node = BasePtr;
544 Entry.Node = BasePtr;
547 Entry.Node = Value;
758 SDNode *Node = Op.getNode(); local
759 EVT VT = Node->getValueType(0); // not an aggregate
760 SDValue InChain = Node->getOperand(0);
761 SDValue VAListPtr = Node->getOperand(1);
763 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
764 SDLoc dl(Node);
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h1699 TiXmlNode* Node() const { return ToNode(); } function in class:TiXmlHandle
/external/tinyxml/
H A Dtinyxml.h1494 TiXmlNode* Node() const { return node; } function in class:TiXmlHandle
/external/webp/src/enc/
H A Dquant.c523 } Node; typedef in typeref:struct:__anon33375
558 Node nodes[16][NUM_NODES];
618 Node* const cur = &NODE(n, m);
698 const Node* const node = &NODE(n, best_node);
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1956 Node *Root = I->getRoot();
1976 void parseEdit(llvm::yaml::MappingNode *Node, argument
1983 KVI = Node->begin(), KVE = Node->end(); KVI != KVE; ++KVI) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp529 typedef OffsetOfExpr::OffsetOfNode Node; typedef
539 Node::Kind Kind = static_cast<Node::Kind>(Record[Idx++]);
543 case Node::Array:
544 E->setComponent(I, Node(Start, Record[Idx++], End));
547 case Node::Field:
548 E->setComponent(I, Node(Start, ReadDeclAs<FieldDecl>(Record, Idx), End));
551 case Node::Identifier:
553 Node(Start,
558 case Node
[all...]
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp667 assert(!SU->isScheduled && "Node already scheduled");
1014 assert(!SU->isScheduled && "Node already scheduled");
3227 static bool isNodeHidden(const SUnit *Node) { argument
3228 return (Node->Preds.size() > 10 || Node->Succs.size() > 10);
3231 static bool hasNodeAddressLabel(const SUnit *Node, argument
3238 static std::string getEdgeAttributes(const SUnit *Node, argument

Completed in 3651 milliseconds

1234567891011>>