Home
last modified time | relevance | path

Searched refs:createGMonthDay (Results 1 – 19 of 19) sorted by relevance

/dports/textproc/zorba/zorba-2.7.0/swig/
H A DItemFactory.i123 Item ItemFactory::createGMonthDay (const std::string &aValue){ in createGMonthDay() function
124 return Item( theItemFactory->createGMonthDay (aValue)); in createGMonthDay()
126 Item ItemFactory::createGMonthDay (short aMonth, short aDay){ in createGMonthDay() function
127 return Item( theItemFactory->createGMonthDay (aMonth, aDay)); in createGMonthDay()
H A DItemFactory.h345 Item createGMonthDay (const std::string &aValue);
354 Item createGMonthDay (short aMonth, short aDay);
/dports/textproc/zorba/zorba-2.7.0/src/store/api/
H A Ditem_factory.h470 virtual bool createGMonthDay(Item_t& result, const xs_gMonthDay* value) = 0;
476 virtual bool createGMonthDay(Item_t& result, const char* str, ulong strlen) = 0;
482 virtual bool createGMonthDay(Item_t& result, short month, short day) = 0;
/dports/textproc/zorba/zorba-2.7.0/include/zorba/
H A Ditem_factory.h454 createGMonthDay ( const String& aValue ) = 0;
464 createGMonthDay ( short aMonth, short aDay ) = 0;
/dports/textproc/zorba/zorba-2.7.0/src/api/
H A Ditemfactoryimpl.h168 createGMonthDay ( const String& aValue );
171 createGMonthDay ( short aMonth, short aDay );
H A Ditemfactoryimpl.cpp595 Item ItemFactoryImpl::createGMonthDay(const String& aValue) in createGMonthDay() function in zorba::ItemFactoryImpl
600 theItemFactory->createGMonthDay(lItem, lString.c_str(), lString.size()); in createGMonthDay()
606 Item ItemFactoryImpl::createGMonthDay(short aMonth, short aDay) in createGMonthDay() function in zorba::ItemFactoryImpl
610 theItemFactory->createGMonthDay(lItem, aMonth, aDay ); in createGMonthDay()
/dports/textproc/zorba/zorba-2.7.0/src/store/naive/
H A Dsimple_item_factory.h204 bool createGMonthDay (store::Item_t& result, const xs_gMonthDay* value);
206 bool createGMonthDay (store::Item_t& result, const char* str, ulong strlen);
208 bool createGMonthDay (store::Item_t& result, short month, short day);
H A Dsimple_item_factory.cpp766 bool BasicItemFactory::createGMonthDay( in createGMonthDay() function in zorba::simplestore::BasicItemFactory
775 bool BasicItemFactory::createGMonthDay( in createGMonthDay() function in zorba::simplestore::BasicItemFactory
795 bool BasicItemFactory::createGMonthDay(store::Item_t& result, short month, short day) in createGMonthDay() function in zorba::simplestore::BasicItemFactory
799 if(DateTime::createGMonthDay(month, day, dt) == 0) in createGMonthDay()
H A Datomic_items.cpp459 return GET_FACTORY().createGMonthDay(result, theValue.c_str(), theValue.size()); in castToGMonthDay()
/dports/textproc/zorba/zorba-2.7.0/src/capi/
H A Duser_item_sequence.cpp56 methods[XQC_G_MONTH_DAY_TYPE] = &ItemFactory::createGMonthDay; in CreatorInitializer()
/dports/textproc/zorba/zorba-2.7.0/src/zorbatypes/
H A Ddatetime.h196 static int createGMonthDay(int months, int days, DateTime& dt);
/dports/textproc/zorba/zorba-2.7.0/test/api/
H A Ditemfactory.cpp534 lItem = lFactory->createGMonthDay("--12-25-14:00"); in itemfactory()
541 lItem = lFactory->createGMonthDay(12, 25); in itemfactory()
/dports/textproc/zorba/zorba-2.7.0/test/rbkt/
H A Dtestdriver_common.cpp246 return itemfactory->createGMonthDay(val); in createItem()
/dports/textproc/zorba/zorba-2.7.0/swig/xqj/
H A DZorbaXQConnection.java559 … item = new org.zorbaxquery.api.xqj.ZorbaXQItem(itemFactory.createGMonthDay(value), type); in createItemFromString()
1018 …item = new org.zorbaxquery.api.xqj.ZorbaXQItem(itemFactory.createGMonthDay(value.toString()), type… in createItemFromObject()
/dports/textproc/zorba/zorba-2.7.0/swig/php/
H A Dzorba_api_wrapper.php1070 public function createGMonthDay($aValue_or_aMonth, $aDay=null) { function in ItemFactory
/dports/textproc/zorba/zorba-2.7.0/src/zorbatypes/datetime/
H A Ddatetimetype.cpp285 int DateTime::createGMonthDay(int months, int days, DateTime& dt) in createGMonthDay() function in zorba::DateTime
/dports/textproc/zorba/zorba-2.7.0/src/zorbaserialization/
H A Dserialize_zorba_types.cpp1005 DESERIALIZE_ATOMIC_ITEM2(xs_gMonthDay, createGMonthDay); in deserialize_atomic_item()
/dports/textproc/zorba/zorba-2.7.0/src/types/schema/
H A DXercesParseUtils.cpp1047 return factory->createGMonthDay(result, &tValue); in parseXSGMonthDay()
/dports/textproc/zorba/zorba-2.7.0/src/types/
H A Dcasting.cpp363 return aFactory->createGMonthDay(result, &md); in T1_TO_T2()