/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/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 …]
|
/external/tensorflow/tensorflow/core/lib/gtl/ |
D | flatset_test.cc | 33 bool Has(const NumSet& set, int64 k) { in Has() argument 34 auto iter = set.find(k); in Has() 35 if (iter == set.end()) { in Has() 36 EXPECT_EQ(set.count(k), 0); in Has() 39 EXPECT_EQ(set.count(k), 1); in Has() 47 NumSetContents Contents(const NumSet& set) { in Contents() argument 48 NumSetContents result(set.begin(), set.end()); in Contents() 54 void Fill(NumSet* set, int64 start, int64 limit) { in Fill() argument 56 set->insert(i); in Fill() 61 NumSet set; in TEST() local [all …]
|
/external/vixl/test/ |
D | test-invalset.cc | 96 TestSet set; in TEST() local 97 VIXL_CHECK(set.empty() && (set.size() == 0)); in TEST() 100 set.insert(Obj(i, i)); in TEST() 102 VIXL_CHECK(set.size() == kNPreallocatedElements); in TEST() 104 set.insert(Obj(-123, 456)); in TEST() 105 set.insert(Obj(2718, 2871828)); in TEST() 106 VIXL_CHECK(set.size() == kNPreallocatedElements + 2); in TEST() 107 VIXL_CHECK(set.GetMinElement() == Obj(-123, 456)); in TEST() 109 set.erase(Obj(-123, 456)); in TEST() 110 VIXL_CHECK(set.GetMinElementKey() == 0); in TEST() [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->init (); 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->finish (); in hb_set_destroy() 100 free (set); in hb_set_destroy() [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/curl/lib/ |
D | setopt.c | 126 data->set.dns_cache_timeout = arg; in Curl_vsetopt() 131 data->set.global_dns_cache = (0 != arg) ? TRUE : FALSE; in Curl_vsetopt() 135 result = Curl_setstropt(&data->set.str[STRING_SSL_CIPHER_LIST_ORIG], in Curl_vsetopt() 140 result = Curl_setstropt(&data->set.str[STRING_SSL_CIPHER_LIST_PROXY], in Curl_vsetopt() 149 result = Curl_setstropt(&data->set.str[STRING_SSL_RANDOM_FILE], in Curl_vsetopt() 156 result = Curl_setstropt(&data->set.str[STRING_SSL_EGDSOCKET], in Curl_vsetopt() 167 data->set.maxconnects = arg; in Curl_vsetopt() 174 data->set.reuse_forbid = (0 != va_arg(param, long)) ? TRUE : FALSE; in Curl_vsetopt() 181 data->set.reuse_fresh = (0 != va_arg(param, long)) ? TRUE : FALSE; in Curl_vsetopt() 188 data->set.verbose = (0 != va_arg(param, long)) ? TRUE : FALSE; in Curl_vsetopt() [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 31 # CONFIG_TOYBOX_SUID is not set 34 # CONFIG_TOYBOX_UTMPX is not set 41 # CONFIG_ARPING is not set [all …]
|
/external/strace/ |
D | number_set.c | 60 reallocate_number_set(struct number_set *const set, const unsigned int new_nslots) in reallocate_number_set() argument 62 if (new_nslots <= set->nslots) in reallocate_number_set() 64 set->vec = xreallocarray(set->vec, new_nslots, sizeof(*set->vec)); in reallocate_number_set() 65 memset(set->vec + set->nslots, 0, in reallocate_number_set() 66 sizeof(*set->vec) * (new_nslots - set->nslots)); in reallocate_number_set() 67 set->nslots = new_nslots; in reallocate_number_set() 71 number_set_array_is_empty(const struct number_set *const set, in number_set_array_is_empty() argument 74 return !(set && (set[idx].nslots || set[idx].not)); in number_set_array_is_empty() 78 is_number_in_set(const unsigned int number, const struct number_set *const set) in is_number_in_set() argument 80 return set && ((number / BITS_PER_SLOT < set->nslots) in is_number_in_set() [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/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/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/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/deqp/targets/android/ |
D | ndk-r11.cmake | 22 set(CMAKE_SYSTEM_NAME Linux) 26 set(CMAKE_CROSSCOMPILING 1) 39 set(ANDROID_ABI "armeabi-v7a" CACHE STRING "Android ABI") 40 set(ANDROID_NDK_TARGET "android-${DE_ANDROID_API}") 43 set(DE_OS "DE_OS_ANDROID") 46 set(DE_COMPILER "DE_COMPILER_CLANG") 50 set(DE_ANDROID_API 9) 53 set(COMMON_C_FLAGS "-D__STDC_INT64__") 54 set(COMMON_CXX_FLAGS "${COMMON_C_FLAGS} -frtti -fexceptions") 55 set(COMMON_LINKER_FLAGS "") [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/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/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 …]
|