/third_party/skia/gm/ |
H A D | surface.cpp | 204 #define DEF_BASIC_SURFACE_TEST(name, canvas, main, W, H) \ 205 DEF_SIMPLE_GM(name, canvas, W, H) { \ 212 #define DEF_BACKEND_SURFACE_TEST(name, canvas, main, type, W, H) \ 213 DEF_SIMPLE_GM_CAN_FAIL(name, canvas, err_msg, W, H) { \ 224 #define DEF_BET_SURFACE_TEST(name, canvas, main, W, H) \ 225 DEF_BACKEND_SURFACE_TEST(SK_MACRO_CONCAT(name, _bet), canvas, main, \ 228 #define DEF_BERT_SURFACE_TEST(name, canvas, main, W, H) \ 229 DEF_BACKEND_SURFACE_TEST(SK_MACRO_CONCAT(name, _bert), canvas, main, \ 234 #define DEF_SURFACE_TESTS(name, canvas, W, H) \ 235 static void SK_MACRO_CONCAT(name, _mai [all...] |
/third_party/skia/modules/svg/src/ |
H A D | SkSVGDOM.cpp | 151 SkString name, value; in next() local 159 name = TrimmedString(fPos, valueSep - 1); in next() 166 return std::make_tuple(name, value); in next() 181 bool set_string_attribute(const sk_sp<SkSVGNode>& node, const char* name, const char* value); 186 SkString name, value; in SetStyleAttributes() local 189 std::tie(name, value) = iter.next(); in SetStyleAttributes() 190 if (name.isEmpty()) { in SetStyleAttributes() 193 set_string_attribute(node, name.c_str(), value.c_str()); in SetStyleAttributes() 288 bool set_string_attribute(const sk_sp<SkSVGNode>& node, const char* name, const char* value) { in set_string_attribute() argument 289 if (node->parseAndSetAttribute(name, valu in set_string_attribute() 318 const char* name, *value; parse_node_attributes() local [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fUniformBlockTests.cpp | 62 BlockBasicTypeCase (Context& context, const char* name, const char* description, const VarType& type, deUint32 layoutFlags, int numInstances) in BlockBasicTypeCase() argument 63 : UniformBlockCase(context.getTestContext(), context.getRenderContext(), name, description, glu::GLSL_VERSION_310_ES, BUFFERMODE_PER_BLOCK) in BlockBasicTypeCase() 77 static void createBlockBasicTypeCases (tcu::TestCaseGroup* group, Context& context, const char* name, const VarType& type, deUint32 layoutFlags, int numInstances = 0) in createBlockBasicTypeCases() argument 79 group->addChild(new BlockBasicTypeCase(context, (string(name) + "_vertex").c_str(), "", type, layoutFlags|DECLARE_VERTEX, numInstances)); in createBlockBasicTypeCases() 80 group->addChild(new BlockBasicTypeCase(context, (string(name) + "_fragment").c_str(), "", type, layoutFlags|DECLARE_FRAGMENT, numInstances)); in createBlockBasicTypeCases() 83 group->addChild(new BlockBasicTypeCase(context, (string(name) + "_both").c_str(), "", type, layoutFlags|DECLARE_VERTEX|DECLARE_FRAGMENT, numInstances)); in createBlockBasicTypeCases() 89 Block2LevelStructArrayCase (Context& context, const char* name, const char* description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances) in Block2LevelStructArrayCase() argument 90 : UniformBlockCase (context.getTestContext(), context.getRenderContext(), name, description, glu::GLSL_VERSION_310_ES, bufferMode) in Block2LevelStructArrayCase() 165 const char* name; in init() member 176 const char* name; in init() member 186 const char* name; init() member [all...] |
/device/qemu/arm_virt/liteos_a/board/ |
H A D | platform.c | 62 .name = "KernelCached", 69 .name = "KernelUncached", 76 .name = "PeriphDevice", 83 .name = "PeriphCached", 90 .name = "PeriphStronglyOrdered",
|
/third_party/elfutils/backends/ |
H A D | libebl_CPU.h | 35 #define EBLHOOK(name) EBLHOOK_1(BACKEND, name) 44 #define HOOK(eh, name) eh->name = EBLHOOK(name)
|
/third_party/backends/backend/genesys/ |
H A D | test_settings.cpp | 78 std::string name; in get_testing_device_name() local 80 name.resize(max_size); in get_testing_device_name() 81 name.resize(std::snprintf(&name.front(), max_size, "test device:0x%04x:0x%04x", in get_testing_device_name() 83 return name; in get_testing_device_name()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
H A D | TimeUnit.java | 17 /** The name of this unit, a key, not for localization. */ 18 final String name; field in TimeUnit 24 private TimeUnit(String name, int ordinal) { in TimeUnit() argument 25 this.name = name; in TimeUnit() 31 return name; in toString()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/ |
H A D | TimeUnit.java | 19 /** The name of this unit, a key, not for localization. */ 20 final String name; field in TimeUnit 26 private TimeUnit(String name, int ordinal) { in TimeUnit() argument 27 this.name = name; in TimeUnit() 33 return name; in toString()
|
/third_party/libunwind/libunwind/include/ |
H A D | compiler.h | 38 # define ALIAS2(name) #name 39 # define ALIAS(name) __attribute__((alias (ALIAS2(name)))) 61 # define ALIAS(name)
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-settings.h | 49 int (*get)(lws_settings_instance_t *si, const char *name, 53 int (*set)(lws_settings_instance_t *si, const char *name, 61 * \param name: the name of the setting blob in the instance 71 lws_settings_plat_get(lws_settings_instance_t *si, const char *name, 78 * \param name: the name of the setting blob in the instance 82 * Creates or replaces a settings blob of the given name made up of the \p len 86 lws_settings_plat_set(lws_settings_instance_t *si, const char *name, 93 * \param name [all...] |
/third_party/libuv/src/unix/ |
H A D | random-sysctl-linux.c | 33 int* name; member 44 static int name[] = {1 /*CTL_KERN*/, 40 /*KERN_RANDOM*/, 6 /*RANDOM_UUID*/}; in uv__random_sysctl() local 57 args.name = name; in uv__random_sysctl() 58 args.nlen = ARRAY_SIZE(name); in uv__random_sysctl()
|
/third_party/json/tools/gdb_pretty_printer/ |
H A D | nlohmann-json.py | 4 ns_pattern = re.compile(r'nlohmann(::json_abi(?P<tags>\w*)(_v(?P<v_major>\d+)_(?P<v_minor>\d+)_(?P<v_patch>\d+))?)?::(?P<name>.+)') 17 m = ns_pattern.fullmatch(val.type.strip_typedefs().name) 18 name = m.group('name') 19 if name and name.startswith('basic_json<') and name.endswith('>'): 21 t = m.group('name')
|
/third_party/musl/porting/linux/user/include/ |
H A D | dlfcn.h | 27 #define LOCAL_NS_PREFERED 0x4 /* Use app's library when app's library has same name as system library. */ 38 char name[NS_NAME_MAX+1]; member 44 * @param char * namespace name. 51 * @brief Gets the current namespace handle, or verifies that the given name namespace exists. 52 * @param char * Namespace name.Gets the current caller namespace handle when name is null. 65 * @param char * the name of the so file you want to open. 124 * @param name namespace name. 125 * @param lib_path The lib path name tha [all...] |
/third_party/musl/src/misc/ |
H A D | openpty.c | 11 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() argument 25 if (!name) name = buf; in openpty() 26 snprintf(name, sizeof buf, "/dev/pts/%d", n); in openpty() 27 if ((s = open(name, O_RDWR|O_NOCTTY)) < 0) in openpty()
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
H A D | openpty.c | 11 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() argument 25 if (!name) name = buf; in openpty() 26 snprintf(name, sizeof buf, "/dev/pts/%d", n); in openpty() 27 if ((s = open(name, O_RDWR|O_NOCTTY)) < 0) in openpty()
|
/third_party/ltp/testcases/kernel/syscalls/llistxattr/ |
H A D | llistxattr03.c | 34 static int check_suitable_buf(const char *name, long size) in check_suitable_buf() argument 39 n = llistxattr(name, buf, sizeof(buf)); in check_suitable_buf() 46 const char *name = filename[n]; in verify_llistxattr() local 48 TEST(llistxattr(name, NULL, 0)); in verify_llistxattr() 54 if (check_suitable_buf(name, TST_RET)) in verify_llistxattr()
|
/third_party/ltp/testcases/kernel/syscalls/listxattr/ |
H A D | listxattr03.c | 33 static int check_suitable_buf(const char *name, long size) in check_suitable_buf() argument 38 n = listxattr(name, buf, sizeof(buf)); in check_suitable_buf() 45 const char *name = filename[n]; in verify_listxattr() local 47 TEST(listxattr(name, NULL, 0)); in verify_listxattr() 53 if (check_suitable_buf(name, TST_RET)) in verify_listxattr()
|
/third_party/node/deps/v8/src/objects/ |
H A D | lookup-cache.h | 9 #include "src/objects/name.h" 15 // Cache for mapping (map, property name) into descriptor index. 23 // Lookup descriptor index for (map, name). 25 inline int Lookup(Map source, Name name); 28 inline void Update(Map source, Name name, int result); 39 keys_[i].name = Name(); in DescriptorLookupCache() 44 static inline int Hash(Map source, Name name); 49 Name name; member
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | lremovexattr.c | 21 const char *name = "user.txt"; variable 26 * @tc.name : lremovexattr_0100 42 int ret = lsetxattr(path, name, value, strlen(value), XATTR_CREATE); in lremovexattr_0100() 50 ret = lgetxattr(path, name, buf, sizeof(buf)); in lremovexattr_0100() 54 ret = lremovexattr(path, name); in lremovexattr_0100() 57 ret = lgetxattr(path, name, buf, sizeof(buf)); in lremovexattr_0100() 65 * @tc.name : lremovexattr_0200
|
/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/ |
H A D | rbug_screen.h | 65 #define rbug_screen_add_to_list(scr, name, obj) \ 68 list_add(&scr->name, &obj->list); \ 69 scr->num_##name++; \ 73 #define rbug_screen_remove_from_list(scr, name, obj) \ 77 scr->num_##name--; \
|
/third_party/musl/include/ |
H A D | dlfcn.h | 26 #define LOCAL_NS_PREFERED 0x4 /* Use app's library when app's library has same name as system library. */ 36 char name[NS_NAME_MAX + 1]; member 44 * @param char * namespace name. 51 * @brief Gets the current namespace handle, or verifies that the given name namespace exists. 52 * @param char * Namespace name.Gets the current caller namespace handle when name is null. 65 * @param char * the name of the so file you want to open. 124 * @param name namespace name. 125 * @param lib_path The lib path name tha [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/conf/ |
H A D | pathconf.c | 23 int name; member 28 * @tc.name : pathconf_0100 35 {.name = _PC_PATH_MAX, .limit = PATH_MAX}, in pathconf_0100() 36 {.name = _PC_PIPE_BUF, .limit = PIPE_BUF}, in pathconf_0100() 37 {.name = _PC_NAME_MAX, .limit = NAME_MAX}, in pathconf_0100() 43 ret = pathconf(".", data[i].name); in pathconf_0100() 49 * @tc.name : pathconf_0200
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | t_bitst.c | 33 int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, const char *name, int value, in ASN1_BIT_STRING_set_asc() argument 37 bitnum = ASN1_BIT_STRING_num_asc(name, tbl); in ASN1_BIT_STRING_set_asc() 47 int ASN1_BIT_STRING_num_asc(const char *name, BIT_STRING_BITNAME *tbl) in ASN1_BIT_STRING_num_asc() argument 51 if ((strcmp(bnam->sname, name) == 0) in ASN1_BIT_STRING_num_asc() 52 || (strcmp(bnam->lname, name) == 0)) in ASN1_BIT_STRING_num_asc()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | dh_support.c | 16 const char *name; member 45 return dhtype2id[i].name; in ossl_dh_gen_type_id2name() 51 int ossl_dh_gen_type_name2id(const char *name, int type) in ossl_dh_gen_type_name2id() argument 58 && strcmp(dhtype2id[i].name, name) == 0) in ossl_dh_gen_type_name2id()
|
/third_party/node/deps/uv/src/unix/ |
H A D | random-sysctl-linux.c | 33 int* name; member 44 static int name[] = {1 /*CTL_KERN*/, 40 /*KERN_RANDOM*/, 6 /*RANDOM_UUID*/}; in uv__random_sysctl() local 57 args.name = name; in uv__random_sysctl() 58 args.nlen = ARRAY_SIZE(name); in uv__random_sysctl()
|