Searched defs:children (Results 1 - 25 of 345) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseTree.h31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
46 // is nil, add all children of t to this' children.
56 // Indicates the node is a nil node but may still have children, meaning
77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
100 NSMutableArray *children; variable
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
121 // is nil, add all children of t to this' children.
130 // Indicates the node is a nil node but may still have children, meanin
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseTree.h31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
46 // is nil, add all children of t to this' children.
56 // Indicates the node is a nil node but may still have children, meaning
77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
100 NSMutableArray *children; variable
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
121 // is nil, add all children of t to this' children.
130 // Indicates the node is a nil node but may still have children, meanin
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseTree.h31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
46 // is nil, add all children of t to this' children.
56 // Indicates the node is a nil node but may still have children, meaning
77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
100 NSMutableArray *children; variable
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
121 // is nil, add all children of t to this' children.
130 // Indicates the node is a nil node but may still have children, meanin
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBaseTree.h42 - (AMutableArray *)children;
48 // is nil, add all children of t to this' children.
58 // Indicates the node is a nil node but may still have children, meaning
79 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
98 @property (retain) AMutableArray *children; variable
105 __strong AMutableArray *children; variable
117 - (AMutableArray *)children;
125 // is nil, add all children of t to this' children
173 @property (retain) AMutableArray *children; variable
[all...]
/external/turbine/java/com/google/turbine/binder/bound/
H A DBoundClass.java42 ImmutableMap<String, ClassSymbol> children(); method in interface:BoundClass
H A DPackageSourceBoundClass.java65 public ImmutableMap<String, ClassSymbol> children() { method in class:PackageSourceBoundClass
66 return base.children();
H A DSourceBoundClass.java28 private final ImmutableMap<String, ClassSymbol> children; field in class:SourceBoundClass
35 ImmutableMap<String, ClassSymbol> children,
40 this.children = children;
65 public ImmutableMap<String, ClassSymbol> children() { method in class:SourceBoundClass
66 return children;
32 SourceBoundClass( ClassSymbol sym, ClassSymbol owner, ImmutableMap<String, ClassSymbol> children, int access, Tree.TyDecl decl) argument
/external/deqp/external/openglcts/modules/common/
H A DglcTestCase.hpp38 TestCaseGroup(Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
72 const std::vector<TestNode*>& children)
73 : tcu::TestCaseGroup(context.getTestContext(), name, description, children), m_context(context)
71 TestCaseGroup(Context& context, const char* name, const char* description, const std::vector<TestNode*>& children) argument
/external/deqp/modules/gles2/functional/
H A Des2fShaderExecuteTest.cpp58 vector<TestNode*> children = shaderLibrary.loadShaderFile(fileName.c_str()); local
60 for (int i = 0; i < (int)children.size(); i++)
61 addChild(children[i]);
H A Des2fShaderConstExprTests.cpp55 const std::vector<tcu::TestNode*> children = createTests(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), cases, numCases, glu::GLSL_VERSION_100_ES); local
60 for (int i = 0; i < (int)children.size(); i++)
61 group->addChild(children[i]);
222 const std::vector<tcu::TestNode*> children = gls::ShaderLibrary(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo()).loadShaderFile("shaders/constant_expressions.test"); local
224 for (int i = 0; i < (int)children.size(); i++)
225 addChild(children[i]);
/external/deqp/modules/gles2/
H A Dtes2TestCase.hpp39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children) argument
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
/external/deqp/modules/gles3/
H A Dtes3TestCase.hpp39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children) argument
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
/external/deqp/modules/gles31/
H A Dtes31TestCase.hpp39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children) argument
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
/external/eigen/debug/gdb/
H A Dprinters.py125 def children(self): member in class:EigenMatrixPrinter
173 def children(self): member in class:EigenQuaternionPrinter
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
H A DJpaParentTestEntity.java37 private List<JpaTestEntity> children = new ArrayList<JpaTestEntity>(); field in class:JpaParentTestEntity
51 return children;
54 public void setChildren(List<JpaTestEntity> children) { argument
55 this.children = children;
/external/junit/src/main/java/org/junit/runners/model/
H A DRunnerBuilder.java78 * {@code children}. Care is taken to avoid infinite recursion:
82 public List<Runner> runners(Class<?> parent, Class<?>[] children) argument
87 return runners(children);
93 public List<Runner> runners(Class<?> parent, List<Class<?>> children) argument
95 return runners(parent, children.toArray(new Class<?>[0]));
98 private List<Runner> runners(Class<?>[] children) { argument
100 for (Class<?> each : children) {
/external/libchrome/base/trace_event/
H A Dheap_profiler_stack_frame_deduplicator.h24 // parent) pairs. The tree nodes reference both parent and children. The parent
25 // is referenced by index into |frames_|. The children are referenced via a map
46 std::map<StackFrame, int> children; member in struct:base::trace_event::StackFrameDeduplicator::FrameNode
/external/llvm/utils/gdb-scripts/
H A Dprettyprinters.py52 def children(self): member in class:SmallVectorPrinter
92 def children(self): member in class:ArrayRefPrinter
/external/oj-libjdwp/src/share/back/
H A DThreadGroupReferenceImpl.c88 children(PacketInputStream *in, PacketOutputStream *out) function
141 (void *)children };
/external/valgrind/memcheck/tests/
H A Dthreadname.c16 static pthread_t children[3]; variable
54 r = pthread_create(&children[2], NULL, child_fn_2, NULL);
57 r = pthread_join(children[2], NULL);
69 r = pthread_create(&children[1], NULL, child_fn_1, NULL);
72 r = pthread_join(children[1], NULL);
84 r = pthread_create(&children[0], NULL, child_fn_0, NULL);
87 r = pthread_join(children[0], NULL);
/external/vogar/src/vogar/target/junit/junit3/
H A DTestSuiteFactory.java36 * @param children the transformed children of the test.
39 T createSuite(String name, List<T> children); argument
H A DTestSuiteRunnerFactory.java65 public Runner createSuite(String name, List<Runner> children) { argument
67 return new ExtendedSuiteRunner(name, children);
/external/deqp/modules/gles3/functional/
H A Des3fShaderConstExprTests.cpp56 const std::vector<tcu::TestNode*> children = createTests(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), cases, numCases, glu::GLSL_VERSION_300_ES); local
61 for (int i = 0; i < (int)children.size(); i++)
62 group->addChild(children[i]);
294 const std::vector<tcu::TestNode*> children = createTests(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), cases, DE_LENGTH_OF_ARRAY(cases), glu::GLSL_VERSION_300_ES, SHADER_FRAGMENT); local
299 for (int i = 0; i < (int)children.size(); i++)
300 group->addChild(children[i]);
316 const std::vector<tcu::TestNode*> children = gls::ShaderLibrary(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo()).loadShaderFile("shaders/constant_expressions.test"); local
318 for (int i = 0; i < (int)children.size(); i++)
319 addChild(children[i]);
/external/deqp/modules/glshared/
H A DglsShaderLibrary.cpp45 tcu::TestCaseGroup* createGroup (const std::string& name, const std::string& description, const std::vector<tcu::TestNode*>& children) argument
47 return new tcu::TestCaseGroup(m_testCtx, name.c_str(), description.c_str(), children);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DBinaryTreeTraverser.java48 * Returns the children of this node, in left-to-right order.
51 public final Iterable<T> children(final T root) { method in class:BinaryTreeTraverser

Completed in 1514 milliseconds

1234567891011>>