Home
last modified time | relevance | path

Searched refs:orderType (Results 1 – 25 of 72) sorted by relevance

123

/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/AnalyticsData/
H A DDimensionOrderBy.php21 public $orderType; variable in Google_Service_AnalyticsData_DimensionOrderBy
31 public function setOrderType($orderType) argument
33 $this->orderType = $orderType;
37 return $this->orderType;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/AnalyticsReporting/
H A DOrderBy.php21 public $orderType; variable in Google_Service_AnalyticsReporting_OrderBy
32 public function setOrderType($orderType) argument
34 $this->orderType = $orderType;
38 return $this->orderType;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/AnalyticsReporting/
H A DOrderBy.php21 public $orderType; variable in Google_Service_AnalyticsReporting_OrderBy
32 public function setOrderType($orderType) argument
34 $this->orderType = $orderType;
38 return $this->orderType;
/dports/cad/librecad/LibreCAD-2.2.0-rc2/librecad/src/actions/
H A Drs_actionorder.cpp43 ,orderType(type) in RS_ActionOrder()
51 if (orderType == RS2::ActionOrderBottom || in init()
52 orderType == RS2::ActionOrderTop) { in init()
72 switch (orderType) { in trigger()
86 switch (orderType) { in trigger()
H A Drs_actionorder.h63 RS2::ActionType orderType; variable
/dports/games/spring/spring_98.0/AI/Skirmish/KAIK/
H A DDGunController.cpp240 void CDGunController::IssueOrder(const float3& pos, int orderType, int keyMod) { in IssueOrder() argument
242 c.id = orderType; in IssueOrder()
250 if (orderType == CMD_DGUN ) { state.dgunOrderFrame = ai->cb->GetCurrentFrame(); } in IssueOrder()
251 if (orderType == CMD_RECLAIM) { state.reclaimOrderFrame = ai->cb->GetCurrentFrame(); } in IssueOrder()
252 if (orderType == CMD_CAPTURE) { state.captureOrderFrame = ai->cb->GetCurrentFrame(); } in IssueOrder()
255 void CDGunController::IssueOrder(int target, int orderType, int keyMod) { in IssueOrder() argument
257 c.id = orderType; in IssueOrder()
263 if (orderType == CMD_DGUN ) { state.dgunOrderFrame = ai->cb->GetCurrentFrame(); } in IssueOrder()
264 if (orderType == CMD_RECLAIM) { state.reclaimOrderFrame = ai->cb->GetCurrentFrame(); } in IssueOrder()
265 if (orderType == CMD_CAPTURE) { state.captureOrderFrame = ai->cb->GetCurrentFrame(); } in IssueOrder()
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/Catalogs/
H A DCatalog.h134 template <class entryType, class paramType, class orderType>
162 HierarchCatalog<entryType, paramType, orderType>(){};
166 HierarchCatalog<entryType, paramType, orderType>(const paramType *params)
173 HierarchCatalog<entryType, paramType, orderType>(const std::string &pickle) {
319 orderType etype = entry->getOrder();
418 const RDKit::INT_VECT &getEntriesOfOrder(orderType ord) { in getEntriesOfOrder()
427 const RDKit::INT_VECT &getEntriesOfOrder(orderType ord) const { in getEntriesOfOrder()
428 typename std::map<orderType, RDKit::INT_VECT>::const_iterator elem; in getEntriesOfOrder()
445 std::map<orderType, RDKit::INT_VECT> d_orderMap;
/dports/java/apache-commons-collections/commons-collections-3.2.2-src/src/java/org/apache/commons/collections/bidimap/
H A DTreeBidiMap.java1471 protected final int orderType; field in TreeBidiMap.View
1485 this.orderType = orderType; in View()
1490 return new ViewIterator(main, orderType, dataType); in iterator()
1520 protected final int orderType; field in TreeBidiMap.ViewIterator
1542 this.orderType = orderType; in ViewIterator()
1545 nextNode = leastNode(main.rootNode[orderType], orderType); in ViewIterator()
1563 nextNode = main.nextGreater(nextNode, orderType); in next()
1580 nextNode = main.nextGreater(previousNode, orderType); in previous()
1616 previousNode = TreeBidiMap.greatestNode(main.rootNode[orderType], orderType); in remove()
1638 super(main, orderType, orderType); in ViewMapIterator()
[all …]
/dports/finance/qtbitcointrader/QtBitcoinTrader-1.40.55/src/
H A Dtradesmodel.cpp130 switch (itemsList.at(currentRow).orderType) in data()
153 switch (itemsList.at(currentRow).orderType) in data()
245 switch (itemsList.at(currentRow).orderType) in data()
297 switch (itemsList.at(currentRow).orderType) in data()
421 if (itemsList.at(n).orderType == -1) in updateTotalBTC()
489 if (newItems->at(n).orderType == 0) in addNewTrades()
494 (*newItems)[n].orderType = 1; in addNewTrades()
495 else (*newItems)[n].orderType = -1; in addNewTrades()
554 return itemsList.at(row).orderType; in getRowType()
H A Dtradesitem.h58 int orderType;//-1:Bid; 0:None; 1:Ask member
/dports/net/freerdp/freerdp-2.5.0/channels/rail/
H A Drail_common.h63 UINT rail_read_pdu_header(wStream* s, UINT16* orderType, UINT16* orderLength);
64 void rail_write_pdu_header(wStream* s, UINT16 orderType, UINT16 orderLength);
73 const char* rail_get_order_type_string(UINT16 orderType);
H A Drail_common.c54 const char* rail_get_order_type_string(UINT16 orderType) in rail_get_order_type_string() argument
56 UINT32 index = ((orderType & 0xF0) >> 3) + (orderType & 0x0F); in rail_get_order_type_string()
68 UINT rail_read_pdu_header(wStream* s, UINT16* orderType, UINT16* orderLength) in rail_read_pdu_header() argument
70 if (!s || !orderType || !orderLength) in rail_read_pdu_header()
76 Stream_Read_UINT16(s, *orderType); /* orderType (2 bytes) */ in rail_read_pdu_header()
81 void rail_write_pdu_header(wStream* s, UINT16 orderType, UINT16 orderLength) in rail_write_pdu_header() argument
83 Stream_Write_UINT16(s, orderType); /* orderType (2 bytes) */ in rail_write_pdu_header()
/dports/finance/aqbanking/aqbanking-6.2.10/src/libs/plugins/backends/aqebics/requests/
H A Dr_unsecured_l.h24 const char *orderType,
30 const char *orderType,
H A Dr_unsecured.c26 const char *orderType, in EBC_Provider_MkUnsecuredRequest() argument
36 return EBC_Provider_MkUnsecuredRequest_H004(pro, u, orderType, orderAttribute, orderData); in EBC_Provider_MkUnsecuredRequest()
H A Dr_unsecured_h004.c33 const char *orderType, in EBC_Provider_MkUnsecuredRequest_H004() argument
86 EB_Msg_SetCharValue(msg, "header/static/OrderDetails/OrderType", orderType); in EBC_Provider_MkUnsecuredRequest_H004()
/dports/net/freerdp/freerdp-2.5.0/libfreerdp/core/
H A Dorders.c50 switch (orderType) in get_primary_drawing_order_field_bytes()
221 switch (orderType) in check_alt_order_supported()
271 switch (orderType) in check_secondary_order_supported()
331 switch (orderType) in check_primary_order_supported()
463 fmt = orders[orderType]; in primary_order_string()
483 fmt = orders[orderType]; in secondary_order_string()
503 fmt = orders[orderType]; in altsec_order_string()
3682 BYTE orderType; in update_recv_secondary_order() local
3722 switch (orderType) in update_recv_secondary_order()
3862 switch (orderType) in read_altsec_order()
[all …]
H A Dupdate.c884 primary->order_info.orderType = ORDER_TYPE_PATBLT; in update_reset_state()
1093 orderInfo->orderType = orderType; in update_prepare_order_info()
1586 BYTE orderType; in update_send_cache_bitmap() local
1630 BYTE orderType; in update_send_cache_bitmap_v2() local
1678 BYTE orderType; in update_send_cache_bitmap_v3() local
1685 orderType = ORDER_TYPE_BITMAP_COMPRESSED_V3; in update_send_cache_bitmap_v3()
1882 BYTE orderType; in update_send_create_offscreen_bitmap_order() local
1887 orderType = ORDER_TYPE_CREATE_OFFSCREEN_BITMAP; in update_send_create_offscreen_bitmap_order()
1888 controlFlags = ORDER_SECONDARY | (orderType << 2); in update_send_create_offscreen_bitmap_order()
1919 BYTE orderType; in update_send_switch_surface_order() local
[all …]
/dports/math/cvc4/CVC4-1.7/src/theory/arith/
H A Dnonlinear_extension.h143 int compare(Node i, Node j, unsigned orderType) const;
147 int compare_value(Node i, Node j, unsigned orderType) const;
194 static Node mkLit(Node a, Node b, int status, int orderType = 0);
235 Node get_compare_value(Node i, unsigned orderType) const;
237 unsigned orderType);
H A Dnonlinear_extension.cpp503 if (orderType == 0) { in mkLit()
516 if (orderType == 0) { in mkLit()
2523 smv.d_order_type = orderType; in assignOrderIds()
2530 unsigned order_index = (orderType == 0 || orderType == 2) ? 0 : 1; in assignOrderIds()
2580 Assert(orderType >= 0); in compare()
2581 if (orderType <= 3) { in compare()
2598 } else if (orderType == 4) { in compare()
2806 Assert(orderType >= 0 && orderType <= 3); in compare_value()
2813 } else if (orderType == 0 || orderType == 2) { in compare_value()
2837 Assert(orderType >= 0 && orderType <= 3); in get_compare_value()
[all …]
/dports/finance/qtbitcointrader/QtBitcoinTrader-1.40.55/src/exchange/
H A Dexchange_bitfinex.cpp234 QByteArray orderType = "limit"; in buy() local
237 orderType.prepend("exchange "); in buy()
243 params += "\", \"exchange\": \"all\", \"side\": \"buy\", \"type\": \"" + orderType + "\""; in buy()
262 QByteArray orderType = "limit"; in sell() local
265 orderType.prepend("exchange "); in sell()
271 params += "\", \"exchange\": \"all\", \"side\": \"sell\", \"type\": \"" + orderType + "\""; in sell()
518 newItem.orderType = getMidData("\"type\":\"", "\"", &tradeData) == "sell" ? 1 : -1; in dataReceivedAuth()
/dports/games/openra/OpenRA-release-20200503/OpenRA.Mods.Common/Orders/
H A DPlaceBuildingOrderGenerator.cs171 var orderType = "PlaceBuilding"; in InnerOrder()
177 orderType = "PlacePlug"; in InnerOrder()
197 orderType = "LineBuild"; in InnerOrder()
200 yield return new Order(orderType, owner.PlayerActor, Target.FromCell(world, topLeft), false) in InnerOrder()
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/ShoppingContent/
H A DOrdersGetByMerchantOrderIdResponse.php21 protected $orderType = 'Google_Service_ShoppingContent_Order'; variable in Google_Service_ShoppingContent_OrdersGetByMerchantOrderIdResponse
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/ShoppingContent/
H A DOrdersGetByMerchantOrderIdResponse.php21 protected $orderType = 'Google_Service_ShoppingContent_Order'; variable in Google_Service_ShoppingContent_OrdersGetByMerchantOrderIdResponse
/dports/net/freerdp/freerdp-2.5.0/channels/rail/client/
H A Drail_orders.c40 UINT rail_send_pdu(railPlugin* rail, wStream* s, UINT16 orderType) in rail_send_pdu() argument
49 rail_write_pdu_header(s, orderType, orderLength); in rail_send_pdu()
52 rail_get_order_type_string(orderType), orderLength); in rail_send_pdu()
914 UINT16 orderType; in rail_order_recv() local
921 if ((error = rail_read_pdu_header(s, &orderType, &orderLength))) in rail_order_recv()
928 rail_get_order_type_string(orderType), orderLength); in rail_order_recv()
930 switch (orderType) in rail_order_recv()
/dports/net/freerdp/freerdp-2.5.0/channels/rail/server/
H A Drail_main.c63 static UINT rail_server_send_pdu(RailServerContext* context, wStream* s, UINT16 orderType) in rail_server_send_pdu() argument
72 rail_write_pdu_header(s, orderType, orderLength); in rail_server_send_pdu()
74 WLog_DBG(TAG, "Sending %s PDU, length: %" PRIu16 "", rail_get_order_type_string(orderType), in rail_server_send_pdu()
1540 UINT16 orderType; in rail_server_handle_messages() local
1563 if ((status = rail_read_pdu_header(s, &orderType, &orderLength)) != CHANNEL_RC_OK) in rail_server_handle_messages()
1587 WLog_DBG(TAG, "Received %s PDU, length:%" PRIu16 "", rail_get_order_type_string(orderType), in rail_server_handle_messages()
1590 switch (orderType) in rail_server_handle_messages()

123