/external/clang/lib/ARCMigrate/ |
TransAutoreleasePool.cpp | 169 Stmt *child = getEssential(*I); local 170 if (DeclStmt *DclS = dyn_cast<DeclStmt>(child)) { 188 } else if (BinaryOperator *bop = dyn_cast<BinaryOperator>(child)) { 207 if (isPoolDrain(Scopes.back().PoolVar, child)) {
|
/external/deqp/executor/ |
xeBatchExecutor.cpp | 318 const TestNode* child = group->getChild(ndx); local 320 if (testSet.hasNode(child)) 325 writeCaseListNode(str, child, testSet);
|
xeTestCase.cpp | 332 const TestNode* child = group->getChild(ndx); local 333 nodeSet.insert(child); 335 if (child->getNodeType() == TESTNODETYPE_GROUP) 336 addChildren(nodeSet, static_cast<const TestGroup*>(child)); 344 const TestNode* child = group->getChild(ndx); local 345 nodeSet.erase(child); 347 if (child->getNodeType() == TESTNODETYPE_GROUP) 348 removeChildren(nodeSet, static_cast<const TestGroup*>(child));
|
/external/deqp/framework/randomshaders/ |
rsgStatement.cpp | 177 // Select and create a new child 178 Statement* child = createStatement(state); local 179 addChild(child); 180 return child;
|
/external/droiddriver/src/io/appium/droiddriver/instrumentation/ |
ViewElement.java | 173 View child = group.getChildAt(i); local 174 if (child != null) { 175 childViews.add(child);
|
/external/fsck_msdos/ |
dosfs.h | 124 *child; /* if this is a directory */ member in struct:dosDirEntry
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
minidump_writer_unittest.cc | 71 const pid_t child = fork(); local 72 if (child == 0) { 87 context.tid = child; 88 ASSERT_TRUE(WriteMinidump(templ.c_str(), child, &context, sizeof(context))); 100 const pid_t child = fork(); local 101 if (child == 0) { 117 context.tid = child; 118 ASSERT_TRUE(WriteMinidump(fd, child, &context, sizeof(context))); 165 const pid_t child = fork(); local 166 if (child == 0) 286 const pid_t child = fork(); local 452 const pid_t child = fork(); local 510 const pid_t child = fork(); local [all...] |
/external/google-breakpad/src/testing/gtest/test/ |
gtest_filter_unittest.py | 54 # Checks if this platform can pass empty environment variables to child 57 # os.environ. We then use 'eval' to parse the child's output so that an 60 child = gtest_test_utils.Subprocess( variable 62 CAN_PASS_EMPTY_ENV = eval(child.output) 65 # Check if this platform can unset environment variables in child processes. 69 # We use 'eval' to parse the child's output so that an exception 73 child = gtest_test_utils.Subprocess( variable 75 CAN_UNSET_ENV = eval(child.output)
|
/external/gtest/test/ |
gtest_filter_unittest.py | 54 # Checks if this platform can pass empty environment variables to child 57 # os.environ. We then use 'eval' to parse the child's output so that an 60 child = gtest_test_utils.Subprocess( variable 62 CAN_PASS_EMPTY_ENV = eval(child.output) 65 # Check if this platform can unset environment variables in child processes. 69 # We use 'eval' to parse the child's output so that an exception 73 child = gtest_test_utils.Subprocess( variable 75 CAN_UNSET_ENV = eval(child.output)
|
/external/guava/guava/src/com/google/common/net/ |
InternetDomainName.java | 463 * InternetDomainName.from("foo.com").child("www.bar")} returns a new 470 public InternetDomainName child(String leftParts) { method in class:InternetDomainName
|
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/ |
InternetDomainNameTest.java | 289 assertEquals("www.foo.com", domain.child("www").toString()); 292 domain.child("www."); 304 // These would throw an exception if leniency were not preserved during parent() and child() 306 InternetDomainName child = parent.child(LOTS_OF_DELTAS); local 307 child.child(LOTS_OF_DELTAS); 314 assertEquals(googleDomain, googleDomain.child("mail").topPrivateDomain()); 315 assertEquals(googleDomain, googleDomain.child("foo.bar").topPrivateDomain());
|
/external/guava/guava-tests/test/com/google/common/net/ |
InternetDomainNameTest.java | 291 assertEquals("www.foo.com", domain.child("www").toString()); 294 domain.child("www."); 306 // These would throw an exception if leniency were not preserved during parent() and child() 308 InternetDomainName child = parent.child(LOTS_OF_DELTAS); local 309 child.child(LOTS_OF_DELTAS); 316 assertEquals(googleDomain, googleDomain.child("mail").topPrivateDomain()); 317 assertEquals(googleDomain, googleDomain.child("foo.bar").topPrivateDomain());
|
/external/icu/icu4c/source/test/intltest/ |
cpdtrtst.cpp | 251 UnicodeString child= ct1->getTransliterator(i).getID(); local 252 if(child != *(array+i)){ 253 errln("Error getTransliterator() failed: Expected->" + *(array+i) + " Got->" + child); 255 logln("OK: getTransliterator() passed: Expected->" + *(array+i) + " Got->" + child);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TextTrieMap.java | 255 for (Node child : _children) { 256 if (ch < child._text[0]) { 259 if (ch == child._text[0]) { 260 if (child.matchFollowing(chitr)) { 261 match = child; 277 Node child = new Node(subArray(text, offset), addValue(null, value), null); local 278 _children.add(child); 303 // add a new child to this node 343 // add the Node representing after the offset as a child 344 Node child = new Node(childText, _values, _children) [all...] |
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
CompoundTransliteratorTest.java | 112 //String child= ct1.getTransliterator(i).getID(); 113 String child = elems[i].getID(); local 114 if(!child.equals(array[i])){ 115 errln("Error getTransliterator() failed: Expected->" + array[i] + " Got->" + child); 117 logln("OK: getTransliterator() passed: Expected->" + array[i] + " Got->" + child);
|
/external/iputils/ninfod/ |
ninfod_core.c | 454 pid_t child = fork(); local 455 if (child < 0) 457 if (child == 0) { 474 waitpid(child, NULL, 0);
|
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
HandlerCollection.java | 312 for (Handler child: children) 313 child.destroy();
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
BoneContext.java | 95 for (Structure child : childbase) {
96 this.children.add(new BoneContext(child, this, objectToArmatureMatrix, bonesPoseChannels, blenderContext));
124 for (BoneContext child : this.children) {
125 child.computeRestMatrix(objectToArmatureMatrix);
182 for (BoneContext child : children) {
183 bone.addChild(child.buildBone(bones, boneOMAs, blenderContext));
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/ |
CollisionShapeFactory.java | 86 continue; // go to the next child in the loop 98 continue; // go to the next child in the loop 108 continue; // go to the next child in the loop 251 * This method moves each child shape of a compound shape by the given vector 257 CollisionShape child = childCollisionShape.shape; local 260 compoundShape.removeChildShape(child); 261 compoundShape.addChildShape(child, location.add(vector), rotation);
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/ |
SoapEnvelope.java | 167 Element child = headers.getElement(i); local 168 if (child != null) { 175 Element child = headers.getElement(i); local 176 if (child != null) { 177 headerIn[count++] = child;
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/ |
Node.java | 45 /** inserts the given child object of the given type at the 48 public void addChild(int index, int type, Object child) { 50 if (child == null) 59 if (!(child instanceof Element)) 62 ((Element) child).setParent(this); 64 else if (!(child instanceof String)) 67 children.insertElementAt(child, index); 71 /** convenience method for addChild (getChildCount (), child) */ 73 public void addChild(int type, Object child) { 74 addChild(getChildCount(), type, child); local 111 Object child = getChild(index); local 205 Element child = getElement(i); local 237 Element child = local 325 Object child = children.elementAt(i); local [all...] |
/external/libvpx/libvpx/vpx_mem/memory_manager/include/ |
cavl_impl.h | 526 AVL_HANDLE child; variable 565 ** leaf node, or a node with a single leaf as its child, to put 572 child = AVL_GET_LESS(h, 1); 576 child = AVL_GET_GREATER(h, 1); 584 if (child != AVL_NULL) { 589 h = child; 592 child = AVL_GET_LESS(h, 1); 595 child = AVL_GET_GREATER(h, 1); 601 } while (child != AVL_NULL); 610 /* Get the handle of the opposite child, which may not be null. * 795 AVL_HANDLE child; variable [all...] |
/external/linux-tools-perf/src/tools/perf/ui/stdio/ |
hist.c | 87 struct callchain_node *child; local 102 child = rb_entry(node, struct callchain_node, rb_node); 103 cumul = callchain_cumul_hits(child); 109 * level for the last child of this depth. 111 * supersede the last child 119 * to keep the level link until we reach the last child 124 list_for_each_entry(chain, &child->val, list) { 133 new_total = child->children_hit; 137 ret += __callchain__fprintf_graph(fp, &child->rb_root, new_total,
|
/external/linux-tools-perf/src/tools/perf/util/ |
callchain.c | 24 #define chain_for_each_child(child, parent) \ 25 list_for_each_entry(child, &parent->children, siblings) 27 #define chain_for_each_child_safe(child, next, parent) \ 28 list_for_each_entry_safe(child, next, &parent->children, siblings) 74 struct callchain_node *child; local 76 chain_for_each_child(child, node) 77 __sort_chain_flat(rb_root, child, min_hit); 97 struct callchain_node *child; local 101 chain_for_each_child(child, node) { 102 __sort_chain_graph_abs(child, min_hit) 120 struct callchain_node *child; local 398 struct callchain_node *child, *next_child; local [all...] |
/external/llvm/include/llvm/Object/ |
Archive.h | 54 class Child { 66 Child(const Archive *Parent, const char *Start); 68 bool operator ==(const Child &other) const { 73 bool operator <(const Child &other) const { 77 Child getNext() const; 109 Child child; member in class:llvm::object::Archive::child_iterator 112 child_iterator() : child(Child(nullptr, nullptr)) {} 113 child_iterator(const Child &c) : child(c) { [all...] |