Home
last modified time | relevance | path

Searched refs:priceList (Results 1 – 25 of 41) sorted by relevance

12

/dports/finance/qtbitcointrader/QtBitcoinTrader-1.40.55/src/
H A Ddepthmodel.cpp110 if (priceList.empty()) in getVolumeByPrice()
118 … currentIndex = std::upper_bound(priceList.begin(), priceList.end(), price) - priceList.begin(); in getVolumeByPrice()
124 if (currentIndex >= priceList.size() - 1 && price > priceList.last()) in getVolumeByPrice()
129 … currentIndex = std::lower_bound(priceList.begin(), priceList.end(), price) - priceList.begin(); in getVolumeByPrice()
143 return priceList.size() + grouped; in rowCount()
462 if (priceList.isEmpty()) in clear()
469 priceList.clear(); in clear()
706 …int currentIndex = std::lower_bound(priceList.begin(), priceList.end(), price) - priceList.begin(); in depthUpdateOrder()
776 row = priceList.size() - row - 1; in rowPrice()
781 return priceList.at(row); in rowPrice()
[all …]
H A Dordersmodel.cpp91 priceList.clear(); in clear()
204 priceList.at(currentIndex) != ordersRcv->at(n).price)) in orderBookChanged()
211 priceList[currentIndex] = ordersRcv->at(n).price; in orderBookChanged()
234 priceList.insert(currentIndex, ordersRcv->at(n).price); in orderBookChanged()
266 priceList.removeAt(n); in orderBookChanged()
368 return priceList.at(currentRow); in data()
589 currentAsksPrices.remove(priceList.at(n)); in setOrderCanceled()
591 currentBidsPrices.remove(priceList.at(n)); in setOrderCanceled()
725 if (row < 0 || row >= priceList.size()) in getRowPrice()
728 return priceList.at(getRowNum(row)); in getRowPrice()
H A Ddepthmodel.h110 QList<double> priceList; variable
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/maps/magic/clothing_boutique/
H A DOutfitLender2NPC.java124 super(priceList, endurance, wearOffMessage); in buildBoutiqueArea()
186 priceList.put("goblin face", (int) (N * 500)); in buildBoutiqueArea()
187 priceList.put("thing face", (int) (N * 500)); in buildBoutiqueArea()
188 priceList.put("purple slime", (int) (N * 3000)); in buildBoutiqueArea()
189 priceList.put("red slime", (int) (N * 3000)); in buildBoutiqueArea()
190 priceList.put("blue slime", (int) (N * 3000)); in buildBoutiqueArea()
191 priceList.put("green slime", (int) (N * 3000)); in buildBoutiqueArea()
192 priceList.put("gingerbread man", (int) (N * 1200)); in buildBoutiqueArea()
193 priceList.put("umbrella", (int) (N * 300)); in buildBoutiqueArea()
194 priceList.put("black cat", (int) (N * 4500)); in buildBoutiqueArea()
[all …]
H A DOutfitLenderNPC.java125 super(priceList, endurance, wearOffMessage); in buildBoutiqueArea()
187 priceList.put("jumpsuit", (int) (N * 500)); in buildBoutiqueArea()
188 priceList.put("dungarees", (int) (N * 500)); in buildBoutiqueArea()
189 priceList.put("green dress", (int) (N * 500)); in buildBoutiqueArea()
190 priceList.put("gown", (int) (N * 750)); in buildBoutiqueArea()
191 priceList.put("orange", (int) (N * 500)); in buildBoutiqueArea()
192 priceList.put("bunny", (int) (N * 800)); in buildBoutiqueArea()
193 priceList.put("jester", (int) (N * 400)); in buildBoutiqueArea()
194 priceList.put("horse", (int) (N * 1200)); in buildBoutiqueArea()
195 priceList.put("girl horse", (int) (N * 1200)); in buildBoutiqueArea()
[all …]
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/core/scripting/lua/
H A DLuaMerchantHelper.java80 Map<String, Integer> priceList = null; in add() local
82 priceList = new LinkedHashMap<>(); in add()
96 priceList.put(itemName, itemPrice); in add()
99 priceList = (LinkedHashMap<String, Integer>) prices; in add()
102 if (priceList == null) { in add()
109 new BuyerAdder().addBuyer(npc, new BuyerBehaviour(priceList), addOffer); in add()
111 new SellerAdder().addSeller(npc, new SellerBehaviour(priceList), addOffer); in add()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/entity/npc/behaviour/impl/
H A DOutfitChangerBehaviour.java88 public OutfitChangerBehaviour(final Map<String, Integer> priceList) { in OutfitChangerBehaviour() argument
89 this(priceList, NEVER_WEARS_OFF, null); in OutfitChangerBehaviour()
102 public OutfitChangerBehaviour(final Map<String, Integer> priceList, final boolean reset) { in OutfitChangerBehaviour() argument
103 this(priceList, NEVER_WEARS_OFF, null, reset); in OutfitChangerBehaviour()
122 public OutfitChangerBehaviour(final Map<String, Integer> priceList, final int endurance, in OutfitChangerBehaviour() argument
124 this(priceList, endurance, wearOffMessage); in OutfitChangerBehaviour()
141 public OutfitChangerBehaviour(final Map<String, Integer> priceList, in OutfitChangerBehaviour() argument
143 super(priceList); in OutfitChangerBehaviour()
H A DMerchantBehaviour.java39 public MerchantBehaviour(final Map<String, Integer> priceList) { in MerchantBehaviour() argument
40 super(priceList.keySet()); in MerchantBehaviour()
41 priceCalculator = new FixedPricePriceCalculationStrategy(priceList); in MerchantBehaviour()
42 for (final String itemName : priceList.keySet()) { in MerchantBehaviour()
H A DQuestCompletedSellerBehaviour.java26 …tCompletedSellerBehaviour(String questSlot, String message, final Map<String, Integer> priceList) { in QuestCompletedSellerBehaviour() argument
27 super(priceList); in QuestCompletedSellerBehaviour()
H A DQuestCompletedBuyerBehaviour.java26 …stCompletedBuyerBehaviour(String questSlot, String message, final Map<String, Integer> priceList) { in QuestCompletedBuyerBehaviour() argument
27 super(priceList); in QuestCompletedBuyerBehaviour()
H A DSeedSellerBehaviour.java40 public SeedSellerBehaviour(final Map<String, Integer> priceList) { in SeedSellerBehaviour() argument
41 super(priceList); in SeedSellerBehaviour()
H A DBuyerBehaviour.java30 public BuyerBehaviour(final Map<String, Integer> priceList) { in BuyerBehaviour() argument
31 super(priceList); in BuyerBehaviour()
H A DSellerBehaviour.java52 public SellerBehaviour(final Map<String, Integer> priceList) { in SellerBehaviour() argument
53 super(priceList); in SellerBehaviour()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/maps/nalwor/forest/
H A DAssassinRepairerAdder.java48 private Map<String, Integer> priceList; field in AssassinRepairerAdder
82 public void add(final AssassinRepairer repairer, final Map<String, Integer> priceList) { in add() argument
84 this.priceList = priceList; in add()
193 for (final String repairable: priceList.keySet()) { in setRepairItem()
204 for (String bow: priceList.keySet()) { in canRepair()
229 for (final String item: priceList.keySet()) { in calculateRepairFee()
231 currentRepairFee = currentRepairCount * (priceList.get(currentRepairItem)); in calculateRepairFee()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/maps/fado/dressingrooms/
H A DBrideAssistantNPC.java61 final Map<String, Integer> priceList = new HashMap<String, Integer>(); in buildDressingRoom()
62 priceList.put("gown", 100); in buildDressingRoom()
63 final OutfitChangerBehaviour behaviour = new OutfitChangerBehaviour(priceList, true); in buildDressingRoom()
H A DGroomAssistantNPC.java66 final Map<String, Integer> priceList = new HashMap<String, Integer>(); in buildDressingRoom()
67 priceList.put("suit", 50); in buildDressingRoom()
68 final OutfitChangerBehaviour behaviour = new OutfitChangerBehaviour(priceList, true); in buildDressingRoom()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/maps/ados/city/
H A DMakeupArtistNPC.java76 final Map<String, Integer> priceList = new HashMap<String, Integer>(); in buildFidorea()
77 priceList.put("mask", 20); in buildFidorea()
78 …final OutfitChangerBehaviour behaviour = new OutfitChangerBehaviour(priceList, MINUTES_BEFORE_WEAR… in buildFidorea()
/dports/www/thirtybees/thirtybees-1.1.0/classes/range/
H A DRangePrice.php164 $priceList = [];
166 $priceList[] = [
174 $carrier->addDeliveryPrice($priceList);
H A DRangeWeight.php93 $priceList = [];
95 $priceList[] = [
103 $carrier->addDeliveryPrice($priceList);
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/maps/athor/dressingroom_male/
H A DLifeguardNPC.java63 final Map<String, Integer> priceList = new HashMap<String, Integer>(); in buildDressingRoom()
64 priceList.put("trunks", 5); in buildDressingRoom()
65 final OutfitChangerBehaviour behaviour = new OutfitChangerBehaviour(priceList); in buildDressingRoom()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/maps/athor/dressingroom_female/
H A DLifeguardNPC.java62 final Map<String, Integer> priceList = new HashMap<String, Integer>(); in buildFemaleDressingRoom()
63 priceList.put("swimsuit", 5); in buildFemaleDressingRoom()
64 final OutfitChangerBehaviour behaviour = new OutfitChangerBehaviour(priceList); in buildFemaleDressingRoom()
/dports/www/thirtybees/thirtybees-1.1.0/controllers/admin/
H A DAdminShippingController.php167 $priceList = [];
183 $priceList[] = [
193 $carrier->addDeliveryPrice($priceList);
H A DAdminCarrierWizardController.php1099 $priceList = [];
1102 $priceList[] = [
1112 if (count($priceList) && !$carrier->addDeliveryPrice($priceList, true)) {
/dports/deskutils/foliate/foliate-2.6.3/src/assets/KindleUnpack/
H A Dmobi_opf.py297 priceList = metadata['Price']
299 if len(priceList) != len(currencyList):
302 for i in range(len(priceList)):
303 data.append('<SRP Currency="'+currencyList[i]+'">'+priceList[i]+'</SRP>\n')
/dports/finance/cointop/cointop-1.5.4/cointop/common/api/impl/coingecko/
H A Dcoingecko.go268 priceList, err := s.client.SimplePrice(ids, currencies)
273 for _, item := range *priceList {

12