Home
last modified time | relevance | path

Searched refs:cloned (Results 1 – 25 of 52) sorted by relevance

123

/external/icu4c/samples/ucnv/
Dflagcb.c49 FromUFLAGContext *old, *cloned; in flagCB_fromU() local
56 cloned = flagCB_fromU_openContext(); in flagCB_fromU()
58 memcpy(cloned, old, sizeof(FromUFLAGContext)); in flagCB_fromU()
63 printf("%p: cloned subcb=%p:%p\n", cloned, cloned->subCallback, in flagCB_fromU()
64 cloned->subContext); in flagCB_fromU()
85 cloned->subCallback, in flagCB_fromU()
86 cloned->subContext, in flagCB_fromU()
91 if( cloned->subCallback != NULL ) { in flagCB_fromU()
93 cloned->subCallback(cloned->subContext, fromUArgs, codeUnits, in flagCB_fromU()
99 cloned, /* new context */ in flagCB_fromU()
[all …]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Ddocumentgetxmlencoding05.js89 var cloned;
97 cloned = doc.cloneNode(true);
98 encodingName = cloned.xmlEncoding;
Ddocumentgetinputencoding04.js89 var cloned;
97 cloned = doc.cloneNode(true);
98 encodingName = cloned.inputEncoding;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
DTerrainLodControl.java141 TerrainLodControl cloned = new TerrainLodControl((Terrain) spatial, cameraClone); in cloneForSpatial() local
142 cloned.setLodCalculator(lodCalculator.clone()); in cloneForSpatial()
143 return cloned; in cloneForSpatial()
DTerrainQuad.java324 List<Vector3f> cloned = new ArrayList<Vector3f>();
326 cloned.add(l.clone());
327 return cloned;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DOutputProperties.java99 OutputProperties cloned = (OutputProperties) super.clone(); in clone() local
101 cloned.m_properties = (Properties) cloned.m_properties.clone(); in clone()
103 return cloned; in clone()
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DBreakIteratorTest.java67 BreakIterator cloned = (BreakIterator) iterator.clone(); in testClone() local
68 assertNotSame(cloned, iterator); in testClone()
69 assertEquals(cloned, iterator); in testClone()
DDecimalFormatTest.java689 DecimalFormat cloned = (DecimalFormat) format.clone(); in test_equalsLjava_lang_Object() local
690 cloned.setDecimalFormatSymbols(new DecimalFormatSymbols(Locale.US)); in test_equalsLjava_lang_Object()
691 assertEquals(format, cloned); in test_equalsLjava_lang_Object()
694 cloned.setCurrency(c); in test_equalsLjava_lang_Object()
696 assertEquals(format, cloned); in test_equalsLjava_lang_Object()
772 DecimalFormat cloned = (DecimalFormat) format.clone(); in test_clone() local
773 assertEquals(cloned.getDecimalFormatSymbols(), format in test_clone()
/external/iptables/extensions/
Dlibxt_TEE.man7 Send the cloned packet to the host reachable at the given IP address.
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DArrayDequeTest.java878 ArrayDeque<Object> cloned = testQue.clone(); in test_clone() local
879 assertEquals(0, cloned.size()); in test_clone()
880 assertFalse(cloned == testQue); in test_clone()
887 cloned = testQue.clone(); in test_clone()
888 assertEquals(6, cloned.size()); in test_clone()
890 assertEquals(testQue.remove(), cloned.remove()); in test_clone()
/external/e2fsprogs/tests/f_dup4/
Dexpect.143 Multiply-claimed blocks already reassigned or cloned.
71 Multiply-claimed blocks already reassigned or cloned.
/external/e2fsprogs/tests/f_dup/
Dexpect.121 Multiply-claimed blocks already reassigned or cloned.
/external/e2fsprogs/tests/f_dup2/
Dexpect.128 Multiply-claimed blocks already reassigned or cloned.
/external/iproute2/ip/
Diproute.c88 int cloned; member
163 if (filter.cloned == !(r->rtm_flags&RTM_F_CLONED)) in print_route()
1061 filter.cloned = 1; in iproute_list_or_flush()
1071 filter.cloned = 1; in iproute_list_or_flush()
1203 if (filter.cloned) { in iproute_list_or_flush()
1229 if (round == 0 && (!filter.cloned || do_ipv6 == AF_INET6)) in iproute_list_or_flush()
1254 if (!filter.cloned) { in iproute_list_or_flush()
/external/strace/
DTODO2 * clone doesn't work; cloned processes can hang
/external/e2fsprogs/tests/f_extents2/
Dexpect.152 Multiply-claimed blocks already reassigned or cloned.
/external/kernel-headers/original/linux/
Dskbuff.h279 cloned:1, member
447 return skb->cloned && in skb_cloned()
462 if (!skb->cloned) in skb_header_cloned()
/external/clang/test/CodeGenObjCXX/
Dblock-var-layout.mm5 // this is largely cloned.
/external/bluetooth/glib/
DREADME.commits36 advisable to work in a branch in your own cloned GLib repository.
/external/llvm/lib/Support/Unix/
DProgram.inc282 // object destructors cloned from the parent process aren't
284 // cloned from the parent aren't redundantly written out.
/external/llvm/test/Transforms/JumpThreading/
Dbasic.ll109 ;; This tests that the branch in 'merge' can be cloned up into T1.
179 ;; This tests that the branch in 'merge' can be cloned up into T1.
/external/llvm/docs/CommandGuide/
Dlit.pod307 B<on_clone> The config is actually cloned for every subdirectory inside a test
310 configuration is cloned (for a subdirectory). The function should takes three
337 configuration is cloned B<lit> checks for a I<lit.local.cfg> file in the
/external/icu4c/test/intltest/
Dusettest.cpp2199 UnicodeSet *cloned=(UnicodeSet *)frozen.clone(); in TestFreezable() local
2200 if(!cloned->isFrozen() || *cloned!=frozen || cloned->containsSome(0xd802, 0xd805)) { in TestFreezable()
2203 cloned->add(0xd802, 0xd805); in TestFreezable()
2204 if(cloned->containsSome(0xd802, 0xd805)) { in TestFreezable()
2207 delete cloned; in TestFreezable()
/external/v8/src/
Djsregexp.h653 static C* EnsureSibling(C* node, NodeInfo* info, bool* cloned) { in EnsureSibling() argument
654 return static_cast<C*>(node->EnsureSibling(info, cloned)); in EnsureSibling()
695 RegExpNode* EnsureSibling(NodeInfo* info, bool* cloned);
Djsregexp.cc4657 RegExpNode* RegExpNode::EnsureSibling(NodeInfo* info, bool* cloned) { in EnsureSibling() argument
4658 ASSERT_EQ(false, *cloned); in EnsureSibling()
4667 *cloned = true; in EnsureSibling()
4676 bool cloned = false; in PropagateToEndpoint() local
4677 return RegExpNode::EnsureSibling(node, &full_info, &cloned); in PropagateToEndpoint()

123