HomeSort by relevance Sort by last modified time
    Searched refs:Parent (Results 476 - 500 of 818) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
Socket.h 426 SOCKET *Parent; ///< The parent of this socket
487 SOCKET *Parent; ///< listening parent that accept the connection
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 58 // same format: name, parent node, and offset.
60 llvm::MDNode *Parent) {
61 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,
269 return MakeCXCursor(Src, Parent, TU, RegionOfInterest);
275 Parent, TU, RegionOfInterest);
531 CXCursor C = { K, 0, { Parent, S, TU } };
651 CXCursor C = { K, 0, { Parent, S, TU } };
    [all...]
  /external/llvm/lib/Analysis/
IVUsers.cpp 367 Parent->Processed.erase(this->getUser());
368 Parent->IVUses.erase(this);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
ARMDecoderEmitter.cpp 368 // Array of bit values passed down from our parent.
369 // Set to all BIT_UNFILTERED's for Parent == NULL.
373 ARMFilterChooser *Parent;
383 Filters(FC.Filters), Parent(FC.Parent), BestIndex(FC.BestIndex) {
389 AllInstructions(Insts), Opcodes(IDs), Filters(), Parent(NULL),
400 ARMFilterChooser &parent) :
401 AllInstructions(Insts), Opcodes(IDs), Filters(), Parent(&parent),
409 // The top level filter chooser has NULL as its parent
    [all...]
FixedLenDecoderEmitter.cpp 228 // Array of bit values passed down from our parent.
229 // Set to all BIT_UNFILTERED's for Parent == NULL.
233 FilterChooser *Parent;
241 // Parent emitter
248 FilterBitValues(FC.FilterBitValues), Parent(FC.Parent),
258 Parent(NULL), BestIndex(-1), BitWidth(BW), Emitter(E) {
269 FilterChooser &parent) :
272 Parent(&parent), BestIndex(-1), BitWidth(parent.BitWidth)
    [all...]
  /frameworks/base/core/java/android/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/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.
653 assert(!Parents.empty() && "Found node that is not in the parent map.");
655 // Only one parent - do recursive memoization.
656 const ast_type_traits::DynTypedNode Parent = Parents[0];
658 if (Matcher.matches(Parent, this, &BuilderCopy)) {
663 return memoizedMatchesAncestorOfRecursively(Parent, Matcher, Builder,
666 // same as the parent's result.
680 for (const auto &Parent :
685 if (Visited.insert(Parent.getMemoizationData()).second
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp     [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 389 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
465 // Can't remat, just insert a copy from parent.
634 "Parent changes value in extended range");
749 LiveInterval *Parent = &Edit->getParent();
750 SmallVector<SmallPtrSet<VNInfo *, 8>, 8> EqualVNs(Parent->getNumValNums());
763 for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) {
764 VNInfo *ParentVNI = Parent->getValNumInfo(i);
804 LiveInterval *Parent = &Edit->getParent();
809 SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums());
811 SmallVector<BlockFrequency, 8> Costs(Parent->getNumValNums())
    [all...]
  /external/libchrome/base/
bind_unittest.cc 64 class Parent {
66 virtual ~Parent() {}
74 class Child : public Parent {
453 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child);
458 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child);
    [all...]
  /external/llvm/include/llvm/CodeGen/
DIE.h 611 DIE *Parent = nullptr;
640 DIE *getParent() const { return Parent; }
651 /// Climb up the parent chain to get the compile or type unit DIE this DIE
663 Child->Parent = this;
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAssembler.h 62 /// Parent - The data for the section this fragment is in.
63 MCSectionData *Parent;
94 MCSectionData *getParent() const { return Parent; }
95 void setParent(MCSectionData *Value) { Parent = Value; }
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 515 const Stmt *Parent = S;
517 Parent = PM.getParent(Parent);
523 if (!Parent) {
532 L = UseEnd ? Parent->getLocEnd() : Parent->getLocStart();
    [all...]
  /external/lzma/CPP/Common/
Wildcard.cpp 407 if (Parent == 0)
410 return Parent->CheckPathToRoot(include, pathParts, isFile);
  /external/mesa3d/src/hgl/
GLView.cpp 189 for (BView* view = this; view != NULL; view = view->Parent())
259 for (BView* v = this; v; v = v->Parent())
  /frameworks/compile/slang/
slang_rs_export_type.h 608 const RSExportRecordType *Parent,
612 mParent(Parent),
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of
58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children.
130 /// \param Parent Macro parent (could be nullptr).
135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,
140 /// using the \p Parent relationship.
141 /// \param Parent Macro file parent (could be nullptr).
144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line,
232 /// \param Ty Parent type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of
58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children.
130 /// \param Parent Macro parent (could be nullptr).
135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,
140 /// using the \p Parent relationship.
141 /// \param Parent Macro file parent (could be nullptr).
144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line,
232 /// \param Ty Parent type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of
58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children.
130 /// \param Parent Macro parent (could be nullptr).
135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,
140 /// using the \p Parent relationship.
141 /// \param Parent Macro file parent (could be nullptr).
144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line,
232 /// \param Ty Parent type
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of
58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children.
130 /// \param Parent Macro parent (could be nullptr).
135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,
140 /// using the \p Parent relationship.
141 /// \param Parent Macro file parent (could be nullptr).
144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line,
232 /// \param Ty Parent type
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of
58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children.
130 /// \param Parent Macro parent (could be nullptr).
135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,
140 /// using the \p Parent relationship.
141 /// \param Parent Macro file parent (could be nullptr).
144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line,
232 /// \param Ty Parent type
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DIBuilder.h 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of
58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children.
130 /// \param Parent Macro parent (could be nullptr).
135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,
140 /// using the \p Parent relationship.
141 /// \param Parent Macro file parent (could be nullptr).
144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line,
232 /// \param Ty Parent type
    [all...]

Completed in 1605 milliseconds

<<11121314151617181920>>