HomeSort by relevance Sort by last modified time
    Searched refs:Child (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/valgrind/main/none/tests/
mmap_fcntl_bug.stderr.exp 0 Child exited with zero (TEST PASSED).
  /external/clang/test/Analysis/inlining/
dyn-dispatch-bifurcate.cpp 23 class Child : public Parent {
29 Child *b = reinterpret_cast<Child *>(a);
  /frameworks/base/sax/java/android/sax/
Children.java 25 Child[] children = new Child[16];
28 * Looks up a child by name and creates a new one if necessary.
34 Child current = children[index];
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
42 Child previous;
47 // We already have a child with that name.
55 // Add a new child to the bucket.
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
63 * Looks up a child by name
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-methods.cpp 68 class Child: public Base { };
71 Child c;
72 // Make sure that the Base constructor call in the Child constructor uses
74 // CHECK: define linkonce_odr x86_thiscallcc %class.Child* @"\01??0Child@@QAE@XZ"
78 // Make sure that the Base destructor call in the Child denstructor uses
80 // CHECK: define linkonce_odr x86_thiscallcc void @"\01??1Child@@QAE@XZ"
  /external/clang/test/Analysis/
inline.cpp 67 class Child : public Parent {
76 Child x;
99 class Child : public Parent {
107 Child() : m_child(0) {}
113 Child x;
121 class Grandchild : public Child {};
147 class Child : virtual public Parent {
155 Child() : m_child(0) {}
161 Child x;
169 class Grandchild : virtual public Child {};
    [all...]
reinterpret-cast.cpp 10 struct Child : public IntWrapper {
15 Child *wrapper = reinterpret_cast<Child*>(data);
17 // We don't actually know if 'data' is a Child.
  /external/compiler-rt/lib/asan/lit_tests/Linux/
clone_test.cc 20 int Child(void *arg) {
22 printf("Child: %p\n", x);
31 pid_t clone_pid = clone(Child, sp, CLONE_FILES | CLONE_VM, NULL, 0, 0, 0);
39 // Make sure the child stack was indeed unpoisoned.
swapcontext_test.cc 19 void Child(int mode) {
21 printf("Child: %p\n", x);
36 printf("Child stack: %p\n", child_stack);
37 // Setup child context.
44 makecontext(&child_context, (void (*)())Child, 1, mode);
  /external/chromium/base/
template_util_unittest.cc 16 class Child : public Parent {};
44 // EXPECT_TRUE( (is_convertible < Child), (Parent > ::value));
47 EXPECT_TRUE( (is_convertible<Child, Parent>::value) );
48 EXPECT_FALSE( (is_convertible<Parent, Child>::value) );
  /external/llvm/include/llvm/Object/
Archive.h 67 class Child {
75 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {
90 bool operator ==(const Child &other) const {
94 bool operator <(const Child &other) const {
98 Child getNext() const {
108 return Child(Parent, StringRef(0, 0));
113 return Child(Parent, StringRef(NextLoc, NextSize));
144 Child child; member in class:llvm::object::Archive::child_iterator
146 child_iterator() : child(Child(0, StringRef())) {
    [all...]
  /external/llvm/include/llvm/ADT/
Twine.h 65 /// - If a Twine has another Twine as a child, that child should always be
133 union Child
152 Child LHS;
155 Child RHS;
179 explicit Twine(Child _LHS, NodeKind _LHSKind,
180 Child _RHS, NodeKind _RHSKind)
225 // A twine child should always be binary.
242 /// printOneChild - Print one child from a twine.
243 void printOneChild(raw_ostream &OS, Child Ptr, NodeKind Kind) const
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/
regress-137000.js 76 * to chain constructors from child to parent.
108 * the parameter to both the Base and Child constructors,
114 function Child(id)
118 Child.prototype=Base;
121 var c1 = new Child('child1');
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 34 OwningPtr<Matcher> Child(Scope->takeChild(i));
35 ContractNodes(Child, CGP);
36 Scope->resetChild(i, Child.take());
192 OwningPtr<Matcher> Child(Scope->takeChild(i));
193 SinkPatternPredicates(Child);
194 Scope->resetChild(i, Child.take());
265 OwningPtr<Matcher> Child(Scope->takeChild(i));
266 FactorNodes(Child);
268 if (Matcher *N = Child.take())
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 169 /// addChild - Add a child to the DIE.
171 void addChild(DIE *Child) {
172 if (Child->getParent()) {
173 assert (Child->getParent() == this && "Unexpected DIE Parent!");
177 Children.push_back(Child);
178 Child->Parent = this;
  /frameworks/compile/slang/
slang_rs_ast_replace.cpp 71 if (clang::Stmt *Child = *I) {
72 if (!matchesStmt(Child)) {
73 Visit(Child);
slang_rs_check_ast.cpp 33 if (clang::Stmt *Child = *I) {
34 Visit(Child);
  /external/clang/test/SemaCXX/
typo-correction.cpp 168 class Child: public Parent {};
169 void Child::add_types(int value) {} // expected-error{{out-of-line definition of 'add_types' does not match any declaration in 'Child'}}
  /external/llvm/lib/Object/
Archive.cpp 41 error_code Archive::Child::getName(StringRef &Result) const {
93 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
175 Child c(this, StringRef(Loc, Size));
183 return Child(this, StringRef(0, 0));
233 Result = Child(Parent, StringRef(Loc, Size));
  /external/clang/tools/libclang/
CXComment.cpp 426 const Comment *Child = *I;
427 if (!Child)
429 switch (Child->getCommentKind()) {
434 const ParagraphComment *PC = cast<ParagraphComment>(Child);
445 const BlockCommandComment *BCC = cast<BlockCommandComment>(Child);
464 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child);
476 const TParamCommandComment *TPCC = cast<TParamCommandComment>(Child);
488 MiscBlocks.push_back(cast<BlockCommandComment>(Child));
492 const VerbatimLineComment *VLC = cast<VerbatimLineComment>(Child);
505 llvm_unreachable("AST node of this kind can't be a child of
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 51 const DWARFDebugInfoEntryMinimal *child = getFirstChild(); local
52 if (recurseDepth > 0 && child) {
53 while (child) {
54 child->dump(OS, cu, recurseDepth-1, indent+2);
55 child = child->getSibling();
488 const DWARFDebugInfoEntryMinimal *child = getFirstChild(); local
489 while (child) {
490 child->buildAddressRangeTable(CU, DebugAranges);
491 child = child->getSibling()
    [all...]
  /external/llvm/lib/Support/
Twine.cpp 58 void Twine::printOneChild(raw_ostream &OS, Child Ptr,
102 void Twine::printOneChildRepr(raw_ostream &OS, Child Ptr,
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTreeAdaptor.h 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeAdaptor.h 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeAdaptor.h 53 - (void) setChild:(id<ANTLRTree>)t At:(NSInteger)i Child:(id<ANTLRTree>)child;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTreeAdaptor.h 56 - (void) setChild:(ANTLRCommonTree *)t At:(NSInteger)i Child:(ANTLRCommonTree *)child;

Completed in 999 milliseconds

1 2 3 4