Home
last modified time | relevance | path

Searched refs:name (Results 3601 - 3625 of 23568) sorted by relevance

1...<<141142143144145146147148149150>>...943

/third_party/curl/src/
H A Dtool_writeout_json.c110 for(i = 0; mappings[i].name != NULL; i++) { in ourWriteOutJSON()
142 char *name = header->name; in headerJSON() local
145 jsonWriteString(stream, header->name, TRUE); in headerJSON()
154 if(curl_easy_header(per->curl, name, i, CURLH_HEADER, in headerJSON()
164 jsonWriteString(stream, header->name, TRUE); in headerJSON()
/third_party/glslang/gtests/
H A DRemap.FromFile.cpp18 // Neither the name of Google Inc. nor the names of its
54 std::string name = info.param.fileName; in FileNameAsCustomTestSuffix() local
56 std::replace(name.begin(), name.end(), '.', '_'); in FileNameAsCustomTestSuffix()
57 std::replace(name.begin(), name.end(), '-', '_'); in FileNameAsCustomTestSuffix()
58 return name; in FileNameAsCustomTestSuffix()
/third_party/astc-encoder/Test/
H A Dastc_image_info.py56 img = Image.open(image.name)
60 print(image.name)
61 print("=" * len(image.name))
105 img = Image.open(image.name)
108 print(image.name)
109 print("=" * len(image.name))
/third_party/alsa-lib/src/ucm/
H A Ducm_regex.c58 const char *name) in set_variables()
60 size_t name2_len = strlen(name) + 16; in set_variables()
71 err = uc_mgr_set_variable(uc_mgr, name, s); in set_variables()
81 snprintf(name2, name2_len, "%s%u", name, i); in set_variables()
90 int uc_mgr_define_regex(snd_use_case_mgr_t *uc_mgr, const char *name, in uc_mgr_define_regex() argument
172 err = set_variables(uc_mgr, s, ARRAY_SIZE(match), match, name); in uc_mgr_define_regex()
56 set_variables(snd_use_case_mgr_t *uc_mgr, const char *data, unsigned int match_size, regmatch_t *match, const char *name) set_variables() argument
/third_party/gn/src/util/test/
H A Dgn_test.cc36 const char* name; member
47 void RegisterTest(testing::Test* (*factory)(), const char* name) {
49 tests[ntests++].name = name;
138 tests[i].should_run = TestMatchesFilter(tests[i].name, test_filter); in main()
170 tests[i].name, suffix); in main()
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
H A Dworkqueue.h153 char *name; /**< Workqueue name. */ member
200 #define create_singlethread_workqueue(name) \
201 linux_create_singlethread_workqueue(name)
203 #define create_workqueue(name) \
204 linux_create_singlethread_workqueue(name)
268 * This API is used to create a workqueue that has a specified name.
272 * <li> The passed-in workqueue name is a character string that cannot be null
276 * @param name [IN] Workqueue name
[all...]
/third_party/PyYAML/lib/yaml/
H A Derror.py6 def __init__(self, name, index, line, column, buffer, pointer):
7 self.name = name
40 % (self.name, self.line+1, self.column+1)
64 or self.context_mark.name != self.problem_mark.name
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DIcuData.java24 private final String name; field in IcuData
33 * @param name The name of the IcuData object, used as the name of the root node in the output file
36 public IcuData(String name, boolean hasFallback) { in IcuData() argument
38 this.name = name; in IcuData()
47 * @return the name of this ICU data instance. Used in the output filename, and in comments.
50 return name; in getName()
119 w.format("IcuData{ name in toString()
[all...]
/third_party/icu/vendor/double-conversion/upstream/test/cctest/
H A Dcctest.cc12 // * Neither the name of Google Inc. nor the names of its
37 // deprecated name.
51 // Find the base name of this test (const_cast required on Windows). in CcTest()
77 current->file(), current->name(), current->dependency()); in PrintTestList()
79 printf("%s/%s<\n", current->file(), current->name()); in PrintTestList()
112 char* name = testname + 1; in main() local
117 && strcmp(test->name(), name) == 0) { in main()
125 // Run all tests with the specified file or test name. in main()
131 || strcmp(test->name(), file_or_nam in main()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DICUServiceTestSample.java116 private String name; field in ICUServiceTestSample.HelloService
118 private HelloService(String name) { in HelloService() argument
119 this.name = name; in HelloService()
126 return name; in hello()
130 return super.toString() + ": " + name; in toString()
/third_party/icu/tools/colprobe/
H A DextractCollationData.pl142 my $name;
155 $name = "";
158 # for resets and strengths we will get name for elements
160 $name = "<span title=\"";
169 # entered without translation to the name
171 $name .= $codes.$names." $char ";
175 #$name .= "'";
179 $names .= "{".$charinfo->{'name'}."} ";
183 #$name .= $charinfo->{'code'}." {".$charinfo->{'name'}
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DICUServiceTestSample.java113 private String name; field in ICUServiceTestSample.HelloService
115 private HelloService(String name) { in HelloService() argument
116 this.name = name; in HelloService()
123 return name; in hello()
127 return super.toString() + ": " + name; in toString()
/third_party/libsnd/programs/
H A Dsndfile-metadata-get.c60 /* Store the program name. */ in main()
138 #define HANDLE_BEXT_ARG(cmd, name, field) \ in process_args()
140 { printf ("%-22s : %.*s\n", name, (int) sizeof (binfo->field), binfo->field) ; \ in process_args()
145 #define HANDLE_BEXT_ARG_INT(cmd, name, field) \ in process_args()
147 { printf ("%-22s : %6.2f\n", name, binfo->field / 100.0) ; \ in process_args()
152 #define HANDLE_STR_ARG(cmd, name, id) \ in process_args()
155 printf ("%-22s : %s\n", name, str ? str : "") ; \ in process_args()
/third_party/libunwind/libunwind/tests/
H A Dtest-async-sig.c69 char buf[512], name[256]; in do_backtrace() local
94 ret = unw_get_proc_name (&cursor, name, sizeof (name), &off); in do_backtrace()
98 snprintf (buf, sizeof (buf), "<%s+0x%lx>", name, (long) off); in do_backtrace()
101 size_t len = strlen (name); in do_backtrace()
103 memcpy (buf + 1, name, len); in do_backtrace()
/third_party/jerryscript/tests/jerry/es2015/
H A Dproxy_define_own_property.js35 defineProperty: function(target, name, desc) {
37 g_name = name;
52 defineProperty: function(target, name, desc) {
53 Object.defineProperty(target, name, desc);
72 Object.defineProperty(proxy, "name", {
81 proxy.name = "foo";
83 assert(proxy.name === "foo");
84 assert(target.name === "foo");
123 defineProperty: function(target, name, desc) {
153 defineProperty: function(target, name, des
[all...]
/third_party/jerryscript/tools/
H A Djs2c.py37 const char* name;
59 def js_to_native_code(path, name, build_type):
74 """.format(name, data, len(code))
111 name = extract_name(path)
112 gen_output.append(js_to_native_code(path, name, script_args.build_type))
113 if name != 'main':
114 gen_structs.append(' {{ {0}_n, {0}_s, {0}_l }}, \\'.format(name))
/third_party/jerryscript/tests/unit-ext/module/
H A Djerry-module-test.c85 resolve_differently_handled_module (const jerry_value_t name, in resolve_differently_handled_module() argument
88 jerry_size_t name_size = jerry_get_utf8_string_size (name); in resolve_differently_handled_module()
90 jerry_string_to_utf8_char_buffer (name, name_string, name_size); in resolve_differently_handled_module()
112 cache_check (const jerry_value_t name, in cache_check() argument
115 jerry_size_t name_size = jerry_get_utf8_string_size (name); in cache_check()
117 jerry_string_to_utf8_char_buffer (name, name_string, name_size); in cache_check()
/third_party/ltp/include/
H A Dtst_safe_posix_ipc.h25 #define SAFE_MQ_UNLINK(name) \
26 safe_mq_unlink(__FILE__, __LINE__, (name))
84 const char* name) in safe_mq_unlink()
88 rval = mq_unlink(name); in safe_mq_unlink()
92 "mq_unlink(%s) failed", name); in safe_mq_unlink()
95 "Invalid mq_unlink(%s) return value %d", name, rval); in safe_mq_unlink()
83 safe_mq_unlink(const char *file, const int lineno, const char* name) safe_mq_unlink() argument
/third_party/ltp/testcases/kernel/fs/doio/
H A Dopen_flags.c193 char *name; in parse_open_flags() local
199 name = string; in parse_open_flags()
200 cc = name; in parse_open_flags()
213 if (strcmp(name, Open_flags[ind].symbol) == 0) { in parse_open_flags()
222 if (found == 0) { /* invalid name */ in parse_open_flags()
224 *badname = name; in parse_open_flags()
231 name = ++cc; in parse_open_flags()
/third_party/node/lib/internal/
H A Dtty.js84 let name = '';
86 name = 'NODE_DISABLE_COLORS';
88 if (name !== '') {
89 name += "' and '";
91 name += 'NO_COLOR';
94 if (name !== '') {
96 `The '${name}' env is ignored due to the 'FORCE_COLOR' env being set.`,
/third_party/node/test/fixtures/wpt/user-timing/
H A Dmark.any.js10 assert_equals(entry.name, match.name, "entry.name");
56 assert_equals(entries[index].name, "mark", "Entry has the proper name");
57 }, "Entry " + index + " has the proper name");
77 assert_equals(entries[index].name, "mark");
90 assert_equals(entries[index].name, "mark");
103 assert_equals(entries[index].name, "mark");
/third_party/node/test/js-native-api/
H A Dcommon.h110 #define DECLARE_NODE_API_PROPERTY(name, func) \
111 { (name), NULL, (func), NULL, NULL, NULL, napi_default, NULL }
113 #define DECLARE_NODE_API_GETTER(name, func) \
114 { (name), NULL, NULL, (func), NULL, NULL, napi_default, NULL }
116 #define DECLARE_NODE_API_PROPERTY_VALUE(name, value) \
117 { (name), NULL, NULL, NULL, NULL, (value), napi_default, NULL }
/third_party/ntfs-3g/ntfsprogs/
H A Dlist.h41 #define NTFS_LIST_HEAD_INIT(name) { &(name), &(name) }
43 #define NTFS_LIST_HEAD(name) \
44 struct ntfs_list_head name = NTFS_LIST_HEAD_INIT(name)
170 * @member: the name of the list_struct within the struct.
/third_party/musl/porting/linux/user/src/passwd/
H A Dgetspnam_r.c68 int getspnam_r(const char *name, struct spwd *sp, char *buf, size_t size, struct spwd **res) in getspnam_r() argument
74 size_t k, l = strlen(name); in getspnam_r()
82 if (*name=='.' || strchr(name, '/') || !l) in getspnam_r()
85 /* Buffer size must at least be able to hold name, plus some.. */ in getspnam_r()
90 if (snprintf(path, sizeof path, "/etc/tcb/%s/shadow", name) >= sizeof path) in getspnam_r()
116 if (skip || strncmp(name, buf, l) || buf[l]!=':') { in getspnam_r()
/third_party/musl/src/passwd/
H A Dgetspnam_r.c69 int getspnam_r(const char *name, struct spwd *sp, char *buf, size_t size, struct spwd **res) in getspnam_r() argument
75 size_t k, l = strlen(name); in getspnam_r()
83 if (*name=='.' || strchr(name, '/') || !l) in getspnam_r()
86 /* Buffer size must at least be able to hold name, plus some.. */ in getspnam_r()
91 if (snprintf(path, sizeof path, "/etc/tcb/%s/shadow", name) >= sizeof path) in getspnam_r()
117 if (skip || strncmp(name, buf, l) || buf[l]!=':') { in getspnam_r()

Completed in 12 milliseconds

1...<<141142143144145146147148149150>>...943