Home
last modified time | relevance | path

Searched refs:name (Results 2401 - 2425 of 19470) sorted by relevance

1...<<919293949596979899100>>...779

/third_party/openssl/ohos_lite/include/openssl/
H A Dconf.h26 char *name; member
38 const char *name; member
47 int (*load) (CONF *conf, const char *name, long *eline);
82 const char *name); variable
84 const char *name); variable
122 char *NCONF_get_string(const CONF *conf, const char *group, const char *name);
123 int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
143 int CONF_module_add(const char *name, conf_init_func *ifunc,
/third_party/openssl/crypto/x509/
H A Dv3_info.c81 nlen = strlen(objtmp) + 3 + strlen(vtmp->name) + 1;
85 BIO_snprintf(ntmp, nlen, "%s - %s", objtmp, vtmp->name);
86 OPENSSL_free(vtmp->name);
87 vtmp->name = ntmp;
124 ptmp = strchr(cnf->name, ';');
129 ctmp.name = ptmp + 1;
133 if ((objtmp = OPENSSL_strndup(cnf->name, ptmp - cnf->name)) == NULL) {
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dzrule.cpp43 zrule_getName(ZRule* rule, UChar* name, int32_t nameLength) { in zrule_getName() argument
44 UnicodeString s(nameLength==-1, name, nameLength); in zrule_getName()
47 memcpy(name, s.getBuffer(), nameLength); in zrule_getName()
71 izrule_open(const UChar* name, int32_t nameLength, int32_t rawOffset, int32_t dstSavings) { in izrule_open() argument
72 UnicodeString s(nameLength==-1, name, nameLength); in izrule_open()
92 izrule_getName(IZRule* rule, UChar* & name, int32_t & nameLength) { in izrule_getName() argument
93 // UnicodeString s(nameLength==-1, name, nameLength); in izrule_getName()
97 name = (UChar*)uprv_malloc(nameLength); in izrule_getName()
98 memcpy(name, s.getBuffer(), nameLength); in izrule_getName()
/third_party/parse5/bench/perf/
H A Dindex.js60 if (suite[i].name === testName) {
66 function runBench({ name, workingCopyFn, upstreamFn, defer = false }) {
67 const suite = new Benchmark.Suite(name);
72 .on('start', () => console.log(name))
89 name: 'parse5 regression benchmark - MICRO',
95 name: 'parse5 regression benchmark - HUGE',
101 name: 'parse5 regression benchmark - PAGES',
107 name: 'parse5 regression benchmark - STREAM',
/third_party/skia/platform_tools/debugging/lldb/
H A Dskia.py55 def get_child_index(self, name):
57 return int(name.lstrip('[').rstrip(']'))
101 def get_child_index(self, name):
103 return int(name.lstrip('[').rstrip(']'))
150 def get_child_index(self, name):
152 return int(name.lstrip('[').rstrip(']'))
197 def get_child_index(self, name):
198 return self.fPtr.GetIndexOfChildWithName(name)
/third_party/skia/modules/particles/include/
H A DSkReflected.h27 * The Type instance can be used to create additional instances (fFactory), get the name
29 * - Given a string containing a type name, SkReflected can create an instance of that type.
78 static sk_sp<SkReflected> CreateInstance(const char* name) { in CreateInstance() argument
80 if (0 == strcmp(name, type->fName)) { in CreateInstance()
134 * All visit functions supply a field name, and a non-constant reference to an actual field.
139 * visit() for each of their fields, passing a (unique) field name, and the actual field. If your
159 void visit(const char* name, SkTArray<T, MEM_MOVE>& arr) { in visit() argument
160 arr.resize_back(this->enterArray(name, arr.count())); in visit()
173 void visit(const char* name, sk_sp<T>& obj) { in visit() argument
174 this->enterObject(name); in visit()
[all...]
/third_party/skia/modules/svg/src/
H A DSkSVGFe.cpp93 bool SkSVGFe::parseAndSetAttribute(const char* name, const char* value) { in parseAndSetAttribute() argument
94 return INHERITED::parseAndSetAttribute(name, value) || in parseAndSetAttribute()
95 this->setIn(SkSVGAttributeParser::parse<SkSVGFeInputType>("in", name, value)) || in parseAndSetAttribute()
96 this->setResult(SkSVGAttributeParser::parse<SkSVGStringType>("result", name, value)) || in parseAndSetAttribute()
97 this->setX(SkSVGAttributeParser::parse<SkSVGLength>("x", name, value)) || in parseAndSetAttribute()
98 this->setY(SkSVGAttributeParser::parse<SkSVGLength>("y", name, value)) || in parseAndSetAttribute()
99 this->setWidth(SkSVGAttributeParser::parse<SkSVGLength>("width", name, value)) || in parseAndSetAttribute()
100 this->setHeight(SkSVGAttributeParser::parse<SkSVGLength>("height", name, value)); in parseAndSetAttribute()
/third_party/rust/crates/rustix/tests/fs/
H A Dreaddir.rs49 let name = err.file_name().to_str().expect("utf8 filename").to_owned(); in read_entries()
50 if name != "." && name != ".." { in read_entries()
51 out.insert(name, err); in read_entries()
69 let name = entry in test_raw_dir()
74 if name != "." && name != ".." { in test_raw_dir()
75 out.insert(name); in test_raw_dir()
/third_party/rust/crates/regex/src/
H A Dexpand.rs40 Ref::Named(name) => { in expand_str()
42 caps.name(name).map(|m| m.as_str()).unwrap_or(""), in expand_str()
82 Ref::Named(name) => { in expand_bytes()
84 caps.name(name).map(|m| m.as_bytes()).unwrap_or(b""), in expand_bytes()
93 /// The reference is either a capture group name or a number.
124 /// Parses a possible reference to a capture group name in the given text, in from()
150 str::from_utf8(&rep[i..cap_end]).expect("valid UTF-8 capture name");
168 // When looking at braced names, we don't put any restrictions on the name,
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderSwitchTests.cpp51 ShaderSwitchCase (Context& context, const char* name, const char* description, bool isVertexCase, const char* vtxSource, const char* fragSource, ShaderEvalFunc evalFunc);
55 ShaderSwitchCase::ShaderSwitchCase (Context& context, const char* name, const char* description, bool isVertexCase, const char* vtxSource, const char* fragSource, ShaderEvalFunc evalFunc) in ShaderSwitchCase() argument
56 : ShaderRenderCase(context.getTestContext(), context.getRenderContext(), context.getContextInfo(), name, description, isVertexCase, evalFunc) in ShaderSwitchCase()
89 static tcu::TestCase* makeSwitchCase (Context& context, const char* name, const char* desc, SwitchType type, bool isVertex, const LineStream& switchBody) in makeSwitchCase() argument
150 return new ShaderSwitchCase(context, name, desc, isVertex, vtx.str().c_str(), frag.str().c_str(), in makeSwitchCase()
156 static void makeSwitchCases (TestCaseGroup* group, const char* name, const char* desc, const LineStream& switchBody, const bool skipDynamicType = false) in makeSwitchCases() argument
166 group->addChild(makeSwitchCase(group->getContext(), (string(name) + "_" + switchTypeNames[type] + "_vertex").c_str(), desc, (SwitchType)type, true, switchBody)); in makeSwitchCases()
167 group->addChild(makeSwitchCase(group->getContext(), (string(name) + "_" + switchTypeNames[type] + "_fragment").c_str(), desc, (SwitchType)type, false, switchBody)); in makeSwitchCases()
/third_party/vk-gl-cts/modules/gles3/scripts/
H A Dgen-uniform-blocks.py75 def __init__(self, name, shaderType, source, valid):
76 self.name = name
91 "NAME": self.name,
106 "NAME": self.name,
115 def createCases(name, source, valid):
116 return [UniformBlockCase(name + "_vertex", VERTEX, source, valid),
117 UniformBlockCase(name + "_fragment", FRAGMENT, source, valid)]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fSamplerStateQueryTests.cpp112 const char* name; in init() member
135 const char* name; in init() member
145 const char* name; in init() member
178 // no need to cover for all getters if the only thing new is the param name in init()
181 std::string() + states[stateNdx].name + verifierSuffix, in init()
190 std::string() + states[stateNdx].name + verifierSuffix, in init()
199 std::string() + states[stateNdx].name + verifierSuffix, in init()
213 tcu::TestCaseGroup* const targetGroup = new tcu::TestCaseGroup(m_testCtx, pureSetters[setterNdx].name, pureSetters[setterNdx].desc); in init()
224 std::string() + pureStates[stateNdx].name, in init()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dxml-utils.h33 xml_namespace_t **ret_ns, const char *name);
35 xml_namespace_t *ns, const char *name);
38 const char *name, const char *value);
41 const char *name, const char *value);
45 xml_namespace_t *ns, const char *name, const char *value);
47 char *name);
49 const char *ns_uri, char *name);
88 xml_node_t * node_from_file(struct xml_node_ctx *ctx, const char *name);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dxml-utils.h33 xml_namespace_t **ret_ns, const char *name);
35 xml_namespace_t *ns, const char *name);
38 const char *name, const char *value);
41 const char *name, const char *value);
45 xml_namespace_t *ns, const char *name, const char *value);
47 char *name);
49 const char *ns_uri, char *name);
88 xml_node_t * node_from_file(struct xml_node_ctx *ctx, const char *name);
/third_party/node/deps/v8/third_party/ittapi/ittapi-rs/src/
H A Dittnotify_bindings.rs305 pub fn __itt_pt_region_create(name: *const ::std::os::raw::c_char) -> __itt_pt_region; in __itt_pt_region_create()
308 unsafe extern "C" fn(name: *const ::std::os::raw::c_char) -> __itt_pt_region,
326 pub fn __itt_thread_set_name(name: *const ::std::os::raw::c_char); in __itt_thread_set_name()
329 ::std::option::Option<unsafe extern "C" fn(name: *const ::std::os::raw::c_char)>;
427 name: *const ::std::os::raw::c_char, in __itt_sync_rename()
431 unsafe extern "C" fn(addr: *mut ::std::os::raw::c_void, name: *const ::std::os::raw::c_char),
447 #[doc = " @name group of functions is used for performance measurement tools"]
484 #[doc = " @name group of functions is used for correctness checking tools"]
565 #[doc = " are considered completely distinct. If the site name for two different"]
571 name in __itt_model_site_begin()
[all...]
/test/testfwk/xdevice/src/xdevice/_core/
H A Dlogger.py115 and getattr(sys, LogMode.name, LogMode.default) != LogMode.no_console:
129 def __logger__(self, name=None):
130 if not name:
131 return _init_global_logger(name)
132 elif name in self.loggers:
133 return self.loggers.get(name)
135 log = self.loggers.setdefault(name, FrameworkLog(name))
226 def __init__(self, name):
227 self.name
[all...]
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCheckAPI.java11 * Generate a list of ICU's public APIs, sorted by qualified name and signature
78 String srcName = "Current"; // default source name
108 private String name; // name field in CheckAPI.Info
124 case NAM: return name; in get()
146 case NAM: name = val; break; in setType()
220 w.write(name); in write()
230 w.write(name); in write()
242 w.write(name); in write()
278 // Doc. name in read()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutTests.cpp45 const std::string& name, in BlockBasicTypeCase()
51 : InterfaceBlockCase(testCtx, name, matrixLoadFlag, testStageFlags) in BlockBasicTypeCase()
72 void createBlockBasicTypeCases (tcu::TestCaseGroup& group, tcu::TestContext& testCtx, const std::string& name, const VarType& type, deUint32 layoutFlags, int numInstances = 0) in createBlockBasicTypeCases() argument
74 de::MovePtr<tcu::TestCaseGroup> typeGroup(new tcu::TestCaseGroup(group.getTestContext(), name.c_str())); in createBlockBasicTypeCases()
86 const std::string& name, in BlockSingleStructCase()
91 : InterfaceBlockCase (testCtx, name, matrixLoadFlag, testStageFlags) in BlockSingleStructCase()
114 const std::string& name, in BlockSingleStructArrayCase()
119 : InterfaceBlockCase (testCtx, name, matrixLoadFlag, testStageFlags) in BlockSingleStructArrayCase()
144 const std::string& name, in BlockSingleNestedStructCase()
149 : InterfaceBlockCase (testCtx, name, matrixLoadFla in BlockSingleNestedStructCase()
44 BlockBasicTypeCase(tcu::TestContext& testCtx, const std::string& name, const VarType& type, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockBasicTypeCase() argument
85 BlockSingleStructCase(tcu::TestContext& testCtx, const std::string& name, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleStructCase() argument
113 BlockSingleStructArrayCase(tcu::TestContext& testCtx, const std::string& name, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleStructArrayCase() argument
143 BlockSingleNestedStructCase(tcu::TestContext& testCtx, const std::string& name, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleNestedStructCase() argument
178 BlockSingleNestedStructArrayCase(tcu::TestContext& testCtx, const std::string& name, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleNestedStructArrayCase() argument
211 BlockMultiBasicTypesCase(tcu::TestContext& testCtx, const std::string& name, deUint32 flagsA, deUint32 flagsB, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockMultiBasicTypesCase() argument
246 BlockMultiNestedStructCase(tcu::TestContext& testCtx, const std::string& name, deUint32 flagsA, deUint32 flagsB, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockMultiNestedStructCase() argument
289 BlockVariousBuffersCase(tcu::TestContext& testCtx, const std::string& name, deUint32 flags, deUint32 xfbBufferA, deUint32 xfbBufferB, deUint32 xfbBufferC, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockVariousBuffersCase() argument
344 Block2LevelStructArrayCase(tcu::TestContext& testCtx, const std::string& name, deUint32 flags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) Block2LevelStructArrayCase() argument
447 const std::string name; init() member
670 const std::string name; init() member
709 std::string name; init() member
[all...]
/third_party/toybox/lib/
H A Dxwrap.c427 int xtempfile(char *name, char **tempname) in xtempfile() argument
431 *tempname = xmprintf("%s%s", name, "XXXXXX"); in xtempfile()
677 unsigned xgetuid(char *name) in xgetuid() argument
679 struct passwd *up = getpwnam(name); in xgetuid()
685 uid = estrtol(name, &s, 10); in xgetuid()
688 error_exit("bad user '%s'", name); in xgetuid()
691 unsigned xgetgid(char *name) in xgetgid() argument
693 struct group *gr = getgrnam(name); in xgetgid()
699 gid = estrtol(name, &s, 10); in xgetgid()
702 error_exit("bad group '%s'", name); in xgetgid()
705 xgetpwnam(char *name) xgetpwnam() argument
713 xgetgrnam(char *name) xgetgrnam() argument
732 xreadlinkat(int dir, char *name) xreadlinkat() argument
754 xreadlink(char *name) xreadlink() argument
760 xreadfile(char *name, char *buf, off_t len) xreadfile() argument
782 xpidfile(char *name) xpidfile() argument
[all...]
/third_party/toybox/toys/posix/
H A Dfind.c26 -name PATTERN filename with wildcards (-iname case insensitive)
27 -path PATTERN path name with wildcards (-ipath case insensitive)
114 perror_msg_raw(revert ? new->name : "."); in flush_exec()
233 } else TT.start = new->name; in do_find()
308 test = !unlinkat(dirtree_parentfd(new), new->name, in do_find()
337 int fd = openat(dirtree_parentfd(new), new->name, O_RDONLY); in do_find()
356 if (check && faccessat(dirtree_parentfd(new), new->name,X_OK,0)) test = 0; in do_find()
365 if (!strcmp(s, "name") || !strcmp(s, "iname") in do_find()
371 char *arg = ss[1], *path = 0, *name = new ? new->name in do_find() local
554 char *name, *ss1 = ss[1]; do_find() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutTests.cpp45 const std::string& name, in BlockBasicTypeCase()
52 : InterfaceBlockCase(testCtx, name, description, matrixLoadFlag, testStageFlags) in BlockBasicTypeCase()
73 void createBlockBasicTypeCases (tcu::TestCaseGroup& group, tcu::TestContext& testCtx, const std::string& name, const VarType& type, deUint32 layoutFlags, int numInstances = 0) in createBlockBasicTypeCases() argument
75 de::MovePtr<tcu::TestCaseGroup> typeGroup(new tcu::TestCaseGroup(group.getTestContext(), name.c_str(), "")); in createBlockBasicTypeCases()
87 const std::string& name, in BlockSingleStructCase()
93 : InterfaceBlockCase (testCtx, name, description, matrixLoadFlag, testStageFlags) in BlockSingleStructCase()
116 const std::string& name, in BlockSingleStructArrayCase()
122 : InterfaceBlockCase (testCtx, name, description, matrixLoadFlag, testStageFlags) in BlockSingleStructArrayCase()
147 const std::string& name, in BlockSingleNestedStructCase()
153 : InterfaceBlockCase (testCtx, name, descriptio in BlockSingleNestedStructCase()
44 BlockBasicTypeCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, const VarType& type, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockBasicTypeCase() argument
86 BlockSingleStructCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleStructCase() argument
115 BlockSingleStructArrayCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleStructArrayCase() argument
146 BlockSingleNestedStructCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleNestedStructCase() argument
182 BlockSingleNestedStructArrayCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockSingleNestedStructArrayCase() argument
216 BlockMultiBasicTypesCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 flagsA, deUint32 flagsB, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockMultiBasicTypesCase() argument
252 BlockMultiNestedStructCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 flagsA, deUint32 flagsB, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockMultiNestedStructCase() argument
296 BlockVariousBuffersCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 flags, deUint32 xfbBufferA, deUint32 xfbBufferB, deUint32 xfbBufferC, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) BlockVariousBuffersCase() argument
352 Block2LevelStructArrayCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 flags, int numInstances, MatrixLoadFlags matrixLoadFlag, TestStageFlags testStageFlags) Block2LevelStructArrayCase() argument
456 const std::string name; init() member
678 const std::string name; init() member
717 std::string name; init() member
[all...]
/third_party/elfutils/libdwfl/
H A Ddwfl_error.c58 #define DWFL_ERROR(name, text) char msg_##name[sizeof text]; in INTDEF()
67 #define DWFL_ERROR(name, text) + sizeof text
75 #define DWFL_ERROR(name, text) text,
84 #define DWFL_ERROR(name, text) \
85 [DWFL_E_##name] = offsetof (struct msgtable, msg_##name),
/third_party/ffmpeg/libavfilter/
H A Daf_asetrate.c34 #define OPT_GENERIC(name, field, def, min, max, descr, type, deffield, ...) \
35 { name, descr, offsetof(CONTEXT, field), AV_OPT_TYPE_ ## type, \
38 #define OPT_INT(name, field, def, min, max, descr, ...) \
39 OPT_GENERIC(name, field, def, min, max, descr, INT, i64, __VA_ARGS__)
93 .name = "default",
101 .name = "default",
108 .name = "asetrate",
H A Dvf_format.c96 if (!strcmp(ctx->filter->name, "noformat")) { in init()
151 .name = "default",
159 .name = "default",
165 .name = "format",
187 .name = "default",
195 .name = "default",
201 .name = "noformat",
/third_party/ffmpeg/libavutil/
H A Dpixdesc.h70 const char *name; member
218 * @return the name for provided color range or NULL if unknown.
223 * @return the AVColorRange value for name or an AVError if not found.
225 int av_color_range_from_name(const char *name);
228 * @return the name for provided color primaries or NULL if unknown.
233 * @return the AVColorPrimaries value for name or an AVError if not found.
235 int av_color_primaries_from_name(const char *name);
238 * @return the name for provided color transfer or NULL if unknown.
243 * @return the AVColorTransferCharacteristic value for name or an AVError if not found.
245 int av_color_transfer_from_name(const char *name);
[all...]

Completed in 18 milliseconds

1...<<919293949596979899100>>...779