HomeSort by relevance Sort by last modified time
    Searched refs:Parent (Results 126 - 150 of 259) sorted by null

1 2 3 4 56 7 8 91011

  /external/llvm/lib/CodeGen/
MachineCSE.cpp 666 while (MachineDomTreeNode *Parent = Node->getIDom()) {
667 unsigned Left = --OpenChildren[Parent];
670 ExitScope(Parent->getBlock());
671 Node = Parent;
AggressiveAntiDepBreaker.cpp 81 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!");
88 // if either group is 0, then that must become the parent
89 unsigned Parent = (Group1 == 0) ? Group1 : Group2;
90 unsigned Other = (Parent == Group1) ? Group2 : Group1;
91 GroupNodes.at(Other) = Parent;
92 return Parent;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 111 bool MipsDAGToDAGISel::selectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
  /frameworks/base/core/java/android/preference/
PreferenceGroup.java 42 public abstract class PreferenceGroup extends Preference implements GenericInflater.Parent<Preference> {
GenericInflater.java 43 * Must implement {@link GenericInflater.Parent}
45 abstract class GenericInflater<T, P extends GenericInflater.Parent> {
63 public interface Parent<T> {
215 * @param root Optional parent of the generated hierarchy.
235 * @param root Optional parent of the generated hierarchy.
250 * @param root Optional root to be the parent of the generated hierarchy (if
281 * @param root Optional to be the parent of the generated hierarchy (if
462 private void rInflate(XmlPullParser parser, T parent, final AttributeSet attrs)
474 if (onCreateCustomFromTag(parser, parent, attrs)) {
487 .println("Creating params from parent: " + parent)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 54 // same format: name, parent node, and offset.
56 llvm::MDNode *Parent) {
57 return MDHelper.createTBAAScalarTypeNode(Name, Parent);
  /external/clang/test/SemaCXX/
typo-correction.cpp 169 class Parent {
173 class Child: public Parent {};
  /external/clang/tools/libclang/
CXCursor.cpp 69 CXCursor cxcursor::MakeCXCursor(const Attr *A, const Decl *Parent,
71 assert(A && Parent && TU && "Invalid arguments!");
72 CXCursor C = { GetCursorKind(A), 0, { Parent, A, TU } };
105 CXCursor cxcursor::MakeCXCursor(const Stmt *S, const Decl *Parent,
270 return MakeCXCursor(Src, Parent, TU, RegionOfInterest);
276 Parent, TU, RegionOfInterest);
530 CXCursor C = { K, 0, { Parent, S, TU } };
623 CXCursor C = { K, 0, { Parent, S, TU } };
    [all...]
  /external/llvm/lib/Analysis/
IVUsers.cpp 370 Parent->Processed.erase(this->getUser());
371 Parent->IVUses.erase(this);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 300 /// Who is the parent node of this node; if null, implies node is root.
307 procedure SetParent(const T, Parent: IANTLRInterface);
320 /// Replace from start to stop child index of parent with t, which might
324 /// If parent is null, don't do anything; must be at root of overall tree.
325 /// Can't replace whatever points to the parent externally. Do nothing.
327 procedure ReplaceChildren(const Parent: IANTLRInterface; const StartChildIndex,
375 /// Replace from start to stop child index of parent with t, which might
383 /// If parent is null, don't do anything; must be at root of overall tree.
384 /// Can't replace whatever points to the parent externally. Do nothing.
386 procedure ReplaceChildren(const Parent: IANTLRInterface; const StartChildIndex
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 607 // parent.
611 // as there is a single parent.
637 assert(!Parents.empty() && "Found node that is not in the parent map.");
639 // Only one parent - do recursive memoization.
640 const ast_type_traits::DynTypedNode Parent = Parents[0];
641 if (Matcher.matches(Parent, this, &Result.Nodes)) {
648 Parent, Matcher, &Result.Nodes, MatchMode);
650 // same as the parent's result.
664 for (const auto &Parent :
669 if (Visited.insert(Parent.getMemoizationData()).second
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 122 /// return type than the parent's method. For C++ objects, this means we need
224 // The parent context might not be a stack frame, so make sure we
391 while (const DeclContext *Parent = ND->getParent()) {
392 if (!isa<NamespaceDecl>(Parent))
394 ND = cast<NamespaceDecl>(Parent);
623 if (const Stmt *Parent = CurLC->getParentMap().getParent(CtorExpr))
624 if (isa<CXXNewExpr>(Parent))
    [all...]
PathDiagnostic.cpp 517 const Stmt *Parent = S;
519 Parent = PM.getParent(Parent);
525 if (!Parent) {
534 L = UseEnd ? Parent->getLocEnd() : Parent->getLocStart();
    [all...]
  /external/libchrome/base/
bind_unittest.cc 63 class Parent {
65 virtual ~Parent() = default;
73 class Child : public Parent {
366 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child);
371 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child);
  /external/libweave/third_party/chromium/base/
bind_unittest.cc 64 class Parent {
66 virtual ~Parent() = default;
74 class Child : public Parent {
367 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child);
372 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child);
  /external/llvm/lib/IR/
Function.cpp 49 Parent = nullptr;
56 void Argument::setParent(Function *parent) {
57 Parent = parent;
197 AttributeSet::get(Parent->getContext(),
207 AttributeSet::get(Parent->getContext(),
305 void Function::setParent(Module *parent) {
306 Parent = parent;
    [all...]
  /external/llvm/include/llvm/CodeGen/
DIE.h 630 DIE *Parent = nullptr;
659 DIE *getParent() const { return Parent; }
670 /// Climb up the parent chain to get the compile or type unit DIE this DIE
682 Child->Parent = this;
SelectionDAGISel.h 229 virtual bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N,
  /external/llvm/lib/Transforms/Scalar/
MergedLoadStoreMotion.cpp 131 /// \brief Remove instruction from parent and update memory dependence
181 /// \brief Remove instruction from parent and update memory dependence analysis.
318 /// \brief Return true if no operand of \p I is defined in I's parent block
321 BasicBlock *Parent = I->getParent();
324 if (Instr && Instr->getParent() == Parent)
  /external/lzma/CPP/Common/
Wildcard.cpp 414 if (Parent == 0)
417 return Parent->CheckPathToRoot(include, pathParts, isFile);
  /frameworks/compile/slang/
slang_rs_export_type.h 553 const RSExportRecordType *Parent,
557 mParent(Parent),
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 91 public virtual object DupTree(object t, object parent) {
96 // ensure new subtree root has parent/child index set
98 SetParent(newTree, parent);
186 // whoever invokes rule will set parent and child index
187 r.Parent = null;
312 public abstract void SetParent(object t, object parent);
315 public abstract void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t);
  /external/clang/lib/Format/
TokenAnnotator.cpp 262 FormatToken *Parent = Left->getPreviousNonComment();
267 (!Parent ||
268 Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
270 Parent->isUnaryOperator() ||
271 Parent->isOneOf(TT_ObjCForIn, TT_CastRParen) ||
272 getBinOpPrecedence(Parent->Tok.getKind(), true, true) > prec::Unknown);
279 } else if (Style.Language == FormatStyle::LK_JavaScript && Parent &&
281 Parent->isOneOf(tok::l_brace, tok::comma)) {
283 } else if (Parent &&
284 Parent->isOneOf(tok::at, tok::equal, tok::comma, tok::l_paren
    [all...]
  /external/llvm/include/llvm/IR/
Metadata.h     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 1190 milliseconds

1 2 3 4 56 7 8 91011