/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | regerror.c | 19 * 3. Neither the name of the University nor the names of its contributors 56 const char *name; member 101 assert(strlen(r->name) < sizeof(convbuf)); in llvm_regerror() 102 (void) llvm_strlcpy(convbuf, r->name, sizeof convbuf); in llvm_regerror() 128 if (strcmp(r->name, preg->re_endp) == 0) in regatoi()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | regerror.c | 19 * 3. Neither the name of the University nor the names of its contributors 56 const char *name; member 101 assert(strlen(r->name) < sizeof(convbuf)); in llvm_regerror() 102 (void) llvm_strlcpy(convbuf, r->name, sizeof convbuf); in llvm_regerror() 128 if (strcmp(r->name, preg->re_endp) == 0) in regatoi()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | namer.h | 45 /// A sanitized name never starts with an underscore. 47 /// @returns sanitized name, suitable for use as an identifier 55 /// @returns true if we the given ID already has a registered name. 60 /// @param name a string 61 /// @returns true if the string has been registered as a name. 62 bool IsRegistered(const std::string& name) const { in IsRegistered() 63 return name_to_id_.find(name) != name_to_id_.end(); in IsRegistered() 67 /// @returns the name for the ID. It must have been registered. 72 /// Gets a unique name for the ID. If one already exists, then return 73 /// that, otherwise synthesize a name an [all...] |
/third_party/skia/tools/fonts/ |
H A D | ToolUtilsFont.cpp | 104 static sk_sp<SkTypeface> create_font(const char* name, SkFontStyle style) { in create_font() argument 106 return portableFontMgr->legacyMakeTypeface(name, style); in create_font() 109 sk_sp<SkTypeface> create_portable_typeface(const char* name, SkFontStyle style) { in create_portable_typeface() argument 110 return create_font(name, style); in create_portable_typeface()
|
/third_party/skia/tools/gpu/gl/ |
H A D | GLTestContext.h | 58 const char* name, const char* ext = nullptr) const { member in sk_gpu_test::GLTestContext 60 if (!SkStrStartsWith(name, "gl")) { 61 SK_ABORT("getGLProcAddress: proc name must have 'gl' prefix"); 64 SkString fullname(name); 68 *out = reinterpret_cast<Proc>(this->onPlatformGetProcAddress(name));
|
/third_party/spirv-tools/source/ |
H A D | assembly_grammar.h | 48 // of the given name. Returns SPV_SUCCESS if the opcode was found, and 50 spv_result_t lookupOpcode(const char* name, spv_opcode_desc* desc) const; 60 spv_result_t lookupOperand(spv_operand_type_t type, const char* name, 69 // Finds operand entry in the grammar table and returns its name. 77 return desc->name; in lookupOperandName() 80 // Finds the opcode for the given OpSpecConstantOp opcode name. The name 85 spv_result_t lookupSpecConstantOpcode(const char* name,
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | idna.h | 8 * file name: idna.h 97 * Converts a single domain name label into its ASCII form for DNS lookup. 106 * @param label Input domain name label 121 * Converts a single domain name label into its Unicode form for human-readable display. 128 * @param label Input domain name label 143 * Converts a whole domain name into its ASCII form for DNS lookup. 146 * The domain name might be modified according to the types of errors. 152 * @param name Input domain name 163 nameToASCII(const UnicodeString &name, UnicodeStrin [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | superErrors.js | 10 name: string = "Bob"; 12 //console.log("Hello, " + this.name); 17 name: string = "Frank"; 78 this.name = "Bob";
81 //console.log("Hello, " + this.name);
89 _this.name = "Frank";
|
H A D | arrayLiteralTypeInference.js | 16 { id: 3, name: "three" } 33 { id: 3, name: "three" } 91 { id: 3, name: "three" }
104 { id: 3, name: "three" }
|
H A D | uncalledFunctionChecksInConditional2.js | 42 measure = (name, startTag, endTag) => { 43 perf.measure(name, startTag, endTag) 46 // perf.clearMeasures(name) 83 measure = function (name, startTag, endTag) {
84 perf_1.measure(name, startTag, endTag);
87 // perf.clearMeasures(name)
|
/third_party/toybox/toys/posix/ |
H A D | chgrp.c | 55 ret = fchownat(fd, node->name, TT.owner, TT.group, in do_chgrp() 61 xprintf("%s %s%s%s %s\n", toys.which->name, TT.owner_name, in do_chgrp() 62 (toys.which->name[2]=='o' && *TT.group_name) ? ":" : "", in do_chgrp() 75 int ischown = toys.which->name[2] == 'o'; in chgrp_main()
|
/third_party/vixl/examples/aarch64/ |
H A D | disasm.cc | 12 // * Neither the name of ARM Limited nor the names of its contributors may be 43 void PrintUsage(char const* name) { in PrintUsage() argument 44 printf("Usage: %s [OPTION]... <INSTRUCTION>...\n", name); in PrintUsage() 67 printf(" $ %s d2824685\n", name); in PrintUsage() 70 printf(" $ %s --start-at -4 0x10fffe85 0xd61f00a0\n", name); in PrintUsage()
|
/third_party/skia/third_party/externals/freetype/builds/meson/ |
H A D | parse_modules_cfg.py | 26 # FONT_MODULES += <name> 27 # HINTING_MODULES += <name> 28 # RASTER_MODULES += <name> 29 # AUX_MODULES += <name> 30 # BASE_EXTENSIONS += <name> 55 "Unexpected configuration variable name " + items[0] 70 name = { 78 "FT_USE_MODULE( FT_Driver_ClassRec, %s_driver_class )\n" % name 87 name = { 92 "FT_USE_MODULE( FT_Renderer_Class, %s_renderer_class )\n" % name [all...] |
/third_party/python/Objects/clinic/ |
H A D | funcobject.c.h | 6 "function(code, globals, name=None, argdefs=None, closure=None)\n" 15 " name\n" 16 " a string that overrides the name from the code object\n" 24 PyObject *name, PyObject *defaults, PyObject *closure); 30 static const char * const _keywords[] = {"code", "globals", "name", "argdefs", "closure", NULL}; in func_new() 38 PyObject *name = Py_None; in func_new() local 60 name = fastargs[2]; in func_new() 73 return_value = func_new_impl(type, code, globals, name, defaults, closure); in func_new()
|
/third_party/python/Modules/clinic/ |
H A D | grpmodule.c.h | 40 "getgrnam($module, /, name)\n" 43 "Return the group database entry for the given group name.\n" 45 "If name is not valid, raise KeyError."); 51 grp_getgrnam_impl(PyObject *module, PyObject *name); 57 static const char * const _keywords[] = {"name", NULL}; in grp_getgrnam() 60 PyObject *name; in grp_getgrnam() local 67 _PyArg_BadArgument("getgrnam", "argument 'name'", "str", args[0]); in grp_getgrnam() 73 name = args[0]; in grp_getgrnam() 74 return_value = grp_getgrnam_impl(module, name); in grp_getgrnam() 86 "An entry whose name start [all...] |
/third_party/python/Lib/test/test_email/ |
H A D | test_pickleable.py | 26 def header_as_deepcopy(self, name, value): 27 header = self.header_factory(name, value) 31 def header_as_pickle(self, name, value): 32 header = self.header_factory(name, value)
|
/third_party/rust/crates/clap/examples/derive_ref/ |
H A D | hand_subcommand.rs | 6 name: Vec<String>, 12 name: Vec<String>, 63 fn has_subcommand(name: &str) -> bool { in has_subcommand() 64 matches!(name, "add" | "remove") in has_subcommand()
|
/third_party/skia/include/private/ |
H A D | SkMacros.h | 25 #define SK_MACRO_APPEND_LINE(name) SK_MACRO_CONCAT(name, __LINE__) 27 #define SK_MACRO_APPEND_COUNTER(name) SK_MACRO_CONCAT(name, __COUNTER__)
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGFeMorphology.cpp | 15 bool SkSVGFeMorphology::parseAndSetAttribute(const char* name, const char* value) { in parseAndSetAttribute() argument 16 return INHERITED::parseAndSetAttribute(name, value) || in parseAndSetAttribute() 18 "operator", name, value)) || in parseAndSetAttribute() 20 "radius", name, value)); in parseAndSetAttribute()
|
H A D | SkSVGFeBlend.cpp | 15 bool SkSVGFeBlend::parseAndSetAttribute(const char* name, const char* value) { in parseAndSetAttribute() argument 16 return INHERITED::parseAndSetAttribute(name, value) || in parseAndSetAttribute() 17 this->setIn2(SkSVGAttributeParser::parse<SkSVGFeInputType>("in2", name, value)) || in parseAndSetAttribute() 18 this->setMode(SkSVGAttributeParser::parse<SkSVGFeBlend::Mode>("mode", name, value)); in parseAndSetAttribute()
|
/third_party/rust/crates/syn/examples/heapsize/heapsize_derive/src/ |
H A D | lib.rs | 13 // Used in the quasi-quotation below as `#name`. in derive_heap_size() 14 let name = input.ident; in derive_heap_size() 25 impl #impl_generics heapsize::HeapSize for #name #ty_generics #where_clause { in derive_heap_size() 65 let name = &f.ident; in heap_size_sum() 67 heapsize::HeapSize::heap_size_of_children(&self.#name) in heap_size_sum()
|
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
H A D | store.rs | 20 //! let mut name = X509Name::builder().unwrap(); 21 //! name.append_entry_by_nid(Nid::COMMONNAME, "foobar.com").unwrap(); 22 //! let name = name.build(); 29 //! builder.set_subject_name(&name).unwrap(); 30 //! builder.set_issuer_name(&name).unwrap(); 175 pub fn add_dir(&mut self, name: &str, file_type: SslFiletype) -> Result<(), ErrorStack> { in add_dir() 176 let name = CString::new(name).unwrap(); in add_dir() 180 name in add_dir() [all...] |
/third_party/rust/crates/quote/src/ |
H A D | format.rs | 150 ([$span:expr, $($fmt:tt)*] $name:ident = $arg:expr) => { 151 $crate::format_ident_impl!([$span, $($fmt)*] $name = $arg,) 153 ([$span:expr, $($fmt:tt)*] $name:ident = $arg:expr, $($rest:tt)*) => { 155 arg => $crate::format_ident_impl!([$span.or(arg.span()), $($fmt)*, $name = arg] $($rest)*),
|
/third_party/rust/crates/unicode-ident/generate/src/ |
H A D | parse.rs | 41 let (lo, hi, name) = parse_line(line).unwrap_or_else(|| { in parse_xid_properties() 45 let set = match name { in parse_xid_properties() 69 let name = rest.trim().split('#').next()?.trim_end(); in parse_line() 70 Some((lo, hi, name)) in parse_line()
|
/third_party/spirv-tools/utils/ |
H A D | generate_vim_syntax.py | 124 def EmitAsStatement(name): 125 """Emits the given name as a statement token""" 126 print('syn keyword spvasmStatement', name) 129 def EmitAsEnumerant(name): 130 """Emits the given name as an named operand token""" 131 print('syn keyword spvasmConstant', name)
|