Home
last modified time | relevance | path

Searched refs:fromRDF (Results 1 – 4 of 4) sorted by relevance

/dports/games/libretro-scummvm/scummvm-7b1e929/engines/startrek/
H A Droom.cpp374 int Room::showMultipleTexts(const TextRef *textIDs, bool fromRDF, bool lookWithTalker) { in showMultipleTexts() argument
384 if (i > 0 && fromRDF) { in showMultipleTexts()
401 int Room::showText(TextRef speaker, TextRef text, bool fromRDF, bool lookWithTalker) { in showText() argument
406 return showMultipleTexts(textIDs, fromRDF, lookWithTalker); in showText()
409 int Room::showDescription(TextRef text, bool fromRDF, bool lookWithTalker) { in showDescription() argument
410 return showText(TX_NULL, text, fromRDF, lookWithTalker); in showDescription()
613 void Room::spockScan(int direction, TextRef text, bool changeDirection, bool fromRDF) { in spockScan() argument
625 showText(TX_SPEAKER_SPOCK, text, fromRDF); in spockScan()
628 void Room::mccoyScan(int direction, TextRef text, bool changeDirection, bool fromRDF) { in mccoyScan() argument
640 showText(TX_SPEAKER_MCCOY, text, fromRDF); in mccoyScan()
H A Droom.h191 int showMultipleTexts(const TextRef *text, bool fromRDF = false, bool lookWithTalker = false);
192 int showDescription(TextRef text, bool fromRDF = false, bool lookWithTalker = false);
193 int showText(TextRef speaker, TextRef text, bool fromRDF = false, bool lookWithTalker = false);
285 void spockScan(int direction, TextRef text, bool changeDirection = false, bool fromRDF = false);
286 void mccoyScan(int direction, TextRef text, bool changeDirection = false, bool fromRDF = false);
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/linkeddata/gojsonld/
H A Dapi.go200 jsonObject := fromRDF(input, options.UseNativeTypes, options.UseRdfType)
H A DserializationApi.go232 func fromRDF(dataset *Dataset, useNativeTypes bool, func