HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 976 - 1000 of 1328) sorted by null

<<31323334353637383940>>

  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 6 * You may obtain a copy of the License at
107 private void copy(CharSequence text) { method in class:BrowserHistoryPage
419 copy(url);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterDrawRepresentation.java 6 * You may obtain a copy of the License at
100 public StrokeData(StrokeData copy) {
101 mType = copy.mType;
102 mPath = new Path(copy.mPath);
103 mRadius = copy.mRadius;
104 mColor = copy.mColor;
105 noPoints = copy.noPoints;
106 mPoints = Arrays.copyOf(copy.mPoints, copy.mPoints.length);
187 public FilterRepresentation copy() { method in class:FilterDrawRepresentation
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_deque.h 21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
31 * Permission to use, copy, modify, distribute and sell this software
43 * Permission to use, copy, modify, distribute and sell this software
363 copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>,
369 copy(_Deque_iterator<_Tp, _Tp&, _Tp*> __first, function
372 { return std::copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first),
766 // [23.2.1.1] construct/copy/destroy
798 * @param value An element to copy.
811 * @param value An element to copy
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_deque.h 21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
31 * Permission to use, copy, modify, distribute and sell this software
43 * Permission to use, copy, modify, distribute and sell this software
363 copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>,
369 copy(_Deque_iterator<_Tp, _Tp&, _Tp*> __first, function
372 { return std::copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first),
766 // [23.2.1.1] construct/copy/destroy
798 * @param value An element to copy.
811 * @param value An element to copy
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_deque.h 21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
31 * Permission to use, copy, modify, distribute and sell this software
43 * Permission to use, copy, modify, distribute and sell this software
363 copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>,
369 copy(_Deque_iterator<_Tp, _Tp&, _Tp*> __first, function
372 { return std::copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first),
766 // [23.2.1.1] construct/copy/destroy
798 * @param value An element to copy.
811 * @param value An element to copy
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_deque.h 21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
31 * Permission to use, copy, modify, distribute and sell this software
43 * Permission to use, copy, modify, distribute and sell this software
363 copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>,
369 copy(_Deque_iterator<_Tp, _Tp&, _Tp*> __first, function
372 { return std::copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*>(__first),
766 // [23.2.1.1] construct/copy/destroy
798 * @param value An element to copy.
811 * @param value An element to copy
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 32 import re, urlparse, copy, time, urllib namespace
765 self._rest = copy.copy(rest)
    [all...]
imaplib.py 47 'COPY': ('SELECTED',),
388 def copy(self, message_set, new_mailbox): member in class:IMAP4
389 """Copy 'message_set' messages onto end of 'new_mailbox'.
391 (typ, [data]) = <instance>.copy(message_set, new_mailbox)
393 return self._simple_command('COPY', message_set, new_mailbox)
    [all...]
mailbox.py 17 import copy namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 207 text.bind("<<copy>>", self.copy)
562 def copy(self,event): member in class:EditorWindow
566 self.text.event_generate("<<Copy>>")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_collections.py 7 import pickle, cPickle, copy namespace
175 for copier in copy.copy, copy.deepcopy:
229 stubs = methodstubs.copy()
671 words.copy(),
672 copy.copy(words),
673 copy.deepcopy(words),
696 d = c.copy()
    [all...]
test_sets.py 3 import unittest, operator, copy, pickle, random namespace
29 self.assertEqual(self.set.copy(), self.dup)
81 copy = pickle.loads(p)
82 self.assertEqual(self.set, copy,
83 "%s != %s" % (self.set, copy))
249 t = self.set.copy()
256 t = self.set.copy()
683 dup = self.set.copy()
692 dup = copy.deepcopy(self.set)
test_urllib2.py 408 import mimetools, httplib, copy namespace
410 self.requests.append(copy.deepcopy(req))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cookielib.py 32 import re, urlparse, copy, time, urllib namespace
765 self._rest = copy.copy(rest)
    [all...]
imaplib.py 47 'COPY': ('SELECTED',),
388 def copy(self, message_set, new_mailbox): member in class:IMAP4
389 """Copy 'message_set' messages onto end of 'new_mailbox'.
391 (typ, [data]) = <instance>.copy(message_set, new_mailbox)
393 return self._simple_command('COPY', message_set, new_mailbox)
    [all...]
mailbox.py 17 import copy namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 207 text.bind("<<copy>>", self.copy)
562 def copy(self,event): member in class:EditorWindow
566 self.text.event_generate("<<Copy>>")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_collections.py 7 import pickle, cPickle, copy namespace
175 for copier in copy.copy, copy.deepcopy:
229 stubs = methodstubs.copy()
671 words.copy(),
672 copy.copy(words),
673 copy.deepcopy(words),
696 d = c.copy()
    [all...]
test_sets.py 3 import unittest, operator, copy, pickle, random namespace
29 self.assertEqual(self.set.copy(), self.dup)
81 copy = pickle.loads(p)
82 self.assertEqual(self.set, copy,
83 "%s != %s" % (self.set, copy))
249 t = self.set.copy()
256 t = self.set.copy()
683 dup = self.set.copy()
692 dup = copy.deepcopy(self.set)
test_urllib2.py 408 import mimetools, httplib, copy namespace
410 self.requests.append(copy.deepcopy(req))
    [all...]
  /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 6 * You may obtain a copy of the License at
319 // Sort alphabetically. Must make copy to not destroy original.
320 ElementDescriptor[] copy = new ElementDescriptor[elements.length]; local
321 System.arraycopy(elements, 0, copy, 0, elements.length);
323 Arrays.sort(copy, new Comparator<ElementDescriptor>() {
330 return copy;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Configuration.java 6 * You may obtain a copy of the License at
214 Configuration configuration = copy(base);
231 * Creates a new {@linkplain Configuration} that is a copy from a different configuration
233 * @param original the original to copy from
237 public static Configuration copy(@NonNull Configuration original) { method in class:Configuration
238 Configuration copy = create(original.mConfigChooser); local
239 copy.mFullConfig.set(original.mFullConfig);
241 copy.mEditedConfig = new FolderConfiguration();
242 copy.mEditedConfig.set(original.mEditedConfig);
244 copy.mTarget = original.getTarget()
    [all...]
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 

Completed in 3623 milliseconds

<<31323334353637383940>>