/third_party/skia/third_party/externals/expat/expat/examples/ |
H A D | elements.c | 3 the name of each element to standard output indenting child 59 startElement(void *userData, const XML_Char *name, const XML_Char **atts) { in startElement() argument 66 printf("%" XML_FMT_STR "\n", name); in startElement() 71 endElement(void *userData, const XML_Char *name) { in endElement() argument 73 (void)name; in endElement()
|
/third_party/skia/third_party/externals/expat/expat/tests/ |
H A D | minicheck.h | 84 const char *name; member 89 const char *name; member 107 Suite *suite_create(const char *name); 108 TCase *tcase_create(const char *name);
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/FieldDescriptorProto/ |
H A D | Type.php | 130 public static function name($value) function 134 'Enum %s has no name defined for value %s', __CLASS__, $value)); 140 public static function value($name) 142 $const = __CLASS__ . '::' . strtoupper($name); 145 'Enum %s has no value defined for name %s', __CLASS__, $name)); 151 // Adding a class alias for backwards compatibility with the previous class name.
|
/third_party/protobuf/php/src/Google/Protobuf/Field/ |
H A D | Kind.php | 153 public static function name($value) function 157 'Enum %s has no name defined for value %s', __CLASS__, $value)); 162 public static function value($name) 164 $const = __CLASS__ . '::' . strtoupper($name); 167 'Enum %s has no value defined for name %s', __CLASS__, $name)); 173 // Adding a class alias for backwards compatibility with the previous class name.
|
/third_party/python/Lib/test/ |
H A D | test_sundry.py | 12 for name in untested: 14 import_helper.import_module('test.test_{}'.format(name)) 16 importlib.import_module(name) 19 'otherwise'.format(name))
|
/third_party/skia/modules/skottie/src/layers/ |
H A D | AudioLayer.cpp | 59 const skjson::StringValue* name = jaudio["p"]; in attachAudioLayer() local 63 if (name && path && id) { in attachAudioLayer() 65 name->begin(), in attachAudioLayer() 75 "Could not load audio asset '%s'.", name->begin()); in attachAudioLayer()
|
/third_party/skia/bench/ |
H A D | SwizzleBench.cpp | 14 SwizzleBench(const char* name, SkOpts::Swizzle_8888_u32 fn) : fName(name), fFn_u32(fn) {} in SwizzleBench() argument 15 SwizzleBench(const char* name, SkOpts::Swizzle_8888_u8 fn) : fName(name), fFn_u8 (fn) {} in SwizzleBench() argument
|
/third_party/vk-gl-cts/modules/gles3/performance/ |
H A D | es3pTextureCountTests.cpp | 54 const char* name; in init() member 78 string name = string(texFormats[formatNdx].name) + "_" + de::toString(numTextures); in init() local 81 addChild(new Texture2DRenderCase(m_context, name.c_str(), description.c_str(), format, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */)); in init()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsScissorTests.hpp | 78 const char* name, 86 const char* name, 93 const char* name, 99 const char* name,
|
H A D | glsShaderLibrary.cpp | 45 tcu::TestCaseGroup* createGroup (const std::string& name, const std::string& description, const std::vector<tcu::TestNode*>& children) in createGroup() argument 47 return new tcu::TestCaseGroup(m_testCtx, name.c_str(), description.c_str(), children); in createGroup() 50 tcu::TestCase* createCase (const std::string& name, const std::string& description, const glu::sl::ShaderCaseSpecification& spec) in createCase() argument 52 return new ShaderLibraryCase(m_testCtx, m_renderCtx, m_contextInfo, name.c_str(), description.c_str(), spec); in createCase()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuResource.cpp | 43 Resource* DirArchive::getResource (const char* name) const in getResource() 45 return static_cast<Resource*>(new FileResource((m_path + name).c_str())); in getResource() 92 Resource* ResourcePrefix::getResource (const char* name) const in getResource() 94 return m_archive.getResource((m_prefix + name).c_str()); in getResource()
|
/third_party/vk-gl-cts/modules/gles2/performance/ |
H A D | es2pTextureCountTests.cpp | 54 const char* name; in init() member 77 string name = string(texFormats[formatNdx].name) + "_" + de::toString(numTextures); in init() local 80 addChild(new Texture2DRenderCase(m_context, name.c_str(), description.c_str(), format, dataType, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */)); in init()
|
/third_party/vulkan-loader/loader/ |
H A D | dlopen_fuchsia.c | 50 void *dlopen_fuchsia(const char *name, int mode, bool driver) { in dlopen_fuchsia() argument 56 result = dlopen(name, mode); in dlopen_fuchsia() 70 zx_status_t st = fuchsia_vulkan_loader_LoaderGet(vulkan_loader_svc, name, strlen(name), &vmo); in dlopen_fuchsia()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 192 HeapGraphEdge::HeapGraphEdge(Type type, const char* name, HeapEntry* from, in HeapGraphEdge() argument 197 name_(name) { in HeapGraphEdge() 215 const char* name, SnapshotObjectId id, size_t self_size, in HeapEntry() 222 name_(name), in HeapEntry() 277 void HeapEntry::SetNamedReference(HeapGraphEdge::Type type, const char* name, in SetNamedReference() argument 282 snapshot_->edges().emplace_back(type, name, this, entry); in SetNamedReference() 302 const char* name = description in SetNamedAutoIndexReference() local 305 SetNamedReference(type, name, child, generator, verification); in SetNamedAutoIndexReference() 336 edge_name = edge.name(); in Print() 343 edge_name = edge.name(); in Print() 214 HeapEntry(HeapSnapshot* snapshot, int index, Type type, const char* name, SnapshotObjectId id, size_t self_size, unsigned trace_node_id) HeapEntry() argument 451 AddEntry(HeapEntry::Type type, const char* name, SnapshotObjectId id, size_t size, unsigned trace_node_id) AddEntry() argument 805 const char* name = names_->GetName(shared.Name()); AddEntry() local 815 const char* name = names_->GetName( AddEntry() local 844 String name = SharedFunctionInfo::cast(object).Name(); AddEntry() local 847 Object name = Script::cast(object).name(); AddEntry() local 861 AddEntry(HeapObject object, HeapEntry::Type type, const char* name) AddEntry() argument 870 AddEntry(Address address, HeapEntry::Type type, const char* name, size_t size) AddEntry() argument 1289 const char* name; global() member 1308 String name = String::cast(scope_info.FunctionName()); ExtractContextReferences() local 1333 const char* name = native_context_names[i].name; ExtractContextReferences() local 1420 std::unique_ptr<char[]> name = shared.DebugNameCStr(); ExtractSharedFunctionInfoReferences() local 1499 TagBuiltinCodeObject(CodeT code, const char* name) TagBuiltinCodeObject() argument 1662 const char* name = names_->GetCopy(string); ExtractNumberReference() local 1780 Name name = cell.name(); ExtractPropertyReferences() local 2198 const char* name = SetPropertyReference() local 2239 const char* name = GetStrongGcSubrootName(child_obj); SetGcSubrootReference() local 2272 const char* name = RootsTable::name(root_index); GetStrongGcSubrootName() local 2379 const char* name; global() member [all...] |
/base/hiviewdfx/hiview/build/ |
H A D | gen_plugin_build.py | 67 items.append('\"%s:%s\",\n' % (info['path'], info['name'])) 189 def set_para(self, name, value): 190 if name == "target_os": 192 if name == "product": 194 if name == "platform": 196 if name == "arch": 198 if name == "ram": 200 if name == "rom": 224 for name, value in threads.items(): 225 if name [all...] |
/base/global/i18n/frameworks/intl/entity_recognition/date_time_recognition/src/ |
H A D | date_time_rule.cpp | 102 std::string category = reinterpret_cast<const char*>(cur->name); in InitRules() 106 std::string key = reinterpret_cast<const char*>(value->name); in InitRules() 137 std::string category = reinterpret_cast<const char*>(cur->name); in InitRuleBackup() 153 std::string key = reinterpret_cast<const char*>(cur->name); in LoadStrToPattern() 159 if (value != nullptr && !xmlStrcmp(value->name, reinterpret_cast<const xmlChar*>("flag"))) { in LoadStrToPattern() 169 while (value != nullptr && !xmlStrcmp(value->name, reinterpret_cast<const xmlChar*>("content"))) { in LoadStrToPattern() 194 std::string key = reinterpret_cast<const char*>(cur->name); in LoadStrToStr() 199 if (value != nullptr && !xmlStrcmp(value->name, reinterpret_cast<const xmlChar*>("level"))) { in LoadStrToStr() 214 while (value != nullptr && !xmlStrcmp(value->name, reinterpret_cast<const xmlChar*>("content"))) { in LoadStrToStr() 328 int DateTimeRule::GetLevel(std::string& name) in GetLevel() argument [all...] |
/base/startup/init/services/modules/bootevent/ |
H A D | bootevent.c | 180 static int AddItemToJson(cJSON *root, const char *name, double startTime, int pid, double durTime)
in AddItemToJson() argument 184 cJSON_AddStringToObject(obj, "name", name);
in AddItemToJson() 290 ServiceExtData *extData = GetServiceExtData(node->name, i);
in BootCompleteClearAll() 296 DelServiceExtData(node->name, i);
in BootCompleteClearAll() 309 char name[PARAM_NAME_LEN_MAX];
in WriteBooteventSysParam() local 315 INIT_CHECK_ONLY_ELOG(snprintf_s(name, sizeof(name), sizeof(name) - 1, "ohos.boot.time.%s", paramName) >= 0,
in WriteBooteventSysParam() 316 "snprintf_s name faile in WriteBooteventSysParam() 399 DoBootEventCmd(int id, const char *name, int argc, const char **argv) DoBootEventCmd() argument 418 AddReservedBooteventsByFile(const char *name) AddReservedBooteventsByFile() argument 454 DoUnsetBootEventCmd(int id, const char *name, int argc, const char **argv) DoUnsetBootEventCmd() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | bytestream.h | 42 #define DEF(type, name, bytes, read, write) \ 43 static av_always_inline type bytestream_get_ ## name(const uint8_t **b) \ 48 static av_always_inline void bytestream_put_ ## name(uint8_t **b, \ 54 static av_always_inline void bytestream2_put_ ## name ## u(PutByteContext *p, \ 57 bytestream_put_ ## name(&p->buffer, value); \ 59 static av_always_inline void bytestream2_put_ ## name(PutByteContext *p, \ 68 static av_always_inline type bytestream2_get_ ## name ## u(GetByteContext *g) \ 70 return bytestream_get_ ## name(&g->buffer); \ 72 static av_always_inline type bytestream2_get_ ## name(GetByteContext *g) \ 78 return bytestream2_get_ ## name ## [all...] |
/third_party/glslang/gtests/ |
H A D | GlslMapIO.FromFile.cpp | 19 // Neither the name of 3Dlabs Inc. Ltd. nor the names of its 57 return symbol.getType()->getBasicType() == glslang::EbtBlock ? std::string(symbol.getType()->getTypeName().c_str()) : symbol.name; in interfaceName() 95 std::string name = interfaceName(out); in verifyIOMapping() local 96 pipeOut[name] = &out; in verifyIOMapping() 102 std::string name = interfaceName(in); in verifyIOMapping() local 103 auto out = pipeOut.find(name); in verifyIOMapping() 167 std::string name = interfaceName(uniform); in verifyIOMapping() local 168 programUniforms[name] = &uniform; in verifyIOMapping() 177 std::string name = interfaceName(uniform); in verifyIOMapping() local 178 auto programUniform = programUniforms.find(name); in verifyIOMapping() 201 std::string name = interfaceName(uniform); verifyIOMapping() local 211 std::string name = interfaceName(uniform); verifyIOMapping() local [all...] |
/third_party/ffmpeg/tests/checkasm/ |
H A D | h264dsp.c | 249 const char *name; in check_idct_multiple() local 255 name = "h264_idct_add16"; in check_idct_multiple() 259 name = "h264_idct_add16intra"; in check_idct_multiple() 264 name = "h264_idct8_add4"; in check_idct_multiple() 302 if (check_func(idct, "%s_%dbpp", name, bit_depth)) { in check_idct_multiple() 346 #define CHECK_LOOP_FILTER(name, align, idc) \ in check_loop_filter() 348 if (check_func(h.name, #name #idc "_%dbpp", bit_depth)) { \ in check_loop_filter() 360 fprintf(stderr, #name #idc ": j:%d, alpha:%d beta:%d " \ in check_loop_filter() 406 #define CHECK_LOOP_FILTER(name, alig in check_loop_filter_intra() [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | restest.cpp | 116 const char* name; member 208 void ResourceBundleTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) in runIndexedTest() argument 213 case 0: name = "TestResourceBundles"; if (exec) TestResourceBundles(); break; in runIndexedTest() 214 case 1: name = "TestConstruction"; if (exec) TestConstruction(); break; in runIndexedTest() 215 case 2: name = "TestGetSize"; if (exec) TestGetSize(); break; in runIndexedTest() 216 case 3: name = "TestGetLocaleByType"; if (exec) TestGetLocaleByType(); break; in runIndexedTest() 218 case 0: case 1: case 2: case 3: name = "skip"; break; in runIndexedTest() 221 case 4: name = "TestExemplar"; if (exec) TestExemplar(); break; in runIndexedTest() 222 default: name = ""; break; //needed to end loop in runIndexedTest() 360 action += param[i].name; in testTag() [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | IcuDataDumper.java | 51 Optional<Pattern> name = Optional.empty(); in main() 54 name = Optional.of(Pattern.compile(args[1])); in main() 59 throw new IllegalArgumentException("Usage: <file-or-dir> [<name-pattern>]"); in main() 63 walkDirectory(fileOrDir, name); in main() 65 checkArgument(!name.isPresent(), in main() 66 "cannot specificy a name pattern for a non-directory file: %s", fileOrDir); in main() 73 private static void walkDirectory(Path fileOrDir, Optional<Pattern> name) throws IOException { in walkDirectory() argument 75 f -> name.map(n -> n.matcher(f.getFileName().toString()).matches()).orElse(true); in walkDirectory() 111 // ICU data name (the name o 112 private String name = null; global() field in IcuDataDumper.IcuDataParser [all...] |
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | GatherAPIData.java | 11 * Generate a list of ICU's public APIs, sorted by qualified name and signature 33 * -name "ICU4J 4.2" 75 String srcName = "Current"; // default source name 76 String output; // name of output file to write 85 if (option.equals("-name")) { in optionLength() 123 if (opt.equals("-name")) { in GatherAPIData() 185 bw.write(srcName + APIInfo.SEP); // source name in run() 238 // doc.containingClass().name() + in isIgnoredEnumMethod() 243 String name = doc.name(); in isIgnoredEnumMethod() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | tzrule.cpp | 35 TimeZoneRule::TimeZoneRule(const UnicodeString& name, int32_t rawOffset, int32_t dstSavings) 36 : UObject(), fName(name), fRawOffset(rawOffset), fDSTSavings(dstSavings) { 71 TimeZoneRule::getName(UnicodeString& name) const { 72 name = fName; 73 return name; 97 InitialTimeZoneRule::InitialTimeZoneRule(const UnicodeString& name, 100 : TimeZoneRule(name, rawOffset, dstSavings) { 183 AnnualTimeZoneRule::AnnualTimeZoneRule(const UnicodeString& name, 189 : TimeZoneRule(name, rawOffset, dstSavings), fDateTimeRule(new DateTimeRule(dateTimeRule)), 193 AnnualTimeZoneRule::AnnualTimeZoneRule(const UnicodeString& name, [all...] |
/third_party/libwebsockets/lib/core-net/client/ |
H A D | connect.c | 181 if (!strcmp(vh->name, "system")) in lws_client_connect_via_info() 197 wsi->fic.name = "wsi"; in lws_client_connect_via_info() 275 lwsl_wsi_info(wsi, "role binding to %s", wsi->role_ops->name); in lws_client_connect_via_info() 312 wsi->a.vhost->name, local); in lws_client_connect_via_info() 320 lws_wsi_tag(wsi), wsi->role_ops->name, in lws_client_connect_via_info() 321 wsi->a.protocol ? wsi->a.protocol->name : "none"); in lws_client_connect_via_info() 397 wsi->role_ops->name, i->address, in lws_client_connect_via_info() 407 wsi->role_ops->name ? wsi->role_ops->name : "novh", vh->name, in lws_client_connect_via_info() [all...] |