HomeSort by relevance Sort by last modified time
    Searched refs:type_name (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/bluetooth/glib/gobject/
gtypemodule.h 108 * @type_name: The name of the new type, in lowercase, with words
177 #define G_DEFINE_DYNAMIC_TYPE_EXTENDED(TypeName, type_name, TYPE_PARENT, flags, CODE) \
178 static void type_name##_init (TypeName *self); \
179 static void type_name##_class_init (TypeName##Class *klass); \
180 static void type_name##_class_finalize (TypeName##Class *klass); \
181 static gpointer type_name##_parent_class = NULL; \
182 static GType type_name##_type_id = 0; \
183 static void type_name##_class_intern_init (gpointer klass) \
185 type_name##_parent_class = g_type_class_peek_parent (klass); \
186 type_name##_class_init ((TypeName##Class*) klass);
    [all...]
gtype.h 420 * @type_name: the name of the type.
430 const gchar *type_name; member in struct:_GTypeQuery
    [all...]
gtypemodule.c 362 * @type_name: name for the type
367 * type plugin. If a type with name @type_name was previously registered,
383 const gchar *type_name,
391 g_return_val_if_fail (type_name != NULL, 0);
394 type = g_type_from_name (type_name);
401 g_warning ("Two different plugins tried to register '%s'.", type_name);
415 "(was '%s', now '%s')", type_name,
429 module_type_info->type = g_type_register_dynamic (parent_type, type_name, G_TYPE_PLUGIN (module), flags);
516 * type plugin. If a type with name @type_name was previously registered,
555 * type plugin. If a type with name @type_name was previously registered
    [all...]
gtype.c 118 #define INVALID_RECURSION(func, arg, type_name) G_STMT_START{ \
120 gpointer _arg = (gpointer) (arg); const gchar *_tname = (type_name), *_fname = (func); \
604 const gchar *type_name)
611 type_name);
617 plugin, type_name);
623 type_name);
629 type_name);
636 check_type_name_I (const gchar *type_name)
639 const gchar *p = type_name;
642 if (!type_name[0] || !type_name[1] || !type_name[2]
    [all...]
  /external/mesa3d/src/glsl/
ast_type.cpp 36 printf("%s ", type_name);
51 : type_specifier(ast_types(specifier)), type_name(NULL), structure(NULL),
111 type_name = names[specifier];
ast.h 442 : type_specifier(ast_type_name), type_name(name), structure(NULL),
450 : type_specifier(ast_struct), type_name(s->name), structure(s),
466 const char *type_name; member in class:ast_type_specifier
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 19 type_name = None variable in class:ComponentInfo
77 type_name = 'Group' variable in class:GroupComponentInfo
89 print >>result, 'type = %s' % self.type_name
95 type_name = 'Library' variable in class:LibraryComponentInfo
132 print >>result, 'type = %s' % self.type_name
169 type_name = 'LibraryGroup' variable in class:LibraryGroupComponentInfo
201 print >>result, 'type = %s' % self.type_name
216 type_name = 'TargetGroup' variable in class:TargetGroupComponentInfo
273 print >>result, 'type = %s' % self.type_name
292 type_name = 'Tool variable in class:ToolComponentInfo
324 type_name = 'BuildTool' variable in class:BuildToolComponentInfo
    [all...]
main.py 195 print '%s%-40s (%s)' % (' '*depth, node.name, node.type_name)
323 if c.type_name not in ('Library', 'LibraryGroup', 'TargetGroup'):
331 if c.type_name == 'Library':
412 assert ci.type_name in ('Library', 'LibraryGroup', 'TargetGroup')
419 if dep.type_name == 'Library':
425 if dep.type_name in ('LibraryGroup', 'TargetGroup'):
541 if ci.type_name != 'Library':
630 if ci.type_name == 'TargetGroup')
647 if native_target.type_name != 'TargetGroup':
667 if target.type_name != 'TargetGroup'
    [all...]
  /external/skia/include/core/
SkPostConfig.h 88 #define SkNEW(type_name) new type_name
89 #define SkNEW_ARGS(type_name, args) new type_name args
90 #define SkNEW_ARRAY(type_name, count) new type_name[count]
  /external/bluetooth/glib/tests/gobject/
deftype.c 45 MY_DEFINE_TYPE (TypeName, type_name, G_TYPE_OBJECT)
  /external/bison/src/
symtab.h 60 uniqstr type_name; member in struct:symbol
110 /* Set the TYPE_NAME associated with SYM. Do nothing if passed 0 as
111 TYPE_NAME. */
112 void symbol_type_set (symbol *sym, uniqstr type_name, location loc);
symtab.c 57 res->type_name = NULL;
92 SYMBOL_ATTR_PRINT (type_name);
116 | Set the TYPE_NAME associated with SYM. Does nothing if passed 0 |
117 | as TYPE_NAME. |
121 symbol_type_set (symbol *sym, uniqstr type_name, location loc)
123 if (type_name)
125 if (sym->type_name)
127 uniqstr_assert (type_name);
128 sym->type_name = type_name;
    [all...]
scan-gram.l 840 const char *type_name = NULL;
849 type_name = ++cp;
858 if (!type_name)
859 type_name = symbol_list_n_type_name_get (current_rule, loc, 0);
860 if (!type_name && typed)
863 if (!type_name)
864 type_name = "";
866 "]b4_lhs_value([%s])[", type_name);
878 if (!type_name && 0 < n)
879 type_name = symbol_list_n_type_name_get (current_rule, loc, n)
    [all...]
reader.c 245 if (!r->action && r->sym->type_name)
251 char const *lhs_type = r->sym->type_name;
253 first_rhs->type_name ? first_rhs->type_name : "";
385 get_merge_function (name, current_rule->sym->type_name, loc);
symlist.c 148 return l->sym->type_name;
  /external/chromium/chrome/browser/extensions/
extension_input_api.cc 80 std::string type_name; local
81 EXTENSION_FUNCTION_VALIDATE(args->GetString(kType, &type_name));
82 ui::EventType type = GetTypeFromString(type_name);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 54 @adaptor.text_of( tree ), @adaptor.type_name( tree ), @adaptor.type_of( tree )
59 @adaptor.text_of( tree ), @adaptor.type_name( tree ), @adaptor.type_of( tree )
69 @adaptor.text_of( tree ), @adaptor.type_name( tree ), @adaptor.type_of( tree )
72 @adaptor.type_of( tree ), @adaptor.type_name( tree ), @adaptor.type_of( tree )
  /external/bluetooth/glib/gobject/tests/
threadtests.c 28 #define _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PREREQ) \
29 static void type_name##_default_init (TypeName##Interface *klass); \
31 type_name##_get_type (void) \
40 (GClassInitFunc) type_name##_default_init, \
53 } /* closes type_name##_get_type() */
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 451 string type_name; local
452 DO(ParseType(&type, &type_name));
453 if (type_name.empty()) {
456 field->set_type_name(type_name);
475 if (type_name.empty() && type == FieldDescriptorProto::TYPE_GROUP) {
1008 string* type_name) {
1014 DO(ParseUserDefinedType(type_name));
1019 bool Parser::ParseUserDefinedType(string* type_name) {
1020 type_name->clear();
1031 *type_name = input_->current().text
    [all...]
parser.h 263 // "type_name" (if it is not) with the type parsed.
265 string* type_name);
266 // Parse a user-defined type and fill in "type_name" with the name.
268 bool ParseUserDefinedType(string* type_name);
  /external/openfst/src/include/fst/
flags.h 60 : address(addr), doc_string(doc), type_name(type), default_value(val) {}
64 const char *type_name; member in struct:FlagDescription
155 << ": type = " << desc.type_name;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 81 : address(addr), doc_string(doc), type_name(type), default_value(val) {}
85 const char *type_name; member in struct:FlagDescription
173 << ": type = " << desc.type_name;
  /external/llvm/bindings/python/llvm/tests/
test_object.py 66 assert isinstance(relocation.type_name, str)
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 557 type_name = []
579 if (type_name and type_name[-1].token_type == tokenize.NAME and
581 type_name.append(tokenize.Token(tokenize.SYNTAX, ' ', 0, 0))
582 type_name.append(p)
586 type_name = ''.join([t.name for t in type_name])
587 return name, type_name, templated_types, modifiers, default, other_tokens
594 name = type_name = ''
605 (name, type_name, templated_types, modifiers
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
chrome_invalidation_client_unittest.cc 80 // |payload| can be NULL, but not |type_name|.
81 void FireInvalidate(const char* type_name,
84 invalidation::ObjectSource::CHROME_SYNC, type_name);

Completed in 588 milliseconds

1 2 3