/external/mesa3d/src/glsl/ |
linker.cpp | 5 * copy of this software and associated documentation files (the "Software"), 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 517 * have an initializer but a later instance does, copy the 819 ir_variable *copy = ir->var->clone(this->target, NULL); local 821 this->symbols->add_variable(copy); 822 this->instructions->push_head(copy); 823 ir->var = copy; [all...] |
/external/mesa3d/src/glx/ |
glxcmds.c | 6 * copy of this software and associated documentation files (the "Software"), 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 506 ** Copy the source context to the destination context using the 544 ** can be flushed before the copy. 2456 char *copy; local [all...] |
/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-internal.h | 1074 Element* const copy = new Element[a_size]; local [all...] |
/external/pixman/test/ |
utils.c | 482 pixman_image_t *copy; local 495 copy = pixman_image_create_bits ( 499 PIXMAN_OP_SRC, image, NULL, copy, 0, 0, 0, 0, 0, 0, width, height); 535 pixman_image_unref (copy); [all...] |
/external/proguard/src/proguard/optimize/evaluation/ |
PartialEvaluator.java | 17 * You should have received a copy of the GNU General Public License along 645 stacksBefore[instructionOffset].copy(stack); method 786 stacksAfter[instructionOffset].copy(stack); method [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowApplication.java | 325 List<Wrapper> copy = new ArrayList<Wrapper>(); local 326 copy.addAll(registeredReceivers); 327 for (Wrapper wrapper : copy) {
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/ |
R.java | 68 public static final int copy = nextId++; field in class:R.string
|
/external/smack/src/org/xbill/DNS/ |
Name.java | 123 copy(Name src, Name dst) { method in class:Name 210 copy(empty, this); method 212 copy(origin, this); method 215 copy(root, this); method 404 * @param n The number of labels to remove from the beginning in the copy 430 copy(prefix, newname); method 446 copy(this, newname); method 466 copy(wild, newname); method 614 * Retrieve the nth label of a Name. This makes a copy of the label; changing
|
/external/sonivox/jet_tools/JetCreator/ |
midifile.py | 12 You may obtain a copy of the License at
25 import copy
namespace 725 self.controllers[channel] = copy.deepcopy(DEFAULT_CONTROLLER_VALUES)
727 self.rpns[channel] = copy.deepcopy(DEFAULT_RPN_VALUES)
890 # copy events and sort them by ticks/sequence#
[all...] |
/external/strace/ |
process.c | 656 struct modify_ldt_ldt_s copy; local 657 if (umove(tcp, tcp->u_arg[ARG_TLS], ©) != -1) { 659 copy.entry_number); 663 print_ldt_entry(©); [all...] |
syscall.c | 408 char *copy; local 439 if (!(copy = strdup(s))) { 443 for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) { 469 free(copy); [all...] |
/external/v8/src/ia32/ |
builtins-ia32.cc | 303 // Copy arguments and receiver to the expression stack. 408 // Copy arguments to the stack in a loop. 456 // Push a copy of the function. 482 // Push a copy of the function onto the stack. 680 __ j(not_sign, &loop); // While non-negative (to copy return address). 681 __ pop(ebx); // Discard copy of return address. 832 // Copy all arguments from the array to the stack. 1601 Label copy; local 1624 Label copy; local [all...] |
/external/v8/test/cctest/ |
test-heap.cc | 93 Object* copy = HEAP->CreateCode( local 97 CHECK(copy->IsCode()); 98 HeapObject* obj_copy = HeapObject::cast(copy); 725 Handle<JSObject> clone = Copy(obj); [all...] |
/external/valgrind/main/helgrind/ |
hg_errors.c | 24 You should have received a copy of the GNU General Public License 55 /* maps (by value) strings to a copy of them in ARENA_TOOL */ 70 HChar* copy = NULL; local 80 NULL, (Word*)©, (Word)str )) { 81 tl_assert(copy); 82 if (0) VG_(printf)("string_table_strdup: %p -> %p\n", str, copy ); 83 return copy; 85 copy = HG_(strdup)("hg.sts.2", str); 86 tl_assert(copy); 87 VG_(addToFM)( string_table, (Word)copy, (Word)copy ) [all...] |
/external/valgrind/main/mpi/ |
libmpiwrap.c | 1311 MPI_Request* copy; local [all...] |
/frameworks/av/media/libstagefright/httplive/ |
LiveSession.cpp | 6 * You may obtain a copy of the License at 694 sp<ABuffer> copy = new ABuffer(buffer->size() + bufferRemaining); local 695 memcpy(copy->data(), buffer->data(), buffer->size()); 696 copy->setRange(0, buffer->size()); 698 buffer = copy; [all...] |
/frameworks/av/services/camera/libcameraservice/device2/ |
Camera2Device.cpp | 6 * You may obtain a copy of the License at 670 camera_metadata_t *copy = local 672 append_camera_metadata(copy, *slotEntry); 673 mEntries.push_back(copy); [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Bitmap.java | 6 * You may obtain a copy of the License at 461 * <p>Copy the bitmap's pixels into the specified buffer (allocated by the 503 * <p>Copy the pixels from the buffer, beginning at the current position, 552 * @return the new bitmap, or null if the copy could not be made. 554 public Bitmap copy(Config config, boolean isMutable) { method in class:Bitmap 555 checkRecycled("Can't copy a recycled bitmap"); 609 * be the same object as source, or a copy may have been made. It is 618 * bitmap. The new bitmap may be the same object as source, or a copy may 627 * @return A copy of a subset of the source bitmap or the source bitmap itself. 639 * same object as source, or a copy may have been made. It i [all...] |
/libcore/json/src/test/java/org/json/ |
JSONObjectTest.java | 6 * You may obtain a copy of the License at 753 JSONObject copy = new JSONObject(source, new String[] { "a", "c" }); local 754 assertEquals(2, copy.length()); 755 assertEquals(JSONObject.NULL, copy.get("a")); 756 assertEquals(5, copy.get("c")); 757 assertEquals(null, copy.opt("b")); 766 JSONObject copy = new JSONObject(source, new String[]{ "a", "c", "d" }); local 767 assertEquals(2, copy.length()); 768 assertEquals(JSONObject.NULL, copy.get("a")); 769 assertEquals(5, copy.get("c")) [all...] |
/libcore/luni/src/main/java/java/math/ |
BigInteger.java | 7 * the License. You may obtain a copy of the License at 394 BigInt a = bigInt.copy(); 408 BigInt a = bigInt.copy(); 1224 BigInteger copy() { method [all...] |
/libcore/luni/src/main/java/java/util/ |
TreeMap.java | 6 * You may obtain a copy of the License at 159 map.root = root != null ? root.copy(null) : null; 747 Node<K, V> copy(Node<K, V> parent) { method in class:TreeMap.Node 750 result.left = left.copy(result); 753 result.right = right.copy(result); [all...] |
/libcore/luni/src/main/native/ |
org_apache_harmony_xml_ExpatParser.cpp | 6 * You may obtain a copy of the License at 262 // Create a copy of the UTF-8 bytes. 264 char* copy = new char[strlen(bytes) + 1]; local 265 if (copy == NULL) { 269 strcpy(copy, bytes); 270 wrapper->bytes = copy; 452 * @param text to copy into the buffer 453 * @param length of text to copy (in bytes) 595 // Disallow copy and assignment. [all...] |
/ndk/sources/host-tools/ndk-stack/regex/ |
regcomp.c | 949 sopno copy; local 983 copy = dupl(p, start+1, finish+1); 984 assert(copy == finish+4); 985 repeat(p, copy, 1, to-1); 992 copy = dupl(p, start, finish); 993 repeat(p, copy, from-1, to-1); 996 copy = dupl(p, start, finish); 997 repeat(p, copy, from-1, to); [all...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-internal.h | 995 Element* const copy = new Element[a_size]; local [all...] |
/packages/apps/Browser/src/com/android/browser/ |
BrowserBookmarksPage.java | 6 * You may obtain a copy of the License at 210 copy(getUrl(adapter, childPosition)); 551 private void copy(CharSequence text) { method in class:BrowserBookmarksPage
|