Home
last modified time | relevance | path

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

12345678910>>...538

/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/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/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/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/node/
Dvcbuild.bat3 :: Other scripts rely on the environment variables set in this script, so we
18 set JS_SUITES=default
19 set NATIVE_SUITES=addons js-native-api node-api
21 set "CI_NATIVE_SUITES=%NATIVE_SUITES% benchmark"
22 set "CI_JS_SUITES=%JS_SUITES% pummel"
23 set CI_DOC=doctool
25 set "common_test_suites=%JS_SUITES% %NATIVE_SUITES%&set build_addons=1&set build_js_native_api_test…
28 set config=Release
29 set target=Build
30 set target_arch=x64
[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/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/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/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/node/deps/icu-small/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/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/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/cups-filters/ppd/
DHP-Color_LaserJet_CM3530_MFP-PDF.ppd48 *PageSize Letter/Letter: "@PJL SET PAPER=LETTER<0A>"
49 *PageSize Letter.Fullbleed/Letter (Borderless): "@PJL SET PAPER=LETTER<0A>"
50 *PageSize A4/A4: "@PJL SET PAPER=A4<0A>"
51 *PageSize A4.Fullbleed/A4 (Borderless): "@PJL SET PAPER=A4<0A>"
52 *PageSize A5/A5: "@PJL SET PAPER=A5<0A>"
53 *PageSize A5.Fullbleed/A5 (Borderless): "@PJL SET PAPER=A5<0A>"
54 *PageSize A6/A6: "@PJL SET PAPER=A6<0A>"
55 *PageSize A6.Fullbleed/A6 (Borderless): "@PJL SET PAPER=A6<0A>"
56 *PageSize ISOB5/ISO B5: "@PJL SET PAPER=B5<0A>"
57 *PageSize ISOB5.Fullbleed/ISO B5 (Borderless): "@PJL SET PAPER=B5<0A>"
[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/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/curl/tests/data/
Dtest44424 Set-Cookie: cookie-1=yes;
25 Set-Cookie: cookie-2=yes;
26 Set-Cookie: cookie-3=yes;
27 Set-Cookie: cookie-4=yes;
28 Set-Cookie: cookie-5=yes;
29 Set-Cookie: cookie-6=yes;
30 Set-Cookie: cookie-7=yes;
31 Set-Cookie: cookie-8=yes;
32 Set-Cookie: cookie-9=yes;
33 Set-Cookie: cookie-10=yes;
[all …]
Dtest3112 # The cookies set come in two versions. This is because when curl is built
25 Set-Cookie: blankdomain=sure; domain=; path=/
27 Set-Cookie: foobar=name; domain=anything.com; path=/ ; secure
28 Set-Cookie:ismatch=this ; domain=test31.curl; path=/silly/
29 Set-Cookie: overwrite=this ; domain=test31.curl; path=/overwrite/
30 Set-Cookie: overwrite=this2 ; domain=test31.curl; path=/overwrite
31 Set-Cookie: sec1value=secure1 ; domain=test31.curl; path=/secure1/ ; secure
32 Set-Cookie: sec2value=secure2 ; domain=test31.curl; path=/secure2/ ; secure=
33 Set-Cookie: sec3value=secure3 ; domain=test31.curl; path=/secure3/ ; secure=
34 Set-Cookie: sec4value=secure4 ; secure=; domain=test31.curl; path=/secure4/ ;
[all …]
/third_party/skia/third_party/externals/freetype/builds/cmake/
DiOS.cmake36 # IOS_PLATFORM value above. If you manually set this variable, it
45 # manually set this variable, it forces the use of a specific SDK
68 set(CMAKE_SYSTEM_NAME Darwin)
69 set(CMAKE_SYSTEM_VERSION 1)
70 set(UNIX True)
71 set(APPLE True)
72 set(IOS True)
75 set(CMAKE_OSX_DEPLOYMENT_TARGET ""
89 set(CMAKE_CXX_COMPILER_WORKS TRUE)
90 set(CMAKE_C_COMPILER_WORKS TRUE)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Denum_set_test.cpp31 EnumSet<uint32_t> set; in TEST() local
32 EXPECT_TRUE(set.IsEmpty()); in TEST()
33 set.Add(0); in TEST()
34 EXPECT_FALSE(set.IsEmpty()); in TEST()
38 EnumSet<uint32_t> set; in TEST() local
39 EXPECT_TRUE(set.IsEmpty()); in TEST()
40 set.Add(150); in TEST()
41 EXPECT_FALSE(set.IsEmpty()); in TEST()
45 EnumSet<uint32_t> set(4); in TEST() local
46 EXPECT_FALSE(set.IsEmpty()); in TEST()
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/
Denum_set_test.cpp31 EnumSet<uint32_t> set; in TEST() local
32 EXPECT_TRUE(set.IsEmpty()); in TEST()
33 set.Add(0); in TEST()
34 EXPECT_FALSE(set.IsEmpty()); in TEST()
38 EnumSet<uint32_t> set; in TEST() local
39 EXPECT_TRUE(set.IsEmpty()); in TEST()
40 set.Add(150); in TEST()
41 EXPECT_FALSE(set.IsEmpty()); in TEST()
45 EnumSet<uint32_t> set(4); in TEST() local
46 EXPECT_FALSE(set.IsEmpty()); in TEST()
[all …]

12345678910>>...538