/external/chromium_org/third_party/icu/source/i18n/ |
tztrans.cpp | 22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) { 32 fFrom = source.fFrom->clone(); 36 fTo = source.fTo->clone(); 50 TimeZoneTransition::clone(void) const { function in class:TimeZoneTransition 100 fFrom = from.clone(); 116 fTo = to.clone();
|
/external/icu/icu4c/source/i18n/ |
tztrans.cpp | 22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) { 32 fFrom = source.fFrom->clone(); 36 fTo = source.fTo->clone(); 50 TimeZoneTransition::clone(void) const { function in class:TimeZoneTransition 100 fFrom = from.clone(); 116 fTo = to.clone();
|
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLServerSocketFactoryImpl.java | 41 this.sslParameters = (SSLParametersImpl) sslParameters.clone(); 57 return new OpenSSLServerSocketImpl((SSLParametersImpl) sslParameters.clone()); 62 return new OpenSSLServerSocketImpl(port, (SSLParametersImpl) sslParameters.clone()); 70 (SSLParametersImpl) sslParameters.clone()); 80 (SSLParametersImpl) sslParameters.clone());
|
OpenSSLSocketFactoryImpl.java | 63 return new OpenSSLSocketImpl((SSLParametersImpl) sslParameters.clone()); 68 return new OpenSSLSocketImpl(hostname, port, (SSLParametersImpl) sslParameters.clone()); 78 (SSLParametersImpl) sslParameters.clone()); 83 return new OpenSSLSocketImpl(address, port, (SSLParametersImpl) sslParameters.clone()); 96 (SSLParametersImpl) sslParameters.clone()); 106 (SSLParametersImpl) sslParameters.clone());
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowWifiConfiguration.java | 42 config.allowedKeyManagement = (BitSet) realObject.allowedKeyManagement.clone(); 43 config.allowedProtocols = (BitSet) realObject.allowedProtocols.clone(); 44 config.allowedAuthAlgorithms = (BitSet) realObject.allowedAuthAlgorithms.clone(); 45 config.allowedPairwiseCiphers = (BitSet) realObject.allowedPairwiseCiphers.clone(); 46 config.allowedGroupCiphers = (BitSet) realObject.allowedGroupCiphers.clone();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_execfile.py | 32 execfile_paren = node.children[-1].children[-1].clone() 34 open_args = ArgList([filename.clone()], rparen=execfile_paren) 41 filename_arg = filename.clone() 49 args.extend([Comma(), globals.clone()]) 51 args.extend([Comma(), locals.clone()])
|
fix_map.py | 65 new = node.clone() 69 new = ListComp(results["xp"].clone(), 70 results["fp"].clone(), 71 results["it"].clone()) 74 new = results["arg"].clone() 87 new = node.clone()
|
fix_unicode.py | 18 new = node.clone() 23 new = node.clone()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_execfile.py | 32 execfile_paren = node.children[-1].children[-1].clone() 34 open_args = ArgList([filename.clone()], rparen=execfile_paren) 41 filename_arg = filename.clone() 49 args.extend([Comma(), globals.clone()]) 51 args.extend([Comma(), locals.clone()])
|
fix_map.py | 65 new = node.clone() 69 new = ListComp(results["xp"].clone(), 70 results["fp"].clone(), 71 results["it"].clone()) 74 new = results["arg"].clone() 87 new = node.clone()
|
fix_unicode.py | 18 new = node.clone() 23 new = node.clone()
|
/frameworks/base/core/java/android/animation/ |
StateListAnimator.java | 135 public StateListAnimator clone() { method in class:StateListAnimator 137 StateListAnimator clone = (StateListAnimator) super.clone(); local 138 clone.mTuples = new ArrayList<Tuple>(mTuples.size()); 139 clone.mLastMatch = null; 140 clone.mRunningAnimator = null; 141 clone.mViewRef = null; 142 clone.mAnimatorListener = null; 143 clone.initAnimatorListener(); 147 final Animator animatorClone = tuple.mAnimator.clone(); 327 final StateListAnimator clone = mAnimator.clone(); local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
tstnrapi.cpp | 37 // test clone(), ==, and hashCode() 38 Normalizer *clone=copy.clone(); local 39 if(*clone!=copy) { 40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy"); 42 // clone must have the same hashCode() 43 if(clone->hashCode()!=copy.hashCode()) { 44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()"); 46 if(clone->next()!=0x4e3d) { 47 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next()") [all...] |
/external/icu/icu4c/source/test/intltest/ |
tstnrapi.cpp | 37 // test clone(), ==, and hashCode() 38 Normalizer *clone=copy.clone(); local 39 if(*clone!=copy) { 40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy"); 42 // clone must have the same hashCode() 43 if(clone->hashCode()!=copy.hashCode()) { 44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()"); 46 if(clone->next()!=0x4e3d) { 47 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next()") [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
OneStepIterator.java | 135 public Object clone() throws CloneNotSupportedException method in class:OneStepIterator 139 OneStepIterator clone = (OneStepIterator) super.clone(); local 143 clone.m_iterator = m_iterator.cloneIterator(); 145 return clone; 159 OneStepIterator clone = (OneStepIterator) super.cloneWithReset(); local 160 clone.m_iterator = m_iterator; 162 return clone; 204 OneStepIterator clone = (OneStepIterator) this.clone(); local 266 OneStepIterator clone = (OneStepIterator) this.cloneWithReset(); local [all...] |
AxesWalker.java | 87 public Object clone() throws CloneNotSupportedException method in class:AxesWalker 91 AxesWalker clone = (AxesWalker) super.clone(); local 93 //clone.setCurrentNode(clone.m_root); 95 // clone.m_isFresh = true; 97 return clone; 101 * Do a deep clone of this walker, including next and previous walkers. 102 * If the this AxesWalker is on the clone list, don't clone but 116 AxesWalker clone = findClone(this, cloneList); local [all...] |
/external/srec/portable/src/ |
PFileSystem.c | 445 LCHAR clone[P_PATH_MAX]; local 455 LSTRCPY(clone, path); 456 lstrtrim(clone); 458 CHKLOG(rc, PFileSystemGetAbsolutePath(clone, &len2)); 461 lastSlash = LSTRRCHR(clone, L('/')); 468 else if (lastSlash < clone + LSTRLEN(clone) - 1) 472 if (LSTRLEN(clone) > *len) 474 *len = LSTRLEN(clone); 478 LSTRCPY(path, clone); [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
ClonerToResultTree.java | 31 * Class used to clone a node, possibly including its children to 39 // * Clone an element with or without children. 40 // * TODO: Fix or figure out node clone failure! 43 // * @param node The node to clone 45 // * clone children attributes 67 // // Can't clone a document, but refrain from throwing an error 122 * Clone an element with or without children. 123 * TODO: Fix or figure out node clone failure! 126 * @param node The node to clone 128 * clone children attribute [all...] |
/external/google-tv-pairing-protocol/cpp/ |
main.scons | 53 linux_env = root_env.Clone(tools = ['target_platform_linux']) 60 linux_32_env = linux_env.Clone() 69 linux_dbg_32_env = linux_32_env.Clone( 77 linux_opt_32_env = linux_32_env.Clone( 90 linux_64_env = linux_env.Clone() 99 linux_dbg_64_env = linux_64_env.Clone( 108 linux_opt_64_env = linux_64_env.Clone( 121 mac_env = root_env.Clone(tools = ['target_platform_mac']) 144 mac_opt_env = mac_env.Clone( 158 mac_dbg_env = mac_env.Clone( [all...] |
/external/bluetooth/bluedroid/test/suite/support/ |
property.c | 23 bt_property_t *clone = calloc(sizeof(bt_property_t), count); local 24 if (!clone) { 28 memcpy(&clone[0], &properties[0], sizeof(bt_property_t) * count); 30 clone[i].val = calloc(clone[i].len, 1); 31 memcpy(clone[i].val, properties[i].val, clone[i].len); 34 return clone;
|
/external/chromium_org/cc/animation/ |
keyframed_animation_curve.h | 44 scoped_ptr<ColorKeyframe> Clone() const; 64 scoped_ptr<FloatKeyframe> Clone() const; 84 scoped_ptr<TransformKeyframe> Clone() const; 105 scoped_ptr<FilterKeyframe> Clone() const; 127 virtual scoped_ptr<AnimationCurve> Clone() const OVERRIDE; 153 virtual scoped_ptr<AnimationCurve> Clone() const OVERRIDE; 180 virtual scoped_ptr<AnimationCurve> Clone() const OVERRIDE; 213 virtual scoped_ptr<AnimationCurve> Clone() const OVERRIDE;
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
web_contents_close_handler_delegate.h | 18 // Invoked to clone the layers of the WebContents. Should do nothing if there 19 // is already a clone (eg CloneWebContentsLayer() has been invoked without a
|
/external/chromium_org/sync/internal_api/ |
protocol_event_buffer.cc | 19 buffer_.push_back(event.Clone().release()); 32 ret.push_back((*it)->Clone().release());
|
/external/chromium_org/sync/internal_api/public/test/ |
null_sync_context_proxy.h | 18 // It supports Clone(), but not much else. Useful for testing. 30 virtual scoped_ptr<SyncContextProxy> Clone() const OVERRIDE;
|
/external/iptables/extensions/ |
libxt_TEE.man | 1 The \fBTEE\fP target will clone a packet and redirect this clone to another
|