/external/valgrind/main/none/tests/ |
system.c | 3 // This wasn't working at one point, because glibc used a variant of clone()
|
/external/chromium_org/third_party/icu/patches/ |
changeset_30255.patch | 7 // Clone the source BI into the caller-supplied buffer. 17 - RuleBasedBreakIterator *clone = (RuleBasedBreakIterator *)buf; 18 - uprv_memcpy(clone, &localIter, sizeof(RuleBasedBreakIterator)); // init C++ gorp, BreakIterator base class part 19 - clone->init(); // Init RuleBasedBreakIterator part, (user default constructor) 20 - *clone = *this; // clone = the real BI we want. 21 + RuleBasedBreakIterator *clone = new(buf) RuleBasedBreakIterator(*this); 22 clone->fBufferClone = TRUE; // Flag to prevent deleting storage on close (From C code)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_intern.py | 30 obj = results["obj"].clone() 32 newarglist = obj.clone() 34 newarglist = pytree.Node(syms.arglist, [obj.clone()]) 37 after = [n.clone() for n in after] 41 [results["lpar"].clone(), 43 results["rpar"].clone()])] + after)
|
fix_filter.py | 58 new = ListComp(results.get("fp").clone(), 59 results.get("fp").clone(), 60 results.get("it").clone(), 61 results.get("xp").clone()) 66 results["seq"].clone(), 72 new = node.clone()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_intern.py | 30 obj = results["obj"].clone() 32 newarglist = obj.clone() 34 newarglist = pytree.Node(syms.arglist, [obj.clone()]) 37 after = [n.clone() for n in after] 41 [results["lpar"].clone(), 43 results["rpar"].clone()])] + after)
|
fix_filter.py | 58 new = ListComp(results.get("fp").clone(), 59 results.get("fp").clone(), 60 results.get("it").clone(), 61 results.get("xp").clone()) 66 results["seq"].clone(), 72 new = node.clone()
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
Node.java | 13 public abstract Object clone(); method in class:Node 60 return (T) node.clone(); 68 List<T> clone = new LinkedList<T>(); local 72 clone.add(n); 75 return clone;
|
/ndk/sources/third_party/googletest/patches.ndk/ |
0001-Allow-clone-usage-on-MIPS.patch | 4 Subject: Allow clone() usage on MIPS 6 GoogleTest assumes that clone() is only available on ARM, but 10 Note that clone() is sadly _not_ available on x86 at this point 24 -// On Android, clone() is only available on ARM starting with Gingerbread. 26 +// On Android, clone() is only available starting with Gingerbread, except
|
/packages/apps/OMA-DM/engine/dmlib/linux_java/test/dm11/ |
testinput11 | 149 # Clone a char type ESN 151 delete ./CLONE 152 clone ./TEST CLONE 153 get ./CLONE/lob 160 delete ./CLONE/lob 187 # Clone a binary type ESN 189 delete ./CLONE 190 clone ./TEST CLONE [all...] |
/external/chromium_org/cc/animation/ |
scroll_offset_animation_curve_unittest.cc | 85 // Verify that a clone behaves exactly like the original. 86 TEST(ScrollOffsetAnimationCurveTest, Clone) { 96 scoped_ptr<AnimationCurve> clone(curve->Clone().Pass()); 98 EXPECT_EQ(AnimationCurve::ScrollOffset, clone->Type()); 99 EXPECT_EQ(duration, clone->Duration()); 102 clone->ToScrollOffsetAnimationCurve()->GetValue(-1.0)); 104 clone->ToScrollOffsetAnimationCurve()->GetValue(0.0)); 107 clone->ToScrollOffsetAnimationCurve()->GetValue(duration / 2.0)); 110 clone->ToScrollOffsetAnimationCurve()->GetValue(duration)) [all...] |
/external/stlport/test/unit/ |
exception_test.cpp | 144 std::runtime_error clone(""); 145 clone = e; 146 CPPUNIT_ASSERT(foo == clone.what() ); 157 std::runtime_error clone(""); 158 clone = e; 159 CPPUNIT_ASSERT(foo == clone.what() ); 171 std::runtime_error clone(""); 172 clone = e; 173 CPPUNIT_ASSERT(msg == clone.what() ); 184 std::runtime_error clone(""); [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
exception_test.cpp | 144 std::runtime_error clone(""); 145 clone = e; 146 CPPUNIT_ASSERT(foo == clone.what() ); 157 std::runtime_error clone(""); 158 clone = e; 159 CPPUNIT_ASSERT(foo == clone.what() ); 171 std::runtime_error clone(""); 172 clone = e; 173 CPPUNIT_ASSERT(msg == clone.what() ); 184 std::runtime_error clone(""); [all...] |
/ndk/tests/device/test-stlport/unit/ |
exception_test.cpp | 144 std::runtime_error clone(""); 145 clone = e; 146 CPPUNIT_ASSERT(foo == clone.what() ); 157 std::runtime_error clone(""); 158 clone = e; 159 CPPUNIT_ASSERT(foo == clone.what() ); 171 std::runtime_error clone(""); 172 clone = e; 173 CPPUNIT_ASSERT(msg == clone.what() ); 184 std::runtime_error clone(""); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/ |
SConscript | 6 env = env.Clone() 12 env = env.Clone()
|
/external/clang/test/CodeGenCXX/ |
microsoft-abi-nontrivial-covariant-thunk.cpp | 14 virtual B *clone(A); 21 virtual C *clone(A); // expected-error {{cannot compile this non-trivial argument copy for thunk yet}}
|
/external/clang/test/PCH/ |
cxx-exprs.cpp | 18 New *clone() { function in class:New 26 return n->clone();
|
/external/mesa3d/src/gallium/targets/graw-null/ |
SConscript | 6 env = env.Clone() 12 env = env.Clone()
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
ReverseAxesWalker.java | 138 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); local 140 clone.setRoot(this.getRoot()); 142 clone.setPredicateCount(predicateIndex); 144 clone.setPrevWalker(null); 145 clone.setNextWalker(null); 146 wi().setLastUsedWalker(clone); 152 while (DTM.NULL != (next = clone.nextNode())) 201 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
SConscript | 3 env = env.Clone()
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/ |
SConscript | 6 env = env.Clone()
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/sw/ |
SConscript | 6 env = env.Clone()
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/ |
SConscript | 6 env = env.Clone()
|
/external/chromium_org/third_party/mesa/src/src/gallium/targets/dri-i915/ |
SConscript | 3 env = drienv.Clone()
|
/external/chromium_org/third_party/mesa/src/src/gallium/targets/dri-r300/ |
SConscript | 3 env = drienv.Clone()
|
/external/chromium_org/third_party/mesa/src/src/gallium/targets/dri-r600/ |
SConscript | 3 env = drienv.Clone()
|