Home
last modified time | relevance | path

Searched refs:maybe_list (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/api/
Dapi-natives.cc535 Object maybe_list = templ->property_list(); in AddPropertyToPropertyList() local
537 if (maybe_list.IsUndefined(isolate)) { in AddPropertyToPropertyList()
540 list = handle(TemplateList::cast(maybe_list), isolate); in AddPropertyToPropertyList()
634 Object maybe_list = info->property_accessors(); in AddNativeDataProperty() local
636 if (maybe_list.IsUndefined(isolate)) { in AddNativeDataProperty()
639 list = handle(TemplateList::cast(maybe_list), isolate); in AddNativeDataProperty()
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining_utils.py1973 def list_to_tuple(maybe_list): argument
1975 if isinstance(maybe_list, list):
1976 return tuple(maybe_list)
1977 return maybe_list