HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 126 - 150 of 11972) sorted by null

1 2 3 4 56 7 8 91011>>

  /tools/tradefederation/core/src/com/android/tradefed/build/
AppBuildInfo.java 6 * You may obtain a copy of the License at
85 AppBuildInfo copy = new AppBuildInfo(getBuildId(), getBuildTargetName()); local
86 copy.addAllBuildAttributes(this);
95 copy.addAppPackageFile(copyFile, origVerFile.getVersion());
100 copy.setBuildBranch(getBuildBranch());
101 copy.setBuildFlavor(getBuildFlavor());
103 return copy;
  /external/clang/test/SemaCXX/
constexpr-duffs-device.cpp 4 constexpr void copy(const char *from, unsigned long count, char *to) { function
22 copy("Hello, world!", 14, stuff);
  /external/compiler-rt/test/BlocksRuntime/
byrefcopyint.c 50 voidVoid copy = Block_copy(dummy); local
53 return copy;
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
CoverageNodeImpl.java 147 final CoverageNodeImpl copy = new CoverageNodeImpl(elementType, name); local
148 copy.instructionCounter = CounterImpl.getInstance(instructionCounter);
149 copy.branchCounter = CounterImpl.getInstance(branchCounter);
150 copy.lineCounter = CounterImpl.getInstance(lineCounter);
151 copy.complexityCounter = CounterImpl.getInstance(complexityCounter);
152 copy.methodCounter = CounterImpl.getInstance(methodCounter);
153 copy.classCounter = CounterImpl.getInstance(classCounter);
154 return copy;
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
Makefile 21 all-local:: copy-meta
28 copy-meta: $(OcamlDir)/META.llvm
  /frameworks/wilhelm/tools/hashgen/
test.c 6 * You may obtain a copy of the License at
39 const struct SLInterfaceID_ copy = *original; local
40 MPH = IID_to_MPH(&copy);
42 fprintf(stderr, "error: IID_to_MPH(copy) = %d != %d\n", MPH, i);
  /libcore/tools/upstream/
Android.mk 6 # You may obtain a copy of the License at
31 LOCAL_MODULE := libcore-copy-upstream-files
33 LOCAL_JAR_MANIFEST := src/main/libcore-copy-upstream-files.mf
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7272.go 18 copy(a, a)
26 (copy(a, a))
34 go copy(a, a)
42 defer copy(a, a)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7272.go 18 copy(a, a)
26 (copy(a, a))
34 go copy(a, a)
42 defer copy(a, a)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
attributes.d 1 #name: Symbol flags copy
  /system/tools/hidl/utils/
StringHelper.cpp 6 * You may obtain a copy of the License at
72 std::string copy(in);
76 copy = RTrimAll(copy, "_");
77 while(!copy.empty()) {
78 copy = LTrimAll(copy, "_");
79 if (std::regex_search(copy, match, kStartLowercase))
81 if (std::regex_search(copy, match, kStartCapcase))
83 if (std::regex_search(copy, match, kStartUppercase)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
  /external/python/cpython2/Modules/zlib/
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()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
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()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
  /external/syslinux/com32/lib/zlib/
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()
363 unsigned copy, dist; local
382 /* copy state->wsize or less output bytes into the circular window */
383 copy = out - strm->avail_out;
384 if (copy >= state->wsize) {
391 if (dist > copy) dist = copy;
392 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist)
600 unsigned copy; \/* number of stored or match bytes to copy *\/ local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
TreeMultimapExplicitTest.java 6 * You may obtain a copy of the License at
105 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); local
106 assertEquals(tree, copy);
107 assertThat(copy.keySet()).has().exactly("google", "tree").inOrder();
108 assertThat(copy.get("google")).has().exactly(2, 6).inOrder();
109 assertEquals(Ordering.natural(), copy.keyComparator());
110 assertEquals(Ordering.natural(), copy.valueComparator());
111 assertEquals(Ordering.natural(), copy.get("google").comparator());
189 TreeMultimap<String, Integer> copy = local
191 copy.putAll(multimap)
212 TreeMultimap<String, Integer> copy local
    [all...]
  /external/autotest/client/bin/result_tools/
utils.py 31 import copy
263 args_skip_autotest_log = copy.copy(args)
267 (shrink_file_throttler, copy.copy(args_skip_autotest_log)),
268 (zip_file_throttler, copy.copy(args_skip_autotest_log)),
269 (shrink_file_throttler, copy.copy(args)),
270 (dedupe_file_throttler, copy.copy(args))
    [all...]
  /cts/tests/openglperf2/jni/graphics/
Vector2D.h 5 * in compliance with the License. You may obtain a copy of the License at
21 Vector2D copy();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/CustomizedCompress/
makefile 68 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).lib $(TARGET_LIB) /Y
70 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME)Obj.pdb $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME)Obj.pdb /Y
76 if exist $(TARGET_LIB) copy $(TARGET_LIB) $(EFI_PLATFORM_BIN)\tools\$(TARGET_NAME).lib /Y
78 copy $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME)Obj.pdb $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME)Obj.pdb /Y
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/FwImage/
Makefile 73 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).exe $(TARGET_EXE) /Y
75 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb /Y
81 if exist $(TARGET_EXE) copy $(TARGET_EXE) $(EFI_PLATFORM_BIN)\tools\$(TARGET_NAME).exe /Y
83 copy $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb /Y
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenCRC32Section/
makefile 72 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).exe $(TARGET_EXE) /Y
74 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb /Y
80 if exist $(TARGET_EXE) copy $(TARGET_EXE) $(EFI_PLATFORM_BIN)\tools\$(TARGET_NAME).exe /Y
82 copy $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb /Y
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/MakeDeps/
Makefile 59 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).exe $(TARGET_EXE) /Y
61 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb /Y
67 if exist $(TARGET_EXE) copy $(TARGET_EXE) $(EFI_PLATFORM_BIN)\tools\$(TARGET_NAME).exe /Y
69 copy $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb /Y
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SetStamp/
Makefile 75 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).exe $(TARGET_EXE) /Y
77 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb /Y
83 if exist $(TARGET_EXE) copy $(TARGET_EXE) $(EFI_PLATFORM_BIN)\tools\$(TARGET_NAME).exe /Y
85 copy $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb /Y
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiHiiPack/
Makefile 59 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).exe $(TARGET_EXE) /Y
61 copy $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb /Y
67 if exist $(TARGET_EXE) copy $(TARGET_EXE) $(EFI_PLATFORM_BIN)\tools\$(TARGET_NAME).exe /Y
69 copy $(EDK_TOOLS_OUTPUT)\$(TARGET_NAME).pdb $(EFI_PLATFORM_BIN)\Tools\$(TARGET_NAME).pdb /Y
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Copying.c 85 characters, null characters are appended to the copy in the array pointed
112 strncpyX exists because normal strncpy does not indicate if the copy was
115 @return The strncpyX function returns 0 if the copy operation was
136 /** NetBSD Compatibility Function strdup creates a duplicate copy of a string. **/
141 char *copy; local
144 if ((copy = malloc(len)) == NULL)
146 memcpy(copy, str, len);
147 return (copy);

Completed in 1350 milliseconds

1 2 3 4 56 7 8 91011>>