/external/curl/CMake/Platforms/ |
D | WindowsCache.cmake | 3 set(HAVE_LIBDL 0) 4 set(HAVE_LIBUCB 0) 5 set(HAVE_LIBSOCKET 0) 6 set(NOT_NEED_LIBNSL 0) 7 set(HAVE_LIBNSL 0) 8 set(HAVE_GETHOSTNAME 1) 9 set(HAVE_LIBZ 0) 10 set(HAVE_LIBCRYPTO 0) 12 set(HAVE_DLOPEN 0) 14 set(HAVE_ALLOCA_H 0) [all …]
|
/external/iproute2/testsuite/configs/ |
D | all-2.4 | 5 # CONFIG_SBUS is not set 23 # CONFIG_M386 is not set 24 # CONFIG_M486 is not set 25 # CONFIG_M586 is not set 26 # CONFIG_M586TSC is not set 27 # CONFIG_M586MMX is not set 28 # CONFIG_M686 is not set 29 # CONFIG_MPENTIUMIII is not set 31 # CONFIG_MK6 is not set 32 # CONFIG_MK7 is not set [all …]
|
D | all-no-act | 26 # CONFIG_BSD_PROCESS_ACCT is not set 35 # CONFIG_EMBEDDED is not set 37 # CONFIG_KALLSYMS_ALL is not set 38 # CONFIG_KALLSYMS_EXTRA_PASS is not set 41 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 47 # CONFIG_TINY_SHMEM is not set 56 # CONFIG_MODVERSIONS is not set 57 # CONFIG_MODULE_SRCVERSION_ALL is not set 65 # CONFIG_X86_ELAN is not set 66 # CONFIG_X86_VOYAGER is not set [all …]
|
D | all-police-act | 26 # CONFIG_BSD_PROCESS_ACCT is not set 35 # CONFIG_EMBEDDED is not set 37 # CONFIG_KALLSYMS_ALL is not set 38 # CONFIG_KALLSYMS_EXTRA_PASS is not set 41 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 47 # CONFIG_TINY_SHMEM is not set 56 # CONFIG_MODVERSIONS is not set 57 # CONFIG_MODULE_SRCVERSION_ALL is not set 65 # CONFIG_X86_ELAN is not set 66 # CONFIG_X86_VOYAGER is not set [all …]
|
/external/eigen/bench/btl/data/ |
D | gnuplot_common_settings.hh | 1 set noclip points 2 set clip one 3 set noclip two 4 set bar 1.000000 5 set border 31 lt -1 lw 1.000 6 set xdata 7 set ydata 8 set zdata 9 set x2data 10 set y2data [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-set.cc | 43 hb_set_t *set; in hb_set_create() local 45 if (!(set = hb_object_create<hb_set_t> ())) in hb_set_create() 48 set->clear (); in hb_set_create() 50 return set; in hb_set_create() 82 hb_set_reference (hb_set_t *set) in hb_set_reference() argument 84 return hb_object_reference (set); in hb_set_reference() 94 hb_set_destroy (hb_set_t *set) in hb_set_destroy() argument 96 if (!hb_object_destroy (set)) return; in hb_set_destroy() 98 set->fini (); in hb_set_destroy() 100 free (set); in hb_set_destroy() [all …]
|
/external/llvm/test/MC/Mips/ |
D | mips-hwr-register-names.s | 3 # FIXME: Use the code generator in order to print the .set directives 8 .set noat 9 # CHECK: .set push 10 # CHECK-NEXT: .set mips32r2 12 # CHECK-NEXT: .set pop # encoding: [0x7c,0x04,0x00,0x3b] 14 # CHECK: .set push 15 # CHECK-NEXT: .set mips32r2 17 # CHECK-NEXT: .set pop # encoding: [0x7c,0x04,0x00,0x3b] 20 # CHECK: .set push 21 # CHECK-NEXT: .set mips32r2 [all …]
|
D | set-mips-directives.s | 5 .set noreorder 6 .set mips1 8 .set mips2 10 .set mips3 12 .set mips4 14 .set mips5 16 .set mips32 18 .set mips32r2 20 .set mips32 21 .set mips32r3 [all …]
|
D | set-at-directive.s | 4 # for ".set at" and set the correct value. 7 # CHECK: .set at=$1 11 .set at=$1 13 # CHECK: .set at=$2 17 .set at=$2 19 # CHECK: .set at=$3 23 .set at=$3 25 # CHECK: .set at=$4 29 .set at=$a0 31 # CHECK: .set at=$5 [all …]
|
D | set-arch.s | 5 .set arch=mips1 7 .set arch=mips2 9 .set arch=mips3 11 .set arch=mips4 13 .set arch=mips5 15 .set arch=mips32 17 .set arch=mips32r2 19 .set arch=mips32 20 .set arch=mips32r3 22 .set arch=mips32 [all …]
|
/external/vixl/test/ |
D | test-invalset.cc | 95 TestSet set; in TEST() local 96 VIXL_CHECK(set.empty() && (set.size() == 0)); in TEST() 99 set.insert(Obj(i, i)); in TEST() 101 VIXL_CHECK(set.size() == kNPreallocatedElements); in TEST() 103 set.insert(Obj(-123, 456)); in TEST() 104 set.insert(Obj(2718, 2871828)); in TEST() 105 VIXL_CHECK(set.size() == kNPreallocatedElements + 2); in TEST() 106 VIXL_CHECK(set.GetMinElement() == Obj(-123, 456)); in TEST() 108 set.erase(Obj(-123, 456)); in TEST() 109 VIXL_CHECK(set.GetMinElementKey() == 0); in TEST() [all …]
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSortedSetTest.java | 103 SortedSet<String> set = of(); in testEmpty_comparator() local 104 assertSame(Ordering.natural(), set.comparator()); in testEmpty_comparator() 108 SortedSet<String> set = of(); in testEmpty_headSet() local 109 assertSame(set, set.headSet("c")); in testEmpty_headSet() 113 SortedSet<String> set = of(); in testEmpty_tailSet() local 114 assertSame(set, set.tailSet("f")); in testEmpty_tailSet() 118 SortedSet<String> set = of(); in testEmpty_subSet() local 119 assertSame(set, set.subSet("c", "f")); in testEmpty_subSet() 123 SortedSet<String> set = of(); in testEmpty_first() local 125 set.first(); in testEmpty_first() [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableSortedSetTest.java | 215 SortedSet<String> set = of(); in testEmpty_comparator() local 216 assertSame(Ordering.natural(), set.comparator()); in testEmpty_comparator() 220 SortedSet<String> set = of(); in testEmpty_headSet() local 221 assertSame(set, set.headSet("c")); in testEmpty_headSet() 225 SortedSet<String> set = of(); in testEmpty_tailSet() local 226 assertSame(set, set.tailSet("f")); in testEmpty_tailSet() 230 SortedSet<String> set = of(); in testEmpty_subSet() local 231 assertSame(set, set.subSet("c", "f")); in testEmpty_subSet() 235 SortedSet<String> set = of(); in testEmpty_first() local 237 set.first(); in testEmpty_first() [all …]
|
/external/toybox/ |
D | .config | 11 # CONFIG_TOYBOX_DEBUG is not set 16 # CONFIG_TOYBOX_FREE is not set 22 # CONFIG_TOYBOX_LSM_NONE is not set 23 # CONFIG_TOYBOX_MUSL_NOMMU_IS_BROKEN is not set 27 # CONFIG_TOYBOX_PEDANTIC_ARGS is not set 29 # CONFIG_TOYBOX_SHADOW is not set 30 # CONFIG_TOYBOX_SMACK is not set 34 # CONFIG_TOYBOX_UTMPX is not set 41 # CONFIG_ARPING is not set 42 # CONFIG_ARP is not set [all …]
|
/external/llvm/cmake/modules/ |
D | LLVMConfig.cmake.in | 5 set(LLVM_VERSION_MAJOR @LLVM_VERSION_MAJOR@) 6 set(LLVM_VERSION_MINOR @LLVM_VERSION_MINOR@) 7 set(LLVM_VERSION_PATCH @LLVM_VERSION_PATCH@) 8 set(LLVM_PACKAGE_VERSION @PACKAGE_VERSION@) 10 set(LLVM_BUILD_TYPE @CMAKE_BUILD_TYPE@) 12 set(LLVM_COMMON_DEPENDS @LLVM_COMMON_DEPENDS@) 14 set(LLVM_AVAILABLE_LIBS @LLVM_AVAILABLE_LIBS@) 16 set(LLVM_ALL_TARGETS @LLVM_ALL_TARGETS@) 18 set(LLVM_TARGETS_TO_BUILD @LLVM_TARGETS_TO_BUILD@) 20 set(LLVM_TARGETS_WITH_JIT @LLVM_TARGETS_WITH_JIT@) [all …]
|
/external/fio/tools/plot/ |
D | graph3D.gpm | 18 set title ARG1 20 set terminal png size 1280,1024 21 set output ARG4 . '.png' 22 #set terminal x11 24 set isosamples 30 25 set hidden3d 26 set pm3d at s solid hidden3d 100 scansbackward 27 set pm3d depthorder 30 #set logscale x 31 set ytics axis out 0,1 [all …]
|
/external/clang/docs/ |
D | CMakeLists.txt | 4 set(abs_srcdir ${CMAKE_CURRENT_SOURCE_DIR}) 5 set(abs_builddir ${CMAKE_CURRENT_BINARY_DIR}) 8 set(DOT ${LLVM_PATH_DOT}) 12 set(enable_searchengine "YES") 13 set(searchengine_url "${LLVM_DOXYGEN_SEARCHENGINE_URL}") 14 set(enable_server_based_search "YES") 15 set(enable_external_search "YES") 16 set(extra_search_mappings "${LLVM_DOXYGEN_SEARCH_MAPPINGS}") 18 set(enable_searchengine "NO") 19 set(searchengine_url "") [all …]
|
/external/skia/samplecode/ |
D | vertexdump.cpp | 12 verts[0].set(107, 189); in setup_vertexbug() 13 texs[0].set(0, 0); in setup_vertexbug() 14 verts[1].set(116, 189); in setup_vertexbug() 15 texs[1].set(9, 0); in setup_vertexbug() 16 verts[2].set(203, 189); in setup_vertexbug() 17 texs[2].set(35, 0); in setup_vertexbug() 18 verts[3].set(212, 189); in setup_vertexbug() 19 texs[3].set(44, 0); in setup_vertexbug() 20 verts[4].set(107, 198); in setup_vertexbug() 21 texs[4].set(0, 9); in setup_vertexbug() [all …]
|
/external/llvm/test/CodeGen/Mips/ |
D | fpneeded.ll | 13 ; 32: .set nomips16 15 ; 32: .set noreorder 16 ; 32: .set nomacro 17 ; 32: .set noat 19 ; 32: .set at 20 ; 32: .set macro 21 ; 32: .set reorder 29 ; 32: .set nomips16 31 ; 32: .set noreorder 32 ; 32: .set nomacro [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_sets.py | 15 self.assertEqual(repr(self.set), self.repr) 18 self.assertEqual(len(self.set), self.length) 21 self.assertEqual(self.set, self.set) 24 self.assertEqual(self.set, self.dup) 27 self.assertEqual(self.set.copy(), self.dup) 30 result = self.set | self.set 34 result = self.set | empty_set 38 result = empty_set | self.set 42 result = self.set & self.set 46 result = self.set & empty_set [all …]
|
D | test_set.py | 51 self.assertRaises(TypeError, set().__init__, a=1) 78 for C in set, frozenset, dict.fromkeys, str, unicode, list, tuple: 79 self.assertEqual(self.thetype('abcba').union(C('cdc')), set('abcd')) 80 self.assertEqual(self.thetype('abcba').union(C('efgfe')), set('abcefg')) 81 self.assertEqual(self.thetype('abcba').union(C('ccb')), set('abc')) 82 self.assertEqual(self.thetype('abcba').union(C('ef')), set('abcef')) 83 self.assertEqual(self.thetype('abcba').union(C('ef'), C('fg')), set('abcefg')) 87 self.assertEqual(x.union(set([1]), x, set([2])), self.thetype([1, 2])) 91 self.assertEqual(self.s | set(self.otherword), i) 107 for C in set, frozenset, dict.fromkeys, str, unicode, list, tuple: [all …]
|
/external/icu/icu4c/source/common/ |
D | uset.cpp | 44 uset_close(USet* set) { in uset_close() argument 45 delete (UnicodeSet*) set; in uset_close() 49 uset_clone(const USet *set) { in uset_clone() argument 50 return (USet*) (((UnicodeSet*) set)->UnicodeSet::clone()); in uset_clone() 54 uset_isFrozen(const USet *set) { in uset_isFrozen() argument 55 return ((UnicodeSet*) set)->UnicodeSet::isFrozen(); in uset_isFrozen() 59 uset_freeze(USet *set) { in uset_freeze() argument 60 ((UnicodeSet*) set)->UnicodeSet::freeze(); in uset_freeze() 64 uset_cloneAsThawed(const USet *set) { in uset_cloneAsThawed() argument 65 return (USet*) (((UnicodeSet*) set)->UnicodeSet::cloneAsThawed()); in uset_cloneAsThawed() [all …]
|
/external/swiftshader/third_party/LLVM/test/ |
D | site.exp.in | 3 set target_triplet "@TARGET_TRIPLE@" 4 set TARGETS_TO_BUILD "@TARGETS_TO_BUILD@" 5 set llvmgcc_langs "@LLVMGCC_LANGS@" 6 set llvmtoolsdir "@LLVM_TOOLS_DIR@" 7 set llvmlibsdir "@LLVM_LIBS_DIR@" 8 set llvmshlibdir "@SHLIBDIR@" 9 set llvm_bindings "@LLVM_BINDINGS@" 10 set srcroot "@LLVM_SOURCE_DIR@" 11 set objroot "@LLVM_BINARY_DIR@" 12 set srcdir "@LLVM_SOURCE_DIR@" [all …]
|
/external/deqp/framework/delibs/cmake/ |
D | toolchain-android-r11.cmake | 22 set(CMAKE_SYSTEM_NAME Linux) 26 set(CMAKE_CROSSCOMPILING 1) 35 message(STATUS "Warning: ANDROID_NDK_HOST_OS is not set") 37 set(ANDROID_NDK_HOST_OS "windows") 39 set(ANDROID_NDK_HOST_OS "linux-86") 44 set(ANDROID_ABI "armeabi-v7a" CACHE STRING "Android ABI") 45 set(ANDROID_NDK_TARGET "android-${DE_ANDROID_API}") 48 set(DE_OS "DE_OS_ANDROID") 51 set(DE_COMPILER "DE_COMPILER_CLANG") 55 set(DE_ANDROID_API 9) [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | usettest.c | 28 static void expect(const USet* set, 32 static void expectContainment(const USet* set, 36 static void expectItems(const USet* set, 83 USet* set; in TestAPI() local 88 set = uset_openEmpty(); in TestAPI() 89 expect(set, "", "abc{ab}", NULL); in TestAPI() 90 uset_close(set); in TestAPI() 92 set = uset_open(1, 0); in TestAPI() 93 expect(set, "", "abc{ab}", NULL); in TestAPI() 94 uset_close(set); in TestAPI() [all …]
|