/external/javassist/src/main/javassist/ |
CtMethod.java | 62 * Creates a copy of a <code>CtMethod</code> object. 113 copy(src, false, map); method
|
CtNewMethod.java | 146 * Creates a copy of a method. This method is provided for creating 160 public static CtMethod copy(CtMethod src, CtClass declaring, method in class:CtNewMethod 166 * Creates a copy of a method with a new name. 182 public static CtMethod copy(CtMethod src, String name, CtClass declaring, method in class:CtNewMethod 340 (ExceptionsAttribute)eattr.copy(cp, null)); 368 * <p>The body of the created method is a copy of the body of the method
|
/external/javassist/src/main/javassist/bytecode/ |
LocalVariableAttribute.java | 288 * Makes a copy. 290 * @param newCp the constant pool table used by the new copy. 293 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:LocalVariableAttribute 311 name = cp.copy(name, newCp, null);
|
ParameterAnnotationsAttribute.java | 104 * Copies this attribute and returns a new copy. 106 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:ParameterAnnotationsAttribute
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
TypeData.java | 62 public abstract TypeData copy(); method in class:TypeData 101 public TypeData copy() { method in class:TypeData.BasicType 323 private String name; // dot separated. null if this object is a copy of another. 329 public TypeData copy() { method in class:TypeData.ClassName 348 public TypeData copy() { method in class:TypeData.NullType 398 public TypeData copy() { method in class:TypeData.ArrayElement 469 return copy(); 474 public TypeData copy() { method in class:TypeData.UninitData
|
/external/javassist/src/main/javassist/compiler/ |
AccessorMaker.java | 58 minfo.addAttribute(ea.copy(cp, null)); 117 minfo.addAttribute(ea.copy(cp, null));
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
DefaultDataContext.java | 6 * You may obtain a copy of the License at 356 public void copy(String toPath, Data from) { method in class:DefaultDataContext.LocalVariable 360 public void copy(Data from) { method in class:DefaultDataContext.LocalVariable
|
DelegatedData.java | 6 * You may obtain a copy of the License at 233 public void copy(String toPath, Data from) { method in class:DelegatedData 235 getDelegate().copy(toPath, from); 239 public void copy(Data from) { method in class:DelegatedData 241 getDelegate().copy(from);
|
/external/llvm/include/llvm/ADT/ |
IntervalMap.h | 220 /// copy - Copy elements from another node. 224 /// @param Count Number of elements to copy. 226 void copy(const NodeBase<T1, T2, M> &Other, unsigned i, function in class:llvm::IntervalMapImpl::NodeBase 239 /// @param Count Number of elements to copy. 242 copy(*this, i, j, Count); 248 /// @param Count Number of elements to copy. 287 Sib.copy(*this, 0, SSize, Count); 299 Sib.copy(*this, Size-Count, 0, Count); 311 // We want to grow, copy from sib [all...] |
/external/mesa3d/src/mapi/glapi/ |
glapi_getproc.c | 8 * copy of this software and associated documentation files (the "Software"), 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 246 char *copy; local 247 copy = (char*) malloc(strlen(str) + 1); 248 if (!copy) 250 strcpy(copy, str); 251 return copy;
|
/external/mesa3d/src/mapi/mapi/ |
mapi_abi.py | 9 # copy of this software and associated documentation files (the "Software"), 11 # the rights to use, copy, modify, merge, publish, distribute, sublicense, 714 import copy namespace 722 ent = copy.copy(ent)
|
/external/mesa3d/src/mesa/tnl/ |
t_vb_texgen.c | 8 * copy of this software and associated documentation files (the "Software"), 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 350 GLuint copy; local 363 copy = (all_bits[in->size] & ~texUnit->TexGenEnabled); 364 if (copy) 365 _mesa_copy_tab[copy]( out, in );
|
/external/okhttp/src/main/java/com/squareup/okhttp/ |
OkHttpClient.java | 6 * You may obtain a copy of the License at 345 OkHttpClient copy = copyWithDefaults(); local 346 copy.proxy = proxy; 348 if (protocol.equals("http")) return new HttpURLConnectionImpl(url, copy); 349 if (protocol.equals("https")) return new HttpsURLConnectionImpl(url, copy); 354 * Returns a shallow copy of this OkHttpClient that uses the system-wide default for
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
Util.java | 6 * You may obtain a copy of the License at 294 public static int copy(InputStream in, OutputStream out) throws IOException { method in class:Util 332 /** Returns an immutable copy of {@code list}. */
|
/external/openssh/ |
authfile.c | 282 Buffer copy; local 299 buffer_init(©); 300 buffer_append(©, buffer_ptr(blob), buffer_len(blob)); 301 buffer_consume(©, sizeof(authfile_id_string)); 304 (void) buffer_get_char(©); /* cipher type */ 305 (void) buffer_get_int(©); /* reserved */ 308 (void) buffer_get_int(©); 310 buffer_get_bignum(©, pub->rsa->n); 311 buffer_get_bignum(©, pub->rsa->e); 313 *commentp = buffer_get_string(©, NULL) 426 Buffer copy; local [all...] |
/external/proguard/src/proguard/evaluation/ |
Stack.java | 17 * You should have received a copy of the GNU General Public License along 52 * Creates a Stack that is a copy of the given Stack. 59 // Copy the stack contents. 60 copy(stack); 96 public void copy(Stack other) method in class:Stack 105 // Copy the stack contents. 108 // Copy the sizes.
|
TracedStack.java | 17 * You should have received a copy of the GNU General Public License along 54 * Creates a new TracedStack that is a copy of the given TracedStack. 131 public void copy(TracedStack other) method in class:TracedStack 133 super.copy(other); 135 producerStack.copy(other.producerStack);
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DynamicMessageTest.java | 204 DynamicMessage copy = DynamicMessage.newBuilder(message).build(); local 205 reflectionTester.assertAllFieldsSetViaReflection(copy);
|
/external/protobuf/src/google/protobuf/ |
descriptor_database.cc | 322 void* copy = operator new(size); local 323 memcpy(copy, encoded_file_descriptor, size); 324 files_to_delete_.push_back(copy); 325 return Add(copy, size); 527 copy(results.begin(), results.end(), 534 copy(merged_results.begin(), merged_results.end(),
|
/external/qemu/ |
cutils.c | 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 245 size_t copy; local 249 copy = count; 250 if (copy > qiov->iov[i].iov_len) 251 copy = qiov->iov[i].iov_len; 252 memcpy(qiov->iov[i].iov_base, p, copy); 253 p += copy; 254 count -= copy;
|
/external/qemu/distrib/zlib-1.2.3/ |
inflate.c | 20 * - Unroll direct copy to three copies per loop in inffast.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 46 * - Unroll last copy for window match in inflate_fast() 328 unsigned copy, dist; local 347 /* copy state->wsize or less output bytes into the circular window */ 348 copy = out - strm->avail_out; 349 if (copy >= state->wsize) { 356 if (dist > copy) dist = copy; 357 zmemcpy(state->window + state->write, strm->next_out - copy, dist) 565 unsigned copy; \/* number of stored or match bytes to copy *\/ local [all...] |
/external/qemu/hw/ |
fw_cfg.c | 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 206 uint16_t *copy; local 208 copy = qemu_malloc(sizeof(value)); 209 *copy = cpu_to_le16(value); 210 return fw_cfg_add_bytes(opaque, key, (uint8_t *)copy, sizeof(value)); 215 uint32_t *copy; local 217 copy = qemu_malloc(sizeof(value)); 218 *copy = cpu_to_le32(value); 219 return fw_cfg_add_bytes(opaque, key, (uint8_t *)copy, sizeof(value)) 224 uint64_t *copy; local [all...] |
/external/qemu/slirp-android/ |
socket.c | 225 int n, nn, copy = size; local 239 nn = MIN(iov[0].iov_len, copy); 242 copy -= nn; 245 if (copy == 0) 248 memcpy(iov[1].iov_base, buf, copy); 323 * we must copy all data to a linear buffer then
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowBitmap.java | 81 public Bitmap copy(Bitmap.Config config, boolean isMutable) { method in class:ShadowBitmap
|
ShadowWifiManager.java | 76 WifiConfiguration copy = shadowOf(config).copy(); local 77 copy.networkId = networkId; 78 return copy;
|