Home
last modified time | relevance | path

Searched full:set (Results 1 – 25 of 11434) sorted by relevance

12345678910>>...458

/third_party/rust/rust/src/ci/docker/host-x86_64/armhf-gnu/
Dvexpress_config33 # CONFIG_COMPILE_TEST is not set
35 # CONFIG_LOCALVERSION_AUTO is not set
42 # CONFIG_KERNEL_LZMA is not set
43 # CONFIG_KERNEL_XZ is not set
44 # CONFIG_KERNEL_LZO is not set
45 # CONFIG_KERNEL_LZ4 is not set
50 # CONFIG_POSIX_MQUEUE is not set
52 # CONFIG_FHANDLE is not set
54 # CONFIG_AUDIT is not set
68 # CONFIG_IRQ_DOMAIN_DEBUG is not set
[all …]
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/
Dsdkconfig14 # CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set
21 # CONFIG_APP_BUILD_TYPE_ELF_RAM is not set
31 # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set
32 # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set
33 # CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set
41 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set
42 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set
43 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set
44 # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set
45 # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set
[all …]
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/
Dsdkconfig14 # CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set
21 # CONFIG_APP_BUILD_TYPE_ELF_RAM is not set
31 # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set
32 # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set
33 # CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set
41 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set
42 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set
43 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set
44 # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set
45 # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set
[all …]
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/
Dsdkconfig15 # CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set
22 # CONFIG_APP_BUILD_TYPE_ELF_RAM is not set
32 # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set
33 # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set
34 # CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set
43 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set
44 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set
45 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set
46 # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set
47 # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set
[all …]
/third_party/curl/CMake/Platforms/
DWindowsCache.cmake28 set(HAVE_LOCALE_H 1)
31 set(HAVE_SNPRINTF 1)
32 set(HAVE_UNISTD_H 1)
33 set(HAVE_LIBGEN_H 1)
34 set(HAVE_STDDEF_H 1) # detected by CMake internally in check_type_size()
35 set(HAVE_STDBOOL_H 1)
36 set(HAVE_BOOL_T "${HAVE_STDBOOL_H}")
37 set(HAVE_STRTOLL 1)
38 set(HAVE_BASENAME 1)
39 set(HAVE_STRCASECMP 1)
[all …]
/third_party/libwebsockets/
DCMakeLists-implied-options.txt27 set(LWS_DETECTED_PLAT_IOS 1)
31 # Detect ESP_PLATFORM environment flag, if exist, set LWS_WITH_ESP32.
35 set(LWS_WITH_ESP32 ON)
36 set(LWS_WITH_ZLIB OFF)
37 set(LWS_HAVE_mbedtls_ssl_get_alpn_protocol 1)
39 set(LWS_WITH_ESP32_HELPER OFF)
43 set(LWS_PLAT_FREERTOS 1)
47 set(LWS_WITH_UDP 0)
52 set(LWS_WITH_DIR OFF)
53 set(LWS_WITH_LEJP_CONF OFF)
[all …]
/third_party/skia/m133/third_party/externals/harfbuzz/src/
Dhb-set.cc27 #include "hb-set.hh"
31 * SECTION:hb-set
32 * @title: hb-set
33 * @short_description: Objects representing a set of integers
36 * Set objects represent a mathematical set of integer values. They are
45 * Creates a new, initially empty set.
54 hb_set_t *set; in hb_set_create() local
56 if (!(set = hb_object_create<hb_set_t> ())) in hb_set_create()
59 return set; in hb_set_create()
79 * @set: A set
[all …]
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-set.cc27 #include "hb-set.hh"
31 * SECTION:hb-set
32 * @title: hb-set
33 * @short_description: Objects representing a set of integers
36 * Set objects represent a mathematical set of integer values. They are
45 * Creates a new, initially empty set.
54 hb_set_t *set; in hb_set_create() local
56 if (!(set = hb_object_create<hb_set_t> ())) in hb_set_create()
59 set->init_shallow (); in hb_set_create()
61 return set; in hb_set_create()
[all …]
/third_party/typescript/tests/baselines/reference/
DcontrolFlowInstanceof.types4 function f1(s: Set<string> | Set<number>) {
5 >f1 : (s: Set<string> | Set<number>) => void
6 >s : Set<string> | Set<number>
8 s = new Set<number>();
9 >s = new Set<number>() : Set<number>
10 >s : Set<string> | Set<number>
11 >new Set<number>() : Set<number>
12 >Set : SetConstructor
14 s; // Set<number>
15 >s : Set<number>
[all …]
/third_party/rust/rust/compiler/rustc_index/src/interval/
Dtests.rs5 let mut set = IntervalSet::<u32>::new(10000); in insert_collapses() localVariable
6 set.insert_range(9831..=9837); in insert_collapses()
7 set.insert_range(43..=9830); in insert_collapses()
8 assert_eq!(set.iter_intervals().collect::<Vec<_>>(), [43..9838]); in insert_collapses()
13 let mut set = IntervalSet::new(300); in contains() localVariable
14 set.insert(0u32); in contains()
15 assert!(set.contains(0)); in contains()
16 set.insert_range(0..10); in contains()
17 assert!(set.contains(9)); in contains()
18 assert!(!set.contains(10)); in contains()
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dset.js16 var set = new Set(); variable
18 assert (set.size === 0);
19 assert (set.add (int) === set);
20 assert (set.has (int));
21 assert (set.size === 1);
24 assert (set.add (str) === set);
25 assert (set.has (str));
26 assert (set.size === 2);
29 assert (set.add (number) === set);
30 assert (set.has (number));
[all …]
/third_party/vk-gl-cts/external/amber/src/third_party/
DCMakeLists.txt17 set(gtest_force_shared_crt ON)
23 set(SPIRV-Headers_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/spirv-headers CACHE STRING "")
24 set(SPIRV_SKIP_TESTS ON CACHE BOOL ON)
29 set(ENABLE_HLSL ON CACHE BOOL ON)
30 set(BUILD_TESTING FALSE CACHE BOOL ON)
31 set(ENABLE_GLSLANG_BINARIES OFF CACHE BOOL ON)
32 set(ENABLE_SPVREMAPPER OFF CACHE BOOL ON)
34 set(LLVM_USE_CRT_DEBUG MTd CACHE STRING "")
35 set(LLVM_USE_CRT_RELEASE MT CACHE STRING "")
36 set(LLVM_USE_CRT_RELWITHDEBINFO MT CACHE STRING "")
[all …]
/third_party/mindspore/mindspore-src/source/cmake/
Dlite_ios.cmake1 set(CMAKE_THREAD_LIBS_INIT "-lpthread")
2 set(CMAKE_HAVE_THREADS_LIBRARY 1)
3 set(CMAKE_USE_WIN32_THREADS_INIT 0)
4 set(CMAKE_USE_PTHREADS_INIT 1)
6 set(USED_CMAKE_GENERATOR "${CMAKE_GENERATOR}" CACHE STRING "Expose CMAKE_GENERATOR" FORCE)
9 set(MODERN_CMAKE YES)
18 set(FORCE_CACHE FORCE)
27 set(PLATFORM "OS")
29 set(PLATFORM "SIMULATOR")
33 set(PLATFORM "OS")
[all …]
/third_party/skia/m133/third_party/externals/icu/source/i18n/
Dregexcst.txt70 '[' n set-open ^set-finish doSetBegin
296 # [set expression] parsing,
297 # All states involved in parsing set expressions have names beginning with "set-"
300 set-open:
301 '^' n set-open2 doSetNegate
302 ':' set-posix doSetPosixProp
303 default set-open2
305 set-open2:
306 ']' n set-after-lit doSetLiteral
307 default set-start
[all …]
/third_party/icu/icu4c/source/i18n/
Dregexcst.txt70 '[' n set-open ^set-finish doSetBegin
296 # [set expression] parsing,
297 # All states involved in parsing set expressions have names beginning with "set-"
300 set-open:
301 '^' n set-open2 doSetNegate
302 ':' set-posix doSetPosixProp
303 default set-open2
305 set-open2:
306 ']' n set-after-lit doSetLiteral
307 default set-start
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dregexcst.txt70 '[' n set-open ^set-finish doSetBegin
296 # [set expression] parsing,
297 # All states involved in parsing set expressions have names beginning with "set-"
300 set-open:
301 '^' n set-open2 doSetNegate
302 ':' set-posix doSetPosixProp
303 default set-open2
305 set-open2:
306 ']' n set-after-lit doSetLiteral
307 default set-start
[all …]
/third_party/icu/icu4c/source/common/unicode/
Duset.h24 * \brief C API: Unicode Set
71 * The resulting set is a superset of the input for the code points but
75 * the original set to their full case folding equivalents.
79 * an input character directly against the closure set.
81 * set with an incremental case folding of the string in question.
83 * The closure set will also contain single code points if the original
84 * set contained case-equivalent strings (like U+00DF for "ss" or "Ss" etc.).
87 * set contained the code point or a string.
98 * of each existing element in the set.
106 * the current character is contained vs. not contained in the set.
[all …]
/third_party/skia/third_party/externals/icu/source/common/unicode/
Duset.h24 * \brief C API: Unicode Set
71 * The resulting set is a superset of the input for the code points but
75 * the original set to their full case folding equivalents.
79 * an input character directly against the closure set.
81 * set with an incremental case folding of the string in question.
83 * The closure set will also contain single code points if the original
84 * set contained case-equivalent strings (like U+00DF for "ss" or "Ss" etc.).
87 * set contained the code point or a string.
98 * of each existing element in the set.
106 * the current character is contained vs. not contained in the set.
[all …]
/third_party/libwebsockets/contrib/
DiOS.cmake14 # If set manually, it will override the default location and force the user of a particular Devel…
19 # If set manually, this will force the use of a specific SDK version
34 set (CMAKE_SYSTEM_NAME Darwin)
35 set (CMAKE_SYSTEM_VERSION 1)
36 set(CMAKE_CROSSCOMPILING TRUE)
37 set (UNIX TRUE)
38 set (APPLE TRUE)
39 set (IOS TRUE)
42 set(IOS_BITCODE 1)
44 set(IOS_BITCODE_MARKER 0)
[all …]
/third_party/vk-gl-cts/framework/delibs/cmake/
Dtoolchain-ios.cmake14 # If set manually, it will override the default location and force the user of a particular Devel…
19 # If set manually, this will force the use of a specific SDK version
22 set (CMAKE_SYSTEM_NAME Darwin)
23 set (CMAKE_SYSTEM_VERSION 1)
24 set (UNIX True)
25 set (APPLE True)
26 set (IOS True)
29 set (CMAKE_OSX_DEPLOYMENT_TARGET "" CACHE STRING "Force unset of the deployment target for iOS" FOR…
44 set (CMAKE_CXX_COMPILER_WORKS TRUE)
45 set (CMAKE_C_COMPILER_WORKS TRUE)
[all …]
/third_party/skia/m133/third_party/externals/icu/source/common/unicode/
Duset.h24 * \brief C API: Unicode Set
77 * The resulting set is a superset of the input for the code points but
81 * the original set to their full case folding equivalents.
85 * an input character directly against the closure set.
87 * set with an incremental case folding of the string in question.
89 * The closure set will also contain single code points if the original
90 * set contained case-equivalent strings (like U+00DF for "ss" or "Ss" etc.).
93 * set contained the code point or a string.
100 * Adds all case mappings for each element in the set.
102 * of each existing element in the set.
[all …]
/third_party/gn/src/gn/
Dpointer_set_unittest.cc24 TestPointerSet set; in TEST() local
25 EXPECT_TRUE(set.empty()); in TEST()
26 EXPECT_EQ(0u, set.size()); in TEST()
27 EXPECT_FALSE(set.contains(kFoo1)); in TEST()
31 TestPointerSet set(kFullList.begin(), kFullList.end()); in TEST() local
32 EXPECT_FALSE(set.empty()); in TEST()
33 EXPECT_EQ(3u, set.size()); in TEST()
34 EXPECT_TRUE(set.contains(kFoo1)); in TEST()
35 EXPECT_TRUE(set.contains(kFoo2)); in TEST()
36 EXPECT_TRUE(set.contains(kFoo3)); in TEST()
[all …]
/third_party/vixl/test/
Dtest-invalset.cc96 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 …]
/third_party/mindspore/mindspore-src/source/mindspore/lite/cmake/
Dlite_options.cmake1 set(BUILD_LITE "on")
7 set(MSLITE_GPU_BACKEND "" CACHE STRING "enable gpu backend, \
9 set(MSLITE_REGISTRY_DEVICE "off" CACHE STRING "Compile Mindspore Lite that supports specific device…
11 set(MSLITE_MICRO_PLATFORM "auto" CACHE STRING "Platform of micro static library micro static, \
13 set(MSLITE_MINDDATA_IMPLEMENT "lite_cv" CACHE STRING "off, lite_cv, cloud, or full")
18 option(MSLITE_ENABLE_SSE "enable SSE instruction set, only x86_64 support" off)
19 option(MSLITE_ENABLE_AVX "enable AVX instruction set, only x86_64 support" off)
20 option(MSLITE_ENABLE_AVX512 "enable AVX512 instruction set, only x86_64 support" off)
57 set(VERSION_STR "1.7.0" CACHE STRING "get from version")
60 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=armv8-a+fp16")
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/lite/tools/kernel_builder/ascend/tbe_and_aicpu/cmake/
Dconfig.cmake1 # set compile option -std=c++11
2 set(CMAKE_CXX_STANDARD 11)
4 # set compile option -fPIC
5 set(CMAKE_POSITION_INDEPENDENT_CODE ON)
6 set(OPP_CUSTOM_VENDOR "$ENV{OPP_CUSTOM_VENDOR}")
7 # set(TOP_DIR ${CMAKE_SOURCE_DIR}/../..)
11 set(ASCEND_TENSOR_COMPILER_INCLUDE $ENV{ASCEND_TENSOR_COMPILER_INCLUDE})
12 set(ASCEND_COMPILER_LIB ${ASCEND_TENSOR_COMPILER_INCLUDE}/../lib64)
15 set(ASCEND_PATH $ENV{ASCEND_CUSTOM_PATH})
17 set(ASCEND_PATH /usr/local/Ascend)
[all …]

12345678910>>...458