Home
last modified time | relevance | path

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

12

/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/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/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/e2fsprogs/tests/f_dup2/
Dexpect.128 Multiply-claimed blocks already reassigned or cloned.
/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/docs/CommandGuide/
Dlit.pod304 B<on_clone> The config is actually cloned for every subdirectory inside a test
307 configuration is cloned (for a subdirectory). The function should takes three
334 configuration is cloned B<lit> checks for a I<lit.local.cfg> file in the
/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/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.h648 static C* EnsureSibling(C* node, NodeInfo* info, bool* cloned) { in EnsureSibling() argument
649 return static_cast<C*>(node->EnsureSibling(info, cloned)); in EnsureSibling()
690 RegExpNode* EnsureSibling(NodeInfo* info, bool* cloned);
Djsregexp.cc4695 RegExpNode* RegExpNode::EnsureSibling(NodeInfo* info, bool* cloned) { in EnsureSibling() argument
4696 ASSERT_EQ(false, *cloned); in EnsureSibling()
4705 *cloned = true; in EnsureSibling()
4714 bool cloned = false; in PropagateToEndpoint() local
4715 return RegExpNode::EnsureSibling(node, &full_info, &cloned); in PropagateToEndpoint()
/external/valgrind/main/coregrind/m_debuginfo/
Dreaddwarf3.c1816 XArray* cloned = VG_(cloneXA)( "di.readdwarf3.pvD.2", xa ); in parse_var_DIE() local
1817 tv->rngMany = cloned; in parse_var_DIE()
1818 VG_(addToFM)( rangestree, (UWord)cloned, 0 ); in parse_var_DIE()
/external/iproute2/doc/
Dip-cref.tex1519 \item \verb|cloned| or \verb|cached|
1521 --- list cloned routes i.e.\ routes which were dynamically forked from
1529 cloned routes.
1573 kuznet@amber:~ $ ip -o ro ls cloned | wc
1583 is cloned or you requested additional statistics. If the
1596 If you list cloned entries, the output contains other attributes which
1711 The second example flushes all IPv6 cloned routes:

12