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

1 2 3 4 5

  /external/chromium_org/tools/json_to_struct/
struct_generator.py 34 def GenerateStruct(type_name, schema):
39 lines.append('struct %s {' % type_name)
element_generator.py 95 def GenerateElement(type_name, schema, element_name, element):
99 lines.append('const %s %s = {' % (type_name, element_name));
109 def GenerateElements(type_name, schema, description):
120 result.append(GenerateElement(type_name, schema, element_name, element))
  /external/eigen/test/eigen2/
eigen2_prec_inverse_4x4.cpp 14 template<typename T> std::string type_name() { return "other"; } function
15 template<> std::string type_name<float>() { return "float"; } function
16 template<> std::string type_name<double>() { return "double"; } function
17 template<> std::string type_name<int>() { return "int"; } function
18 template<> std::string type_name<std::complex<float> >() { return "complex<float>"; } function
19 template<> std::string type_name<std::complex<double> >() { return "complex<double>"; } function
20 template<> std::string type_name<std::complex<int> >() { return "complex<int>"; } function
66 std::cerr << "inverse_general_4x4, Scalar = " << type_name<Scalar>() << std::endl;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test_suite.hpp 122 #define BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, F ) \
123 template<typename type_name> \
141 template<typename type_name> \
142 void test_name<type_name>::test_method() \
149 #define BOOST_AUTO_TEST_CASE_TEMPLATE( test_name, type_name, TL ) \
150 BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, BOOST_AUTO_TEST_CASE_FIXTURE )
165 #define BOOST_TEST_CASE_TEMPLATE_FUNCTION( name, type_name ) \
166 template<typename type_name> \
167 void BOOST_JOIN( name, _impl )( boost::type<type_name>* ); \
177 template<typename type_name> \
    [all...]
  /external/chromium_org/sandbox/win/src/
handle_policy.h 24 static bool GenerateRules(const wchar_t* type_name,
handle_policy.cc 19 bool HandlePolicy::GenerateRules(const wchar_t* type_name,
44 if (!duplicate_rule.AddStringMatch(IF, HandleTarget::NAME, type_name,
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 19 type_name = None variable in class:ComponentInfo
79 if self.type_name == 'TargetGroup':
92 type_name = 'Group' variable in class:GroupComponentInfo
104 print >>result, 'type = %s' % self.type_name
110 type_name = 'Library' variable in class:LibraryComponentInfo
156 print >>result, 'type = %s' % self.type_name
195 type_name = "OptionalLibrary" variable in class:OptionalLibraryComponentInfo
209 type_name = 'LibraryGroup' variable in class:LibraryGroupComponentInfo
241 print >>result, 'type = %s' % self.type_name
256 type_name = 'TargetGroup variable in class:TargetGroupComponentInfo
332 type_name = 'Tool' variable in class:ToolComponentInfo
364 type_name = 'BuildTool' variable in class:BuildToolComponentInfo
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPostConfig.h 103 #define SkNEW(type_name) (new type_name)
104 #define SkNEW_ARGS(type_name, args) (new type_name args)
105 #define SkNEW_ARRAY(type_name, count) (new type_name[(count)])
106 #define SkNEW_PLACEMENT(buf, type_name) (new (buf) type_name)
107 #define SkNEW_PLACEMENT_ARGS(buf, type_name, args) \
108 (new (buf) type_name args
    [all...]
  /external/skia/include/core/
SkPostConfig.h 103 #define SkNEW(type_name) (new type_name)
104 #define SkNEW_ARGS(type_name, args) (new type_name args)
105 #define SkNEW_ARRAY(type_name, count) (new type_name[(count)])
106 #define SkNEW_PLACEMENT(buf, type_name) (new (buf) type_name)
107 #define SkNEW_PLACEMENT_ARGS(buf, type_name, args) \
108 (new (buf) type_name args
    [all...]
  /external/bison/src/
symlist.c 60 | Create a list containing TYPE_NAME at LOC. |
64 symbol_list_type_new (uniqstr type_name, location loc)
69 res->content.type_name = type_name;
215 return l->content.sym->type_name;
235 semantic_type_get (node->content.type_name), destructor);
256 semantic_type_get (node->content.type_name), printer);
symlist.h 49 uniqstr type_name; member in union:symbol_list::__anon2792
88 /** Create a list containing \c type_name at \c loc. */
89 symbol_list *symbol_list_type_new (uniqstr type_name, location loc);
symtab.c 77 res->type_name = NULL;
133 SYMBOL_ATTR_PRINT (type_name);
172 | Set the TYPE_NAME associated with SYM. Does nothing if passed 0 |
173 | as TYPE_NAME. |
177 symbol_type_set (symbol *sym, uniqstr type_name, location loc)
179 if (type_name)
181 if (sym->type_name)
183 uniqstr_assert (type_name);
184 sym->type_name = type_name;
    [all...]
scan-code.l 49 static char *fetch_type_name (char *cp, char const **type_name,
268 const char *type_name = NULL;
269 fetch_type_name (yytext + 1, &type_name, *loc)[-1] = 0;
271 obstack_quote (&obstack_for_string, type_name);
681 /* If CP points to a typename (i.e., <.*?>), set TYPE_NAME to its
687 fetch_type_name (char *cp, char const **type_name,
692 *type_name = ++cp;
717 char const *type_name = NULL;
735 cp = fetch_type_name (cp, &type_name, dollar_loc);
740 /* End type_name. *
    [all...]
symtab.h 65 Beware that this is the type_name as was entered by the user,
67 Therefore, when outputting type_name to M4, be sure to escape it
69 uniqstr type_name; member in struct:symbol
138 /** Set the \c type_name associated with \c sym.
140 Do nothing if passed 0 as \c type_name. */
141 void symbol_type_set (symbol *sym, uniqstr type_name, location loc);
  /external/chromium_org/chrome/common/extensions/docs/static/css/
api.css 6 .type_name,
  /external/chromium_org/tools/json_schema_compiler/
schema_loader.py 24 namespace_name, type_name = name_parts
35 if type_name not in namespace.types:
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 113 type_name = json_type["id"]
115 domain_map[type_name] = type_data
117 def get(self, domain_name, type_name):
118 return self.map_[domain_name][type_name]
136 type_name = json_ref
139 type_name = json_ref[dot_pos + 1:]
141 return type_map.get(domain_name, type_name).get_raw_type_js()
  /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/chromium_org/chromeos/dbus/ibus/
ibus_object.cc 18 IBusObjectReader::IBusObjectReader(const std::string& type_name,
20 : type_name_(type_name),
53 std::string type_name; local
54 if (!contents_reader_->PopString(&type_name)) {
60 if (type_name != type_name_) {
62 << " and actual type is " << type_name << "."; local
209 IBusObjectWriter::IBusObjectWriter(const std::string& type_name,
212 : type_name_(type_name),
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
typeexpr.py 99 for (type_name, type_size, integer) in basic_types:
102 tn.name = type_name
191 def set_base_type(self, type_name, signed, unsigned, const, extra_types):
192 te = type_expression.built_in_types.find_type( type_name )
194 te = extra_types.find_type( type_name )
197 raise RuntimeError('Unknown base type "%s".' % (type_name))
  /external/mesa3d/src/mapi/glapi/gen/
typeexpr.py 99 for (type_name, type_size, integer) in basic_types:
102 tn.name = type_name
191 def set_base_type(self, type_name, signed, unsigned, const, extra_types):
192 te = type_expression.built_in_types.find_type( type_name )
194 te = extra_types.find_type( type_name )
197 raise RuntimeError('Unknown base type "%s".' % (type_name))
  /external/chromium_org/third_party/skia/src/core/
SkTLList.h 25 SkNEW_INSERT_IN_LLIST_BEFORE(list, location, type_name, args)
26 SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args)
27 where list is a SkTLList<type_name>*, location is an iterator, and args is the paren-surrounded
28 constructor arguments for type_name. These macros behave like addBefore() and addAfter().
373 #define SkNEW_INSERT_IN_LLIST_BEFORE(list, location, type_name, args) \
374 (new ((list), SkTLList< type_name >::kBefore_Placement, (location)) type_name args)
376 #define SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args) \
377 (new ((list), SkTLList< type_name >::kAfter_Placement, (location)) type_name args
    [all...]
  /external/skia/src/core/
SkTLList.h 25 SkNEW_INSERT_IN_LLIST_BEFORE(list, location, type_name, args)
26 SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args)
27 where list is a SkTLList<type_name>*, location is an iterator, and args is the paren-surrounded
28 constructor arguments for type_name. These macros behave like addBefore() and addAfter().
373 #define SkNEW_INSERT_IN_LLIST_BEFORE(list, location, type_name, args) \
374 (new ((list), SkTLList< type_name >::kBefore_Placement, (location)) type_name args)
376 #define SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args) \
377 (new ((list), SkTLList< type_name >::kAfter_Placement, (location)) type_name args
    [all...]
  /external/chromium_org/ppapi/tests/clang/
find_affected_interfaces.cc 140 std::string type_name; local
141 while (std::getline(stream, type_name, ',')) {
142 types_.push_back(type_name);

Completed in 438 milliseconds

1 2 3 4 5