Searched refs:type_name (Results 51 - 75 of 106) sorted by relevance

12345

/external/protobuf/src/google/protobuf/compiler/
H A Dparser.h411 // "type_name" (if it is not) with the type parsed.
413 string* type_name);
414 // Parse a user-defined type and fill in "type_name" with the name.
416 bool ParseUserDefinedType(string* type_name);
/external/skia/src/gpu/
H A DGrAllocator.h395 #define GrNEW_APPEND_TO_ALLOCATOR(allocator_ptr, type_name, args) \
396 new (allocator_ptr) type_name args
/external/mesa3d/src/glsl/
H A Dast.h474 : type_name(name), structure(NULL),
483 : type_name(s->name), structure(s),
498 const char *type_name; member in class:ast_type_specifier
H A Dast_to_hir.cpp1570 const char *type_name; local
1574 type_name = "matrix";
1576 type_name = "vector";
1578 type_name = "array";
1606 type_name, bound);
1610 type_name);
1904 type = state->symbols->get_type(this->type_name);
1905 *name = this->type_name;
2472 const char *type_name = NULL; local
2540 decl_type = this->type->specifier->glsl_type(& type_name, stat
3957 const char *type_name; local
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database_unittest.cc61 const string& type_name) {
63 if (proto.message_type(i).name() == type_name) return;
67 << type_name << "\".";
60 ExpectContainsType(const FileDescriptorProto& proto, const string& type_name) argument
H A Dextension_set_unittest.cc967 string* type_name = extension->mutable_type_name(); local
968 if (HasPrefixString(*type_name, prefix)) {
969 type_name->replace(0, prefix.size(), ".dynamic_extensions.");
/external/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h177 AnyMatches (ConstString type_name,
/external/parameter-framework/test/functional-tests/PfwTestCase/Types/
H A DtFP16_Q7_8.py64 self.type_name = "FP16_Q7.8"
/external/protobuf/python/google/protobuf/
H A Ddescriptor.py830 if field_proto.HasField('type_name'):
831 type_name = field_proto.type_name
833 [type_name[type_name.rfind('.')+1:]])
838 # Else type_name references a non-local type, which isn't implemented
/external/nanopb-c/generator/
H A Dnanopb_generator.py86 def names_from_type_name(type_name):
87 '''Parse Names() from FieldDescriptorProto type_name'''
88 if type_name[0] != '.':
90 return Names(type_name[1:].split('.'))
232 self.ctype = names_from_type_name(desc.type_name)
252 self.ctype = self.submsgname = names_from_type_name(desc.type_name)
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_formfield.cpp35 CFX_ByteString type_name = FPDF_GetFieldAttr(m_pDict, "FT") ? FPDF_GetFieldAttr(m_pDict, "FT")->GetString() : CFX_ByteString(); local
47 if (type_name == "Btn") {
61 } else if (type_name == "Tx") {
82 } else if (type_name == "Ch") {
95 } else if (type_name == "Sig") {
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp109 int struct_flags, const char* type_name );
1425 const char* type_name CV_DEFAULT(0))
1445 if( type_name )
1446 sprintf( buf, "!!%s %c", type_name, c );
1454 else if( type_name )
1456 sprintf( buf, "!!%s", type_name );
1817 const char* type_name = 0; local
1832 type_name = list ? cvAttrValue( list, "type_id" ) : 0;
1833 if( type_name )
1835 if( strcmp( type_name, "st
2856 cvStartWriteStruct( CvFileStorage* fs, const char* key, int struct_flags, const char* type_name, CvAttrList ) argument
4819 CvType( const char* type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release, CvReadFunc read, CvWriteFunc write, CvCloneFunc clone ) argument
[all...]
/external/lldb/source/DataFormatters/
H A DNSDictionary.cpp43 const char* type_name = "__lldb_autogen_nspair"; local
45 clang::IdentifierInfo &myIdent = ast->Idents.get(type_name);
66 clang_type = target_ast_context->CreateRecordType(NULL, lldb::eAccessPublic, type_name, clang::TTK_Struct, lldb::eLanguageTypeC);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.h425 const lldb_private::ConstString &type_name);
432 const lldb_private::ConstString &type_name,
437 lldb::TypeSP FindCompleteObjCDefinitionType (const lldb_private::ConstString &type_name,
H A DSymbolFileDWARF.cpp4775 const ConstString &type_name,
4781 if (!type_name || (must_be_implementation && !GetObjCClassSymbol (type_name)))
4790 const char *name_cstr = type_name.GetCString();
4799 m_type_index.Find (type_name, die_offsets);
4862 die_offset, type_name.GetCString());
4982 const ConstString &type_name)
4992 if (cu == NULL || die == NULL || !type_name)
5005 type_name.GetCString());
5024 m_apple_types_ap->FindByNameAndTagAndQualifiedNameHash (type_name
4774 FindCompleteObjCDefinitionTypeForDIE(const DWARFDebugInfoEntry *die, const ConstString &type_name, bool must_be_implementation) argument
4980 FindDefinitionTypeForDIE(DWARFCompileUnit* cu, const DWARFDebugInfoEntry *die, const ConstString &type_name) argument
[all...]
H A DSymbolFileDWARFDebugMap.h272 const lldb_private::ConstString &type_name,
/external/protobuf/python/google/protobuf/internal/
H A Ddescriptor_test.py447 type_name: '.protobuf_unittest.TestAllTypes.NestedMessage'
621 field.type_name = 'Sub'
627 enum_field.type_name = 'Foo2.Sub.FOO'
661 enum_field.type_name = 'Foo.FOO'
/external/skia/include/core/
H A DSkTArray.h504 #define SkNEW_APPEND_TO_TARRAY(array_ptr, type_name, args) \
505 (new ((array_ptr), (array_ptr)->count()) type_name args)
/external/mesa3d/src/mapi/glapi/gen/
H A Dgl_XML.py995 def find_type( self, type_name ):
996 if type_name in self.types_by_name:
997 return self.types_by_name[ type_name ].type_expr
999 print "Unable to find base type matching \"%s\"." % (type_name)
/external/valgrind/coregrind/m_demangle/
H A Ddemangle.h592 const char *type_name);
/external/libpng/contrib/tools/
H A Dpngfix.c1096 * type_name function to mask of the byte.)
1106 type_name(png_uint_32 type, FILE *out) function
1155 type_name(type, stdout);
1192 type_name(type, stderr);
2081 type_name(zlib->chunk->chunk_type, stderr);
2115 type_name(zlib->chunk->chunk_type, stdout);
2140 type_name(zlib->chunk->chunk_type, stdout);
2793 type_name(file->type, stderr);
2970 type_name(file->type, stderr);
3102 type_name(typ
[all...]
/external/lldb/include/lldb/Symbol/
H A DClangASTContext.h162 const char *type_name,
H A DType.h342 SetName (const ConstString &type_name);
/external/llvm/bindings/python/llvm/
H A Dobject.py408 def type_name(self): member in class:Relocation
432 getattr(self, 'type_name')
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h575 inline bool IsReadableTypeName(const string& type_name) { argument
578 return (type_name.length() <= 20 ||
579 type_name.find_first_of("<(") == string::npos);
601 const string& type_name = GetTypeName<Value>(); local
602 if (IsReadableTypeName(type_name))
603 *listener->stream() << " (of type " << type_name << ")";

Completed in 720 milliseconds

12345