/third_party/node/test/parallel/ |
H A D | test-eventtarget.js | 66 name: 'TypeError', 292 // Can invoke the same event name recursively 319 name: 'TypeError', 327 name: 'TypeError', 549 strictEqual(lastWarning.name, 'AddEventListenerArgumentTypeWarning'); 554 strictEqual(lastWarning.name, 'AddEventListenerArgumentTypeWarning'); 650 strictEqual(ev.constructor.name, 'Event'); 653 strictEqual(et.constructor.name, 'EventTarget'); 685 name: 'TypeError', 690 name [all...] |
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | filters.py | 316 Can be a list of attributes like ``"age,name"``. 324 {% for user in users|sort(attribute="name") 334 {% for user users|sort(attribute="age,name") %} 340 attributes, e.g. ``"age,name"``. 525 {{ data | selectattr('name', '==', 'Jinja') | list | last }} 805 {{ "%s, %s!"|format(greeting, name) }} 813 {{ "%s, %s!" % (greeting, name) }} 814 {{ "{}, {}!".format(greeting, name) }} 966 <li>{{ user.name }} 1049 def do_attr(environment, obj, name) [all...] |
H A D | nodes.py | 49 def __new__(mcs, name, bases, d): 58 return type.__new__(mcs, name, bases, d) 130 for name, arg in izip(self.fields, fields): 131 setattr(self, name, arg) 144 for name in self.fields: 147 or (exclude is not None and name not in exclude) 148 or (only is not None and name in only) 151 yield name, getattr(self, name) 319 """A macro definition. `name` i [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | filters.py | 913 def do_attr(environment, obj, name): 921 name = str(name) 926 value = getattr(obj, name) 931 environment.is_safe_attribute(obj, name, value): 932 return environment.unsafe_undefined(obj, name) 934 return environment.undefined(obj=obj, name=name) 950 Alternatively you can let it invoke a filter by passing the name of the 1093 name [all...] |
H A D | nodes.py | 64 def __new__(cls, name, bases, d): 73 return type.__new__(cls, name, bases, d) 140 for name, arg in izip(self.fields, fields): 141 setattr(self, name, arg) 155 for name in self.fields: 157 (exclude is not None and name not in exclude) or \ 158 (only is not None and name in only): 160 yield name, getattr(self, name) 321 """A macro definition. `name` i [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | icuplug.cpp | 56 char libName[UPLUG_NAME_MAX]; /**< library name */ 60 char name[UPLUG_NAME_MAX]; /**< name of plugin */ member 112 char name[UPLUG_NAME_MAX]; /**< library name */ member 130 if(!uprv_strcmp(libName, libraryList[i].name)) { in searchForLibraryName() 157 ret = libraryList[libEnt].name; in uplug_findLibrary() 192 libraryList[libEntry].name[0] = 0; in uplug_openLibrary() 200 uprv_strncpy(libraryList[libEntry].name,libName,UPLUG_NAME_MAX); in uplug_openLibrary() 348 plug->name[ in uplug_allocateEmptyPlug() 460 uplug_setPlugName(UPlugData *data, const char *name) uplug_setPlugName() argument [all...] |
/third_party/ltp/testcases/kernel/mce-test/stress/tools/page-poisoning/ |
H A D | page-poisoning.c | 404 static void do_file_clean(int flags, char *name) in do_file_clean() argument 417 testmem(name, page, MREAD_OK); in do_file_clean() 420 testmem(name, page, MWRITE_OK); in do_file_clean() 449 static char *ndesc(char *buf, char *name, char *add) in ndesc() argument 451 snprintf(buf, 100, "%s %s", name, add); in ndesc() 455 static void do_file_dirty(int flags, char *name) in do_file_dirty() argument 465 testmem(ndesc(nbuf, name, "initial"), page, MREAD); in do_file_dirty() 475 recover(ndesc(nbuf, name, "populated"), page, MREAD_OK); in do_file_dirty() 483 recover(ndesc(nbuf, name, "fault"), page, MREAD_OK); in do_file_dirty() 690 char *name; member [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-array-builder.h | 101 BytecodeArrayBuilder& LoadGlobal(const AstRawString* name, int feedback_slot, 103 BytecodeArrayBuilder& StoreGlobal(const AstRawString* name, 135 const AstRawString* name, 139 const AstRawString* name, 160 Register object, Register name, 167 // Set a property named by a property name, trigger the setters and 171 const AstRawString* name, 187 const AstRawString* name, 217 // Lookup the variable with |name|. 218 BytecodeArrayBuilder& LoadLookupSlot(const AstRawString* name, [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | module.cc | 34 SyntheticModule::cast(module).name().Print(os); in PrintModuleName() 342 for (const auto& name : names) { in GetModuleNamespace() 344 if (name->AsArrayIndex(&index)) { in GetModuleNamespace() 346 ns, index, Accessors::MakeModuleNamespaceEntryInfo(isolate, name), in GetModuleNamespace() 351 ns, name, Accessors::MakeModuleNamespaceEntryInfo(isolate, name), in GetModuleNamespace() 371 Handle<String> name) { in GetExport() 372 Handle<Object> object(module().exports().Lookup(name), isolate); in GetExport() 387 MessageTemplate::kAccessedUninitializedVariable, name), in GetExport() 397 Handle<String> name in GetPropertyAttributes() local 370 GetExport(Isolate* isolate, Handle<String> name) GetExport() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_conf.c | 36 const char *name, const char *value) in X509V3_EXT_nconf_int() 44 return v3_generic_extension(name, value, crit, ext_type, ctx); in X509V3_EXT_nconf_int() 45 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value); in X509V3_EXT_nconf_int() 49 "section=%s, name=%s, value=%s", in X509V3_EXT_nconf_int() 50 section, name, value); in X509V3_EXT_nconf_int() 53 "name=%s, value=%s", name, value); in X509V3_EXT_nconf_int() 58 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, const char *name, in X509V3_EXT_nconf() argument 61 return X509V3_EXT_nconf_int(conf, ctx, NULL, name, value); in X509V3_EXT_nconf() 103 "name in do_ext_nconf() 34 X509V3_EXT_nconf_int(CONF *conf, X509V3_CTX *ctx, const char *section, const char *name, const char *value) X509V3_EXT_nconf_int() argument 381 X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section) X509V3_get_string() argument [all...] |
/third_party/python/Lib/distutils/ |
H A D | ccompiler.py | 95 # macro definition is a 2-tuple (name, value), where the value is 97 # undefinition is a 1-tuple (name,). 132 is a string that will be split into executable name and (optional) 159 def _find_macro(self, name): 162 if defn[0] == name: 169 definition, ie. either (name,value) 2-tuple or a (name,) tuple. Do 184 def define_macro(self, name, value=None): 193 i = self._find_macro (name) 197 self.macros.append((name, valu [all...] |
/third_party/python/Lib/ |
H A D | codecs.py | 95 incrementalencoder=None, incrementaldecoder=None, name=None, 98 self.name = name 112 self.name, id(self)) 404 def __getattr__(self, name, 409 return getattr(self.stream, name) 653 def __getattr__(self, name, 658 return getattr(self.stream, name) 738 def __getattr__(self, name, 743 return getattr(self.stream, name) [all...] |
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | blocklayout.cpp | 32 const std::string &name, 38 (*mInfoOut)[name] = variableInfo; 432 mNameStack.push_back(structVar.name); in enterStruct() 458 mNameStack.push_back(arrayVar.name); in enterArray() 505 mNameStack.push_back(variable.name); in visitOpaqueObject() 509 std::string name = collapseNameStack(); in visitOpaqueObject() local 518 visitNamedOpaqueObject(variable, name, mappedName, mArraySizeStack); in visitOpaqueObject() 525 mNameStack.push_back(variable.name); in visitVariable() 529 std::string name = collapseNameStack(); in visitVariable() local 538 visitNamedVariable(variable, isRowMajor, name, mappedNam in visitVariable() 608 visitNamedVariable(const ShaderVariable &variable, bool isRowMajor, const std::string &name, const std::string &mappedName, const std::vector<unsigned int> &arraySizes) visitNamedVariable() argument [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderMultisampleInterpolationTests.cpp | 100 ShaderMultisampleInterpolationApiCase(Context& context, const char* name, const char* description, 110 ShaderMultisampleInterpolationApiCase::ShaderMultisampleInterpolationApiCase(Context& context, const char* name, in ShaderMultisampleInterpolationApiCase() argument 113 : TestCase(context, name, description), m_glslVersion(glslVersion) in ShaderMultisampleInterpolationApiCase() 215 ShaderMultisampleInterpolationBaseCase(Context& context, const char* name, const char* description, 249 Context& context, const char* name, const char* description, glu::GLSLVersion glslVersion, char const* qualifier, in ShaderMultisampleInterpolationBaseCase() 253 : TestCase(context, name, description) in ShaderMultisampleInterpolationBaseCase() 592 char const* name; in init() member 605 char const* name; in init() member 629 tcu::TestCaseGroup* group = new tcu::TestCaseGroup(m_testCtx, cases[caseId].name, ""); in init() 633 char const* name; in init() member 248 ShaderMultisampleInterpolationBaseCase( Context& context, const char* name, const char* description, glu::GLSLVersion glslVersion, char const* qualifier, char const* assignment, char const* condition, bool unique, GLenum internalFormat, tcu::TextureFormat const& texFormat, const char* sampler, const char* outType, GLfloat min, GLfloat max, GLint samples) ShaderMultisampleInterpolationBaseCase() argument [all...] |
/third_party/openssl/crypto/x509/ |
H A D | v3_conf.c | 36 const char *name, const char *value) in X509V3_EXT_nconf_int() 44 return v3_generic_extension(name, value, crit, ext_type, ctx); in X509V3_EXT_nconf_int() 45 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value); in X509V3_EXT_nconf_int() 49 "section=%s, name=%s, value=%s", in X509V3_EXT_nconf_int() 50 section, name, value); in X509V3_EXT_nconf_int() 53 "name=%s, value=%s", name, value); in X509V3_EXT_nconf_int() 58 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, const char *name, in X509V3_EXT_nconf() argument 61 return X509V3_EXT_nconf_int(conf, ctx, NULL, name, value); in X509V3_EXT_nconf() 103 "name in do_ext_nconf() 34 X509V3_EXT_nconf_int(CONF *conf, X509V3_CTX *ctx, const char *section, const char *name, const char *value) X509V3_EXT_nconf_int() argument 381 X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section) X509V3_get_string() argument [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | filters.py | 316 Can be a list of attributes like ``"age,name"``. 324 {% for user in users|sort(attribute="name") 334 {% for user users|sort(attribute="age,name") %} 340 attributes, e.g. ``"age,name"``. 525 {{ data | selectattr('name', '==', 'Jinja') | list | last }} 805 {{ "%s, %s!"|format(greeting, name) }} 813 {{ "%s, %s!" % (greeting, name) }} 814 {{ "{}, {}!".format(greeting, name) }} 966 <li>{{ user.name }} 1049 def do_attr(environment, obj, name) [all...] |
H A D | nodes.py | 49 def __new__(mcs, name, bases, d): 58 return type.__new__(mcs, name, bases, d) 130 for name, arg in izip(self.fields, fields): 131 setattr(self, name, arg) 144 for name in self.fields: 147 or (exclude is not None and name not in exclude) 148 or (only is not None and name in only) 151 yield name, getattr(self, name) 319 """A macro definition. `name` i [all...] |
/third_party/optimized-routines/math/test/ |
H A D | mathbench.c | 217 const char *name; member 577 printf ("%9s %8s: %4u.%02u ns/elem %10llu ns in [%g %g]\n", f->name, s, in bench1() 584 printf ("%9s %8s: %4u.%02u ns/call %10llu ns in [%g %g]\n", f->name, s, in bench1() 633 readtrace (const char *name) in readtrace() argument 636 FILE *f = strcmp (name, "-") == 0 ? stdin : fopen (name, "r"); in readtrace() 639 printf ("openning \"%s\" failed: %m\n", name); in readtrace() 660 printf ("reading \"%s\" failed: %m\n", name); in readtrace() 678 for (const struct fun *f = funtab; f->name; f++) in usage() 679 printf ("%7s [low: %g high: %g]\n", f->name, in usage() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/WindowsManifest/ |
H A D | WindowsManifestMerger.cpp | 91 if (xmlStringsEqual(Child->name, ElementName)) { in getChildWithName() 102 if (xmlStringsEqual(Attribute->name, AttributeName)) { in getAttribute() 213 getAttribute(OriginalNode, Attribute->name)) { in mergeAttributes() 218 FROM_XML_CHAR(OriginalNode->name)); in mergeAttributes() 267 xmlNewProp(OriginalNode, Attribute->name, Attribute->children->content); in mergeAttributes() 520 if (!isMergeableElement(Child->name) || in treeMerge() 522 getChildWithName(OriginalRoot, Child->name)) || in treeMerge() 528 FROM_XML_CHAR(Child->name)); in treeMerge() 544 if (!xmlStringsEqual(Child->name, TO_XML_CHAR("comment"))) { in stripComments() 645 if (!xmlStringsEqual(CombinedRoot->name, AdditionalRoo in merge() [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | icuplug.cpp | 56 char libName[UPLUG_NAME_MAX]; /**< library name */ 60 char name[UPLUG_NAME_MAX]; /**< name of plugin */ member 112 char name[UPLUG_NAME_MAX]; /**< library name */ member 130 if(!uprv_strcmp(libName, libraryList[i].name)) { in searchForLibraryName() 157 ret = libraryList[libEnt].name; in uplug_findLibrary() 192 libraryList[libEntry].name[0] = 0; in uplug_openLibrary() 200 uprv_strncpy(libraryList[libEntry].name,libName,UPLUG_NAME_MAX); in uplug_openLibrary() 348 plug->name[ in uplug_allocateEmptyPlug() 460 uplug_setPlugName(UPlugData *data, const char *name) uplug_setPlugName() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | mappedTypeAsClauses.js | 9 type PropDef<K extends keyof any, T> = { name: K, type: T }; 11 type TypeFromDefs<T extends PropDef<keyof any, any>> = { [P in T as P['name']]: P['type'] }; 13 type TP1 = TypeFromDefs<{ name: 'a', type: string } | { name: 'b', type: number } | { name: 'a', type: boolean }>; 39 readonly name: string; 64 name: string; 83 let primitiveCar: OnlyPrimitives<Car>; // { name: string; seats: number; } 84 let keys: keyof OnlyPrimitives<Car>; // "name" | "seats" 88 let carKeys: KeysOfPrimitives<Car>; // "name" | "seat [all...] |
/third_party/protobuf/src/google/protobuf/compiler/csharp/ |
H A D | csharp_message.cc | 15 // * Neither the name of Google Inc. nor the names of its 91 return descriptor_->name(); in class_name() 217 "field_name", fieldDescriptor->name(), in Generate() 229 vars["name"] = UnderscoresToCamelCase(oneof->name(), false); in Generate() 230 vars["property_name"] = UnderscoresToCamelCase(oneof->name(), true); in Generate() 231 vars["original_name"] = oneof->name(); in Generate() 234 "private object $name$_;\n" in Generate() 251 "private $property_name$OneofCase $name$Case_ = $property_name$OneofCase.None;\n"); in Generate() 256 " get { return $name in Generate() [all...] |
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_helpers.cc | 15 // * Neither the name of Google Inc. nor the names of its 103 // Groups are hacky: The name of the field is just the lower-cased name in FieldName() 105 // capitalization of the type name. in FieldName() 107 field_name = field->message_type()->name(); in FieldName() 109 field_name = field->name(); in FieldName() 112 // Append a trailing "#" to indicate that the name should be decorated to in FieldName() 187 // Add a trailing "_" if the name should be altered. in UnderscoresToCamelCase() 207 return UnderscoresToCamelCase(method->name(), false); in UnderscoresToCamelCase() 211 std::string name in UnderscoresToCamelCaseCheckReserved() local 310 std::string name = field->name() + "_FIELD_NUMBER"; FieldConstantName() local [all...] |
/third_party/python/Modules/_sqlite/ |
H A D | module.c | 184 PyObject* name = NULL; in pysqlite_register_converter_impl() local 187 /* convert the name to upper case */ in pysqlite_register_converter_impl() 189 name = PyObject_CallMethodNoArgs(orig_name, state->str_upper); in pysqlite_register_converter_impl() 190 if (!name) { in pysqlite_register_converter_impl() 194 if (PyDict_SetItem(state->converters, name, callable) != 0) { in pysqlite_register_converter_impl() 200 Py_XDECREF(name); in pysqlite_register_converter_impl() 299 const char *name; member 453 for (int i = 0; error_codes[i].name != NULL; i++) { in add_error_constants() 454 const char *name = error_codes[i].name; in add_error_constants() local [all...] |
/third_party/python/Modules/clinic/ |
H A D | _tkinter.c.h | 326 "createcommand($self, name, func, /)\n" 334 _tkinter_tkapp_createcommand_impl(TkappObject *self, const char *name, 341 const char *name; in _tkinter_tkapp_createcommand() local 352 name = PyUnicode_AsUTF8AndSize(args[0], &name_length); in _tkinter_tkapp_createcommand() 353 if (name == NULL) { in _tkinter_tkapp_createcommand() 356 if (strlen(name) != (size_t)name_length) { in _tkinter_tkapp_createcommand() 361 return_value = _tkinter_tkapp_createcommand_impl(self, name, func); in _tkinter_tkapp_createcommand() 368 "deletecommand($self, name, /)\n" 376 _tkinter_tkapp_deletecommand_impl(TkappObject *self, const char *name); 382 const char *name; in _tkinter_tkapp_deletecommand() local [all...] |