Home
last modified time | relevance | path

Searched refs:createGMonth (Results 1 – 18 of 18) sorted by relevance

/dports/textproc/zorba/zorba-2.7.0/swig/
H A DItemFactory.i117 Item ItemFactory::createGMonth (const std::string &aValue){ in createGMonth() function
118 return Item( theItemFactory->createGMonth (aValue)); in createGMonth()
120 Item ItemFactory::createGMonth (short aMonth){ in createGMonth() function
121 return Item( theItemFactory->createGMonth (aMonth)); in createGMonth()
H A DItemFactory.h329 Item createGMonth (const std::string &aValue);
337 Item createGMonth (short aMonth);
/dports/textproc/zorba/zorba-2.7.0/src/store/api/
H A Ditem_factory.h457 virtual bool createGMonth(Item_t& result, const xs_gMonth* value) = 0;
463 virtual bool createGMonth(Item_t& result, const char* str, ulong strlen) = 0;
468 virtual bool createGMonth(Item_t& result, short month) = 0;
/dports/textproc/zorba/zorba-2.7.0/include/zorba/
H A Ditem_factory.h436 createGMonth ( const String& aValue ) = 0;
445 createGMonth ( short aMonth ) = 0;
/dports/textproc/zorba/zorba-2.7.0/src/api/
H A Ditemfactoryimpl.h162 createGMonth ( short aMonth );
165 createGMonth ( const String& aValue );
H A Ditemfactoryimpl.cpp574 Item ItemFactoryImpl::createGMonth ( short aMonth ) in createGMonth() function in zorba::ItemFactoryImpl
578 theItemFactory->createGMonth(lItem, aMonth ); in createGMonth()
584 Item ItemFactoryImpl::createGMonth ( const String& aValue ) in createGMonth() function in zorba::ItemFactoryImpl
589 theItemFactory->createGMonth(lItem, lString.c_str(), lString.size()); in createGMonth()
/dports/textproc/zorba/zorba-2.7.0/src/store/naive/
H A Dsimple_item_factory.h198 bool createGMonth(store::Item_t& result, const xs_gMonth* value);
200 bool createGMonth(store::Item_t& result, const char* str, ulong strlen);
202 bool createGMonth(store::Item_t& result, short month);
H A Dsimple_item_factory.cpp722 bool BasicItemFactory::createGMonth(store::Item_t& result, const xs_gMonth* value) in createGMonth() function in zorba::simplestore::BasicItemFactory
729 bool BasicItemFactory::createGMonth( in createGMonth() function in zorba::simplestore::BasicItemFactory
749 bool BasicItemFactory::createGMonth(store::Item_t& result, short month) in createGMonth() function in zorba::simplestore::BasicItemFactory
753 if(DateTime::createGMonth(month, dt) == 0) in createGMonth()
H A Datomic_items.cpp465 return GET_FACTORY().createGMonth(result, theValue.c_str(), theValue.size()); in castToGMonth()
/dports/textproc/zorba/zorba-2.7.0/src/capi/
H A Duser_item_sequence.cpp55 methods[XQC_G_MONTH_TYPE] = &ItemFactory::createGMonth; in CreatorInitializer()
/dports/textproc/zorba/zorba-2.7.0/src/zorbatypes/
H A Ddatetime.h190 static int createGMonth(int months, DateTime& dt);
/dports/textproc/zorba/zorba-2.7.0/test/api/
H A Ditemfactory.cpp519 lItem = lFactory->createGMonth("--12Z"); in itemfactory()
526 lItem = lFactory->createGMonth(11); in itemfactory()
/dports/textproc/zorba/zorba-2.7.0/swig/xqj/
H A DZorbaXQConnection.java556 … item = new org.zorbaxquery.api.xqj.ZorbaXQItem(itemFactory.createGMonth(value), type); in createItemFromString()
1015 … item = new org.zorbaxquery.api.xqj.ZorbaXQItem(itemFactory.createGMonth(value.toString()), type); in createItemFromObject()
/dports/textproc/zorba/zorba-2.7.0/swig/php/
H A Dzorba_api_wrapper.php1064 public function createGMonth($aValue_or_aMonth) { function in ItemFactory
/dports/textproc/zorba/zorba-2.7.0/src/zorbatypes/datetime/
H A Ddatetimetype.cpp270 int DateTime::createGMonth(int months, DateTime& dt) in createGMonth() function in zorba::DateTime
/dports/textproc/zorba/zorba-2.7.0/src/zorbaserialization/
H A Dserialize_zorba_types.cpp1013 DESERIALIZE_ATOMIC_ITEM2(xs_gMonth, createGMonth); in deserialize_atomic_item()
/dports/textproc/zorba/zorba-2.7.0/src/types/schema/
H A DXercesParseUtils.cpp1115 return factory->createGMonth(result, &tValue); in parseXSGMonth()
/dports/textproc/zorba/zorba-2.7.0/src/types/
H A Dcasting.cpp385 return aFactory->createGMonth(result, &m); in T1_TO_T2()