HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 101 - 125 of 3098) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableTableTest.java 6 * You may obtain a copy of the License at
161 Table<R, C, V> copy = ImmutableTable.copyOf(original); local
162 assertEquals(original, copy);
163 validateViewOrdering(original, copy);
172 Table<R, C, V> original, Table<R, C, V> copy) {
173 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
174 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
175 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
227 Table<Character, Integer, String> copy local
231 assertThat(copy.rowKeySet()).has().exactly('a', 'b').inOrder()
    [all...]
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
DependencyEdge.java 6 * You may obtain a copy of the License at
62 @Override public Edge copy(NodeId fromId, NodeId toId) { method in class:DependencyEdge
Edge.java 6 * You may obtain a copy of the License at
57 * Returns a copy of the edge with new node IDs.
61 * @return copy of the edge with the new node IDs
63 public abstract Edge copy(NodeId fromId, NodeId toId); method in class:Edge
ImplementationNode.java 6 * You may obtain a copy of the License at
61 @Override public Node copy(NodeId id) { method in class:ImplementationNode
InstanceNode.java 6 * You may obtain a copy of the License at
64 @Override public Node copy(NodeId id) { method in class:InstanceNode
Node.java 6 * You may obtain a copy of the License at
64 * Returns a copy of the node with a new ID.
67 * @return copy of the node with a new ID
69 public abstract Node copy(NodeId id); method in class:Node
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Replaceable.java 95 * @param srcStart the beginning index to copy, inclusive; <code>0
97 * @param srcLimit the ending index to copy, exclusive;
168 void copy(int start, int limit, int dest); method in interface:Replaceable
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Replaceable.java 98 * @param srcStart the beginning index to copy, inclusive; <code>0
100 * @param srcLimit the ending index to copy, exclusive;
175 void copy(int start, int limit, int dest); method in interface:Replaceable
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
SessionInfoStore.java 46 final List<SessionInfo> copy = new ArrayList<SessionInfo>(infos); local
47 Collections.sort(copy);
48 return copy;
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/
TestFileToken.java 13 * You should have received a copy of both licenses in LICENCE.LGPL and
45 IOUtils.copy(i, o);
  /external/javassist/src/main/javassist/bytecode/
EnclosingMethodAttribute.java 119 * Makes a copy. Class names are replaced according to the
122 * @param newCp the constant pool table used by the new copy.
126 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:EnclosingMethodAttribute
  /external/libcxx/test/support/
constexpr_char_traits.hpp 41 static TEST_CONSTEXPR_CXX14 char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
120 constexpr_char_traits<_CharT>::copy(char_type* __s1, const char_type* __s2, size_t __n) function in class:constexpr_char_traits
  /external/libcxx/utils/libcxx/android/
compiler.py 1 import copy
17 def copy(self): member in class:AndroidCXXCompiler
18 return copy.deepcopy(self)
  /external/libxcam/modules/isp/
x3a_isp_config.cpp 8 * You may obtain a copy of the License at
32 AtomIspConfigContent::copy (const struct atomisp_parameters &config) function in class:XCam::AtomIspConfigContent
221 _isp_content.copy (isp_3a->get_isp_config());
  /external/linux-kselftest/tools/testing/selftests/powerpc/include/
instructions.h 8 /* This defines the "copy" instruction from Power ISA 3.0 Book II, section 4.4. */
11 #define COPY(RA, RB, L) \
14 static inline void copy(void *i) function
16 asm volatile(str(COPY(0, %0, 0))";"
25 asm volatile(str(COPY(0, %0, 1))";"
  /external/mesa3d/src/gallium/auxiliary/renderonly/
renderonly.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
42 struct renderonly *copy; local
44 copy = CALLOC_STRUCT(renderonly);
45 if (!copy)
48 memcpy(copy, ro, sizeof(*ro));
50 return copy;
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
LenientCopyTool.java 16 copy(from, mock, from.getClass()); method
20 copy(from, to, from.getClass()); method
23 private <T> void copy(T from, T to, Class<?> fromClazz) { method in class:LenientCopyTool
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
OkUrlFactory.java 6 * You may obtain a copy of the License at
46 * Returns a copy of this stream handler factory that includes a shallow copy
59 OkHttpClient copy = client.copyWithDefaults(); local
60 copy.setProxy(proxy);
62 if (protocol.equals("http")) return new HttpURLConnectionImpl(url, copy, urlFilter);
63 if (protocol.equals("https")) return new HttpsURLConnectionImpl(url, copy, urlFilter);
  /external/proguard/src/proguard/classfile/instruction/
LookUpSwitchInstruction.java 17 * You should have received a copy of the GNU General Public License along
64 public LookUpSwitchInstruction copy(LookUpSwitchInstruction lookUpSwitchInstruction) method in class:LookUpSwitchInstruction
TableSwitchInstruction.java 17 * You should have received a copy of the GNU General Public License along
67 public TableSwitchInstruction copy(TableSwitchInstruction tableSwitchInstruction) method in class:TableSwitchInstruction
  /external/python/cpython2/Lib/
hmac.py 18 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
88 def copy(self): member in class:HMAC
89 """Return a separate copy of this hashing object.
91 An update to this copy won't affect the original object.
96 other.inner = self.inner.copy()
97 other.outer = self.outer.copy()
105 h = self.outer.copy()
  /external/python/cpython2/Python/
structmember.c 40 PyMemberDef copy; local
41 copy.name = l->name;
42 copy.type = l->type;
43 copy.offset = l->offset;
44 copy.flags = l->flags;
45 copy.doc = NULL;
46 return PyMember_GetOne(addr, &copy);
148 PyMemberDef copy; local
149 copy.name = l->name;
150 copy.type = l->type
    [all...]
  /external/python/cpython2/Tools/scripts/
treesync.py 17 copy the slave to the master
19 copy the master to the slave
123 copy(master, slave, answer=create_files)
134 # Master is newer -- copy master to slave
139 copy(master, slave, answer=write_slave)
141 # Slave is newer -- copy slave to master
149 print "***UPDATING MASTER (BINARY COPY)***"
150 copy(slave, master, "rb", answer=write_master)
153 copy(slave, master, "r", answer=write_master)
176 def copy(src, dst, rmode="rb", wmode="wb", answer='ask') function
    [all...]
  /external/python/cpython3/Lib/
copy.py 5 import copy
7 x = copy.copy(y) # make a shallow copy of y
8 x = copy.deepcopy(y) # make a deep copy of y
10 For module specific errors, copy.Error is raised.
16 - A shallow copy constructs a new compound object and then (to the
20 - A deep copy constructs a new compound object and then, recursively,
23 Two problems often exist with deep copy operations that don't exis
66 def copy(x): function
    [all...]
hmac.py 95 def copy(self): member in class:HMAC
96 """Return a separate copy of this hashing object.
98 An update to this copy won't affect the original object.
104 other.inner = self.inner.copy()
105 other.outer = self.outer.copy()
113 h = self.outer.copy()

Completed in 1405 milliseconds

1 2 3 45 6 7 8 91011>>