Home
last modified time | relevance | path

Searched defs:name (Results 9151 - 9175 of 10268) sorted by relevance

1...<<361362363364365366367368369370>>...411

/third_party/python/Python/
H A Dpythonrun.c1911 PyRun_AnyFile(FILE *fp, const char *name) in PyRun_AnyFile() argument
1918 PyRun_AnyFileEx(FILE *fp, const char *name, int closeit) in PyRun_AnyFileEx() argument
1925 PyRun_AnyFileFlags(FILE *fp, const char *name, PyCompilerFlags *flags) in PyRun_AnyFileFlags() argument
/third_party/python/Modules/_sre/
H A Dsre.c763 PyObject* name; in call() local
1312 const char *name; in pattern_repr() member
2154 match_getitem(MatchObject* self, PyObject* name) in match_getitem() argument
[all...]
/third_party/python/Objects/
H A Dcodeobject.c159 _Py_set_localsplus_info(int offset, PyObject *name, _PyLocals_Kind kind, in _Py_set_localsplus_info() argument
221 PyObject *name = PyTuple_GET_ITEM(co->co_localsplusnames, offset); in get_localsplus_names() local
498 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_NewWithPosOnlyArgs() argument
534 PyObject *name = PyTuple_GET_ITEM(varnames, i); PyCode_NewWithPosOnlyArgs() local
539 PyObject *name = PyTuple_GET_ITEM(cellvars, i); PyCode_NewWithPosOnlyArgs() local
562 PyObject *name = PyTuple_GET_ITEM(freevars, i); PyCode_NewWithPosOnlyArgs() local
622 PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_New() argument
1522 code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable, PyObject *freevars, PyObject *cellvars) code_new_impl() argument
2004 PyObject *name = PyTuple_GetItem(self->co_localsplusnames, oparg); code__varname_from_oparg_impl() local
[all...]
H A Dgenobject.c774 _gen_getframe(PyGenObject *gen, const char *const name) in _gen_getframe() argument
1003 PyGen_NewWithQualName(PyFrameObject *f, PyObject *name, PyObject *qualname) in PyGen_NewWithQualName() argument
962 gen_new_with_qualname(PyTypeObject *type, PyFrameObject *f, PyObject *name, PyObject *qualname) gen_new_with_qualname() argument
1360 PyCoro_New(PyFrameObject *f, PyObject *name, PyObject *qualname) PyCoro_New() argument
1641 PyAsyncGen_New(PyFrameObject *f, PyObject *name, PyObject *qualname) PyAsyncGen_New() argument
[all...]
H A Dobject.c792 PyObject_GetAttrString(PyObject *v, const char *name) in PyObject_GetAttrString() argument
807 PyObject_HasAttrString(PyObject *v, const char *name) in PyObject_HasAttrString() argument
819 PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w) in PyObject_SetAttrString() argument
852 _PyObject_GetAttrId(PyObject *v, _Py_Identifier *name) in _PyObject_GetAttrId() argument
863 _PyObject_SetAttrId(PyObject *v, _Py_Identifier *name, PyObject *w) _PyObject_SetAttrId() argument
874 set_attribute_error_context(PyObject* v, PyObject* name) set_attribute_error_context() argument
904 PyObject_GetAttr(PyObject *v, PyObject *name) PyObject_GetAttr() argument
938 _PyObject_LookupAttr(PyObject *v, PyObject *name, PyObject **result) _PyObject_LookupAttr() argument
987 _PyObject_LookupAttrId(PyObject *v, _Py_Identifier *name, PyObject **result) _PyObject_LookupAttrId() argument
998 PyObject_HasAttr(PyObject *v, PyObject *name) PyObject_HasAttr() argument
1013 PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value) PyObject_SetAttr() argument
1150 _PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) _PyObject_GetMethod() argument
1243 _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, PyObject *dict, int suppress) _PyObject_GenericGetAttrWithDict() argument
1366 PyObject_GenericGetAttr(PyObject *obj, PyObject *name) PyObject_GenericGetAttr() argument
1372 _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name, PyObject *value, PyObject *dict) _PyObject_GenericSetAttrWithDict() argument
1455 PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value) PyObject_GenericSetAttr() argument
[all...]
H A Ddescrobject.c56 PyObject *name = NULL; in descr_repr() local
900 descr_new(PyTypeObject *descrtype, PyTypeObject *type, const char *name) in descr_new() argument
1570 PyObject *name = PyTuple_GET_ITEM(args, 1); property_set_name() local
[all...]
/third_party/python/Modules/_sqlite/
H A Dconnection.c435 blobopen_impl(pysqlite_Connection *self, const char *table, const char *col, sqlite3_int64 row, int readonly, const char *name) blobopen_impl() argument
1001 pysqlite_connection_create_function_impl(pysqlite_Connection *self, PyTypeObject *cls, const char *name, int narg, PyObject *func, int deterministic) pysqlite_connection_create_function_impl() argument
1153 create_window_function_impl(pysqlite_Connection *self, PyTypeObject *cls, const char *name, int num_params, PyObject *aggregate_class) create_window_function_impl() argument
1212 pysqlite_connection_create_aggregate_impl(pysqlite_Connection *self, PyTypeObject *cls, const char *name, int n_arg, PyObject *aggregate_class) pysqlite_connection_create_aggregate_impl() argument
1923 pysqlite_connection_backup_impl(pysqlite_Connection *self, pysqlite_Connection *target, int pages, PyObject *progress, const char *name, double sleep) pysqlite_connection_backup_impl() argument
2029 pysqlite_connection_create_collation_impl(pysqlite_Connection *self, PyTypeObject *cls, const char *name, PyObject *callable) pysqlite_connection_create_collation_impl() argument
2092 serialize_impl(pysqlite_Connection *self, const char *name) serialize_impl() argument
2147 deserialize_impl(pysqlite_Connection *self, Py_buffer *data, const char *name) deserialize_impl() argument
[all...]
/third_party/python/Modules/
H A D_winapi.c505 _winapi_CreateFileMapping_impl(PyObject *module, HANDLE file_handle, LPSECURITY_ATTRIBUTES security_attributes, DWORD protect, DWORD max_size_high, DWORD max_size_low, LPCWSTR name) _winapi_CreateFileMapping_impl() argument
684 _winapi_CreateNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD open_mode, DWORD pipe_mode, DWORD max_instances, DWORD out_buffer_size, DWORD in_buffer_size, DWORD default_timeout, LPSECURITY_ATTRIBUTES security_attributes) _winapi_CreateNamedPipe_impl() argument
750 getulong(PyObject* obj, const char* name) getulong() argument
766 gethandle(PyObject* obj, const char* name) gethandle() argument
888 gethandlelist(PyObject *mapping, const char *name, Py_ssize_t *size) gethandlelist() argument
954 getattributelist(PyObject *obj, const char *name, AttributeList *attribute_list) getattributelist() argument
1439 _winapi_OpenFileMapping_impl(PyObject *module, DWORD desired_access, BOOL inherit_handle, LPCWSTR name) _winapi_OpenFileMapping_impl() argument
1774 _winapi_WaitNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD timeout) _winapi_WaitNamedPipe_impl() argument
[all...]
H A D_xxsubinterpretersmodule.c42 char *name; member
75 PyObject *name = PyUnicode_FromString(item->name); in _sharednsitem_apply() local
172 char *name; global() member
218 PyObject *name = PyUnicode_FromFormat("%S", exctype); _sharedexception_bind() local
1529 const char *name = _PyType_Name(type); channelid_repr() local
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DGeneratedMessageV3.java1841 getMethodOrDie( final Class clazz, final String name, final Class... params) getMethodOrDie() argument
H A DGeneratedMessage.java1677 newMessageScopedGeneratedExtension( final Message scope, final String name, final Class singularType, final Message defaultInstance) newMessageScopedGeneratedExtension() argument
1967 getMethodOrDie( final Class clazz, final String name, final Class... params) getMethodOrDie() argument
H A DGeneratedMessageLite.java1149 static Method getMethodOrDie(Class clazz, String name, Class... params) { in getMethodOrDie() argument
H A DDescriptors.java161 Syntax(String name) { in Syntax() argument
165 private final String name; field in Descriptors.FileDescriptor.Syntax
182 findMessageTypeByName(String name) findMessageTypeByName() argument
206 findEnumTypeByName(String name) findEnumTypeByName() argument
230 findServiceByName(String name) findServiceByName() argument
254 findExtensionByName(String name) findExtensionByName() argument
746 isReservedName(final String name) isReservedName() argument
770 findFieldByName(final String name) findFieldByName() argument
795 findNestedTypeByName(final String name) findNestedTypeByName() argument
810 findEnumTypeByName(final String name) findEnumTypeByName() argument
1340 fieldNameToJsonName(String name) fieldNameToJsonName() argument
1699 findValueByName(final String name) findValueByName() argument
1989 findMethodByName(final String name) findMethodByName() argument
2159 computeFullName( final FileDescriptor file, final Descriptor parent, final String name) computeFullName() argument
2212 private final String name; global() field in Descriptors.DescriptorValidationException
2355 lookupSymbol( final String name, final GenericDescriptor relativeTo, final DescriptorPool.SearchFilter filter) lookupSymbol() argument
2517 PackageDescriptor(final String name, final String fullName, final FileDescriptor file) PackageDescriptor() argument
2523 private final String name; global() field in Descriptors.DescriptorPool.PackageDescriptor
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor.cc1687 char* name; FindMethodByName() local
1900 AddIntConstant(PyTypeObject *type, const char* name, int value) AddIntConstant() argument
[all...]
H A Ddescriptor_containers.cc174 char* name; in _GetItemByKey() local
965 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
969 GetByCamelcaseName(PyContainer* self, ConstStringParam name) GetByCamelcaseName() argument
1043 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1095 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1158 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1218 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1270 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1336 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1457 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1519 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1567 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1615 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
1663 GetByName(PyContainer* self, ConstStringParam name) GetByName() argument
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Ddefs.c158 static void remove_path(upb_strview *name) { in remove_path() argument
193 upb_strview name; in rewrite_nesting() local
271 upb_strview name = google_protobuf_DescriptorProto_name(msgs[i]); rewrite_names() local
278 upb_strview name = google_protobuf_EnumDescriptorProto_name(enums[i]); rewrite_names() local
301 upb_strview name = google_protobuf_DescriptorProto_name(msgs[i]); rewrite_names() local
307 upb_strview name = google_protobuf_EnumDescriptorProto_name(enums[i]); rewrite_names() local
448 DescriptorPool_lookup(VALUE _self, VALUE name) DescriptorPool_lookup() argument
610 Descriptor_lookup(VALUE _self, VALUE name) Descriptor_lookup() argument
648 Descriptor_lookup_oneof(VALUE _self, VALUE name) Descriptor_lookup_oneof() argument
736 const char* name = upb_filedef_name(self->filedef); FileDescriptor_name() local
1340 EnumDescriptor_lookup_name(VALUE _self, VALUE name) EnumDescriptor_lookup_name() argument
1361 const char* name = upb_enumdef_iton(self->enumdef, val); EnumDescriptor_lookup_value() local
1454 MessageBuilderContext_initialize(VALUE _self, VALUE _file_builder, VALUE name) MessageBuilderContext_initialize() argument
1471 msgdef_add_field(VALUE msgbuilder_rb, upb_label_t label, VALUE name, VALUE type, VALUE number, VALUE type_class, VALUE options, int oneof_index, bool proto3_optional) msgdef_add_field() argument
1570 VALUE name, type, number; MessageBuilderContext_optional() local
1601 VALUE name, type, number; MessageBuilderContext_proto3_optional() local
1634 VALUE name, type, number; MessageBuilderContext_required() local
1662 VALUE name, type, number, type_class; MessageBuilderContext_repeated() local
1692 VALUE name, key_type, value_type, number, type_class; MessageBuilderContext_map() local
1771 MessageBuilderContext_oneof(VALUE _self, VALUE name) MessageBuilderContext_oneof() argument
1814 upb_strview name = google_protobuf_FieldDescriptorProto_name(fields[i]); MessageBuilderContext_add_synthetic_oneofs() local
1818 upb_strview name = google_protobuf_OneofDescriptorProto_name(oneofs[i]); MessageBuilderContext_add_synthetic_oneofs() local
1913 VALUE name, type, number; OneofBuilderContext_optional() local
1966 EnumBuilderContext_initialize(VALUE _self, VALUE _file_builder, VALUE name) EnumBuilderContext_initialize() argument
1989 EnumBuilderContext_value(VALUE _self, VALUE name, VALUE number) EnumBuilderContext_value() argument
2075 FileBuilderContext_initialize(VALUE _self, VALUE descriptor_pool, VALUE name, VALUE options) FileBuilderContext_initialize() argument
2118 FileBuilderContext_add_message(VALUE _self, VALUE name) FileBuilderContext_add_message() argument
2137 FileBuilderContext_add_enum(VALUE _self, VALUE name) FileBuilderContext_add_enum() argument
2224 VALUE name, options; Builder_add_file() local
2247 VALUE name = rb_str_new2("ruby_default_file.proto"); Builder_get_default_file() local
2267 Builder_add_message(VALUE _self, VALUE name) Builder_add_message() argument
2286 Builder_add_enum(VALUE _self, VALUE name) Builder_add_enum() argument
[all...]
/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc1367 std::string name, value; ParseArguments() local
1469 ParseArgument(const char* arg, std::string* name, std::string* value) ParseArgument() argument
1529 InterpretArgument(const std::string& name, const std::string& value) InterpretArgument() argument
2484 FormatFreeFieldNumbers(const std::string& name, const std::set<FieldRange>& ranges) FormatFreeFieldNumbers() argument
[all...]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.cc71 std::string DotsToColons(const std::string& name) { in DotsToColons() argument
447 std::string ResolveKeyword(const std::string& name) { in ResolveKeyword() argument
750 UniqueName(const std::string& name, const std::string& filename, const Options& options) UniqueName() argument
756 QualifiedFileLevelSymbol(const FileDescriptor* file, const std::string& name, const Options& options) QualifiedFileLevelSymbol() argument
775 std::string name = field->name(); SafeFunctionName() local
1481 std::string name; GenerateStrings() local
[all...]
H A Dcpp_message.cc301 const std::string name = ClassName(descriptor, true); ShouldMarkClearAsFinal() local
311 const std::string name = ClassName(descriptor, true); ShouldMarkIsInitializedAsFinal() local
321 const std::string name = ClassName(descriptor, true); ShouldMarkNewAsFinal() local
1975 std::string name; GenerateDefaultInstanceInitializer() local
[all...]
/third_party/pulseaudio/src/modules/bluetooth/
H A Dbluez5-util.c2216 const char *name, *old_owner, *new_owner; filter_cb() local
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-tunnel.c1240 const char *name, *description, *monitor_source_name, *driver; in sink_info_cb() local
1331 const char *name, *driver, *resample_method; in sink_input_info_cb() local
1441 const char *name, *description, *monitor_of_sink_name, *driver; source_info_cb() local
1738 char name[256], un[128], hn[128]; setup_complete_callback() local
[all...]
/third_party/python/Lib/
H A Dpydoc.py1750 name = getattr(thing, '__name__', None) global() variable
[all...]
H A Dzipfile.py2495 def name(self): global() member in Path
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dtype.pb.h592 static inline bool Kind_Parse(::PROTOBUF_NAMESPACE_ID::ConstStringParam name, in Kind_Parse() argument
123 Field_Kind_Parse( ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, Field_Kind* value) Field_Kind_Parse() argument
150 Field_Cardinality_Parse( ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, Field_Cardinality* value) Field_Cardinality_Parse() argument
175 Syntax_Parse( ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, Syntax* value) Syntax_Parse() argument
626 Cardinality_Parse(::PROTOBUF_NAMESPACE_ID::ConstStringParam name, Cardinality* value) Cardinality_Parse() argument
1361 inline const std::string& Type::name() const { name() function in Type
1408 set_allocated_name(std::string* name) set_allocated_name() argument
1414 name_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), name, set_allocated_name() local
1736 inline const std::string& Field::name() const { name() function in Field
1783 set_allocated_name(std::string* name) set_allocated_name() argument
1789 name_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), name, set_allocated_name() local
2067 inline const std::string& Enum::name() const { name() function in Enum
2114 set_allocated_name(std::string* name) set_allocated_name() argument
2120 name_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), name, set_allocated_name() local
2308 inline const std::string& EnumValue::name() const { name() function in EnumValue
2355 set_allocated_name(std::string* name) set_allocated_name() argument
2361 name_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), name, set_allocated_name() local
2433 inline const std::string& Option::name() const { name() function in Option
2480 set_allocated_name(std::string* name) set_allocated_name() argument
2486 name_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), name, set_allocated_name() local
[all...]
/third_party/python/Lib/test/test_import/
H A D__init__.py97 self.assertRegex(str(cm.exception), r"cannot import name 'i_dont_exist' from 'os' \\(.*os.py\\)") global() namespace
109 r"cannot import name 'i_dont_exist' from '_testcapi' \\(.*\\.(so|pyd)\\)" global() namespace
421 with self.assertRaisesRegex(ImportError, "^cannot import name 'bogus'"): global() namespace
1349 self.fail('circular import with binding a submodule to a name failed') global() namespace
[all...]

Completed in 60 milliseconds

1...<<361362363364365366367368369370>>...411