Home
last modified time | relevance | path

Searched refs:name_space (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/mesa/program/
Dsymbol_table.c59 int name_space; member
119 int name_space; member
206 int name_space, const char *name) in _mesa_symbol_table_iterator_ctor() argument
211 iter->name_space = name_space; in _mesa_symbol_table_iterator_ctor()
219 if ((name_space == -1) || (sym->name_space == name_space)) { in _mesa_symbol_table_iterator_ctor()
260 if ((iter->name_space == -1) in _mesa_symbol_table_iterator_next()
261 || (iter->curr->name_space == iter->name_space)) { in _mesa_symbol_table_iterator_next()
282 int name_space, const char *name) in _mesa_symbol_table_symbol_scope() argument
291 if ((name_space == -1) || (sym->name_space == name_space)) { in _mesa_symbol_table_symbol_scope()
304 int name_space, const char *name) in _mesa_symbol_table_find_symbol() argument
[all …]
Dsymbol_table.h34 int name_space, const char *name, void *declaration);
37 struct _mesa_symbol_table *symtab, int name_space, const char *name,
41 int name_space, const char *name);
44 struct _mesa_symbol_table *symtab, int name_space, const char *name);
51 struct _mesa_symbol_table *table, int name_space, const char *name);
/external/flatbuffers/src/
Didl_gen_fbs.cpp41 static void GenNameSpace(const Namespace &name_space, std::string *_schema, in GenNameSpace() argument
43 if (*last_namespace == &name_space) return; in GenNameSpace()
44 *last_namespace = &name_space; in GenNameSpace()
47 for (auto it = name_space.components.begin(); in GenNameSpace()
48 it != name_space.components.end(); ++it) { in GenNameSpace()
49 if (it != name_space.components.begin()) schema += "."; in GenNameSpace()
Didl_gen_cpp.cpp51 auto name_space = parser_.namespaces_.back(); in GenIncludeGuard() local
52 for (auto it = name_space->components.begin(); in GenIncludeGuard()
53 it != name_space->components.end(); ++it) { in GenIncludeGuard()