OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:base_idl_type
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_types.py
161
base_idl_type
= idl_type.base_type
163
if
base_idl_type
in CPP_TYPE_SAME_AS_IDL_TYPE:
164
return
base_idl_type
165
if
base_idl_type
in CPP_INT_TYPES:
167
if
base_idl_type
in CPP_UNSIGNED_TYPES:
169
if
base_idl_type
in CPP_SPECIAL_CONVERSION_RULES:
170
return CPP_SPECIAL_CONVERSION_RULES[
base_idl_type
]
172
if
base_idl_type
in NON_WRAPPER_TYPES:
173
return ('PassRefPtr<%s>' if used_as_rvalue_type else 'RefPtr<%s>') %
base_idl_type
180
return
base_idl_type
+ '*
[
all
...]
v8_attributes.py
48
base_idl_type
= idl_type.base_type
80
if (
base_idl_type
== 'EventHandler' and
166
base_idl_type
= idl_type.base_type
186
if
base_idl_type
!= 'EventHandler':
189
base_idl_type
== 'EventHandler' or
197
if
base_idl_type
!= 'EventHandler':
263
base_idl_type
= attribute.idl_type.base_type
264
if
base_idl_type
in CONTENT_ATTRIBUTE_GETTER_NAMES:
265
return CONTENT_ATTRIBUTE_GETTER_NAMES[
base_idl_type
]
273
base_idl_type
= idl_type.base_typ
[
all
...]
Completed in 166 milliseconds