Home
last modified time | relevance | path

Searched refs:rawId (Results 1 – 25 of 251) sorted by relevance

1234567891011

/dports/math/dune-alugrid/dune-alugrid-08c6496d4d4a33df6456c3b402182f353dc2e76d/utils/convert-macrogrid/
H A Dmain.cc37 template< ElementRawID rawId >
87 if( n == BndSeg< rawId >::numVertices ) in readLegacyFormat()
89 BndSeg< rawId > seg; in readLegacyFormat()
97 Periodic< rawId > seg; in readLegacyFormat()
426 template< ElementRawID rawId >
488 template< ElementRawID rawId >
518 template< ElementRawID rawId >
543 template< ElementRawID rawId >
590 if( rawId == TETRA_RAW ) in readDGF()
619 BndSeg< rawId > bndSeg; in readDGF()
[all …]
H A Dpartition.hh174 template< ElementRawID rawId >
212 for( int i=0; i<rawId; ++i ) in orderElementHSFC()
216 center /= double( rawId ); in orderElementHSFC()
236 template< ElementRawID rawId >
288 for( int j=0; j<BndSeg< rawId >::numVertices; ++ j ) in fillNeighbors()
293 std::sort( vx, vx+BndSeg< rawId >::numVertices ); in fillNeighbors()
325 template < ElementRawID rawId >
347 template< ElementRawID rawId >
350 std::vector< BndSeg< rawId > >& bndSegs, in partition()
428 Element< rawId >& element = elements[ el ]; in partition()
[all …]
/dports/graphics/kphotoalbum/kphotoalbum-5.8.1/DB/
H A DRawId.h30 inline int toInt(const DB::RawId rawId);
32 inline unsigned int qHash(const DB::RawId rawId);
39 friend inline int ::toInt(const DB::RawId rawId);
83 inline int toInt(const DB::RawId rawId) in toInt() argument
85 Q_ASSERT(rawId != DB::RawId()); in toInt()
86 return rawId.m_value; in toInt()
89 inline unsigned int qHash(const DB::RawId rawId) in qHash() argument
91 return rawId.m_value; in qHash()
96 return (d << toInt(rawId));
108 inline int toInt(const DB::RawId rawId) in toInt() argument
[all …]
/dports/games/7kaa/7kaa-2.15.4p1/include/
H A DORAWRES.h110 void put_small_product_icon(int x, int y, int rawId);
111 void put_small_raw_icon(int x, int y, int rawId);
112 const char* product_name(int rawId);
114 char* large_product_icon(int rawId) { return res_icon.read(rawId); } in large_product_icon() argument
115 char* small_product_icon(int rawId) { return res_icon.read(MAX_RAW+rawId); } in small_product_icon() argument
116 char* large_raw_icon(int rawId) { return res_icon.read(MAX_RAW*2+rawId); } in large_raw_icon() argument
117 char* small_raw_icon(int rawId) { return res_icon.read(MAX_RAW*3+rawId); } in small_raw_icon() argument
122 RawInfo* operator[](int rawId); // pass rawId as recno
/dports/games/7kaa/7kaa-2.15.4p1/src/
H A DORAWRES.cpp241 RawInfo* RawRes::operator[](int rawId) in operator []() argument
243 err_if( rawId<1 || rawId>raw_count ) in operator []()
246 return raw_info_array+rawId-1; in operator []()
254 void RawRes::put_small_raw_icon(int x, int y, int rawId) in put_small_raw_icon() argument
256 char* bitmapPtr = res_icon.read(MAX_RAW*3+rawId); in put_small_raw_icon()
261 _(raw_res[rawId]->name) ); in put_small_raw_icon()
268 void RawRes::put_small_product_icon(int x, int y, int rawId) in put_small_product_icon() argument
270 char* bitmapPtr = res_icon.read(MAX_RAW+rawId); in put_small_product_icon()
276 str = product_name(rawId); in put_small_product_icon()
291 const char *RawRes::product_name(int rawId) in product_name() argument
[all …]
H A DOF_FACT.cpp101 int i, j, k, rawId, firmDistance; in auto_set_product() local
117 rawId = ((FirmMine*)firmPtr)->raw_id; in auto_set_product()
119 if( !rawId ) in auto_set_product()
132 ((FirmFactory*)otherFirm)->product_raw_id == rawId ) in auto_set_product()
141 product_raw_id = rawId; in auto_set_product()
162 rawId = firmMarket->market_goods_array[j].raw_id; in auto_set_product()
164 if( !rawId ) in auto_set_product()
177 ((FirmFactory*)otherFirm)->product_raw_id == rawId ) in auto_set_product()
185 product_raw_id = rawId; in auto_set_product()
193 product_raw_id = rawId; in auto_set_product()
/dports/net-im/qTox/qTox-1.17.4/src/core/
H A Dtoxid.cpp104 ToxId::ToxId(const QByteArray& rawId) in ToxId() argument
106 constructToxId(rawId); in ToxId()
120 ToxId::ToxId(const uint8_t* rawId, int len) in ToxId() argument
122 QByteArray tmpId(reinterpret_cast<const char*>(rawId), len); in ToxId()
127 void ToxId::constructToxId(const QByteArray& rawId) in constructToxId() argument
130 if (rawId.length() == TOX_SECRET_KEY_SIZE) { in constructToxId()
131 toxId = QByteArray(rawId); // construct from PK only in constructToxId()
132 } else if (rawId.length() == TOX_ADDRESS_SIZE && isToxId(rawId.toHex().toUpper())) { in constructToxId()
133 toxId = QByteArray(rawId); // construct from full toxid in constructToxId()
H A Dgroupid.cpp55 GroupId::GroupId(const QByteArray& rawId) in GroupId() argument
56 : ContactId([rawId](){ in GroupId()
57 assert(rawId.length() == TOX_CONFERENCE_UID_SIZE); in GroupId()
58 return rawId;}()) in GroupId()
67 GroupId::GroupId(const uint8_t* rawId) in GroupId() argument
68 : ContactId(QByteArray(reinterpret_cast<const char*>(rawId), TOX_CONFERENCE_UID_SIZE)) in GroupId()
H A Dtoxpk.cpp56 ToxPk::ToxPk(const QByteArray& rawId) in ToxPk() argument
57 : ContactId([rawId](){ in ToxPk()
58 assert(rawId.length() == TOX_PUBLIC_KEY_SIZE); in ToxPk()
59 return rawId;}()) in ToxPk()
68 ToxPk::ToxPk(const uint8_t* rawId) in ToxPk() argument
69 : ContactId(QByteArray(reinterpret_cast<const char*>(rawId), TOX_PUBLIC_KEY_SIZE)) in ToxPk()
H A Dtoxid.h36 explicit ToxId(const QByteArray& rawId);
37 explicit ToxId(const uint8_t* rawId, int len);
55 void constructToxId(const QByteArray& rawId);
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objtools/import/
H A Did_resolver_canonical.cpp60 const string& rawId) const in operator ()()
64 auto decoded = NStr::URLDecode(rawId, NStr::eUrlDec_Percent); in operator ()()
68 bool isNumeric = (rawId.find_first_not_of("1234567890") == string::npos); in operator ()()
73 NStr::StringToInt(rawId) < NUMERIC_TO_LOCAL_LIMIT) { in operator ()()
78 pResolvedId.Reset(new CSeq_id(CSeq_id::e_Local, rawId)); in operator ()()
82 pResolvedId.Reset(new CSeq_id(rawId)); in operator ()()
87 pResolvedId.Reset(new CSeq_id(CSeq_id::e_Local, rawId)); in operator ()()
/dports/security/nextcloud-twofactor_webauthn/twofactor_webauthn/vendor/web-auth/webauthn-lib/src/
H A DPublicKeyCredential.php26 protected $rawId; variable in Webauthn\\PublicKeyCredential
33 …public function __construct(string $id, string $type, string $rawId, AuthenticatorResponse $respon… argument
36 $this->rawId = $rawId;
47 return $this->rawId;
/dports/www/nextcloud/nextcloud/3rdparty/web-auth/webauthn-lib/src/
H A DPublicKeyCredential.php26 protected $rawId; variable in Webauthn\\PublicKeyCredential
33 …public function __construct(string $id, string $type, string $rawId, AuthenticatorResponse $respon… argument
36 $this->rawId = $rawId;
47 return $this->rawId;
/dports/sysutils/ldap-account-manager/ldap-account-manager-7.3/lib/3rdParty/composer/web-auth/webauthn-lib/src/
H A DPublicKeyCredential.php26 protected $rawId; variable in Webauthn\\PublicKeyCredential
33 …public function __construct(string $id, string $type, string $rawId, AuthenticatorResponse $respon… argument
36 $this->rawId = $rawId;
42 return $this->rawId;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/IdentityToolkit/
H A DUserInfoProviderUserInfo.php26 public $rawId; variable in Google_Service_IdentityToolkit_UserInfoProviderUserInfo
77 public function setRawId($rawId) argument
79 $this->rawId = $rawId;
83 return $this->rawId;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/IdentityToolkit/
H A DUserInfoProviderUserInfo.php26 public $rawId; variable in Google_Service_IdentityToolkit_UserInfoProviderUserInfo
77 public function setRawId($rawId) argument
79 $this->rawId = $rawId;
83 return $this->rawId;
/dports/misc/usd/USD-21.11/pxr/usd/sdf/
H A Didentity.cpp85 auto TryAcquire = [](Sdf_Identity *rawId) { in Identify() argument
90 if (rawId->_refCount++ > 0) { in Identify()
104 --rawId->_refCount; in Identify()
126 Sdf_Identity *rawId = i->second; in Identify() local
127 if (TryAcquire(rawId)) { in Identify()
128 Sdf_IdentityRefPtr ret(rawId, /* add_ref = */ false); in Identify()
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/fullcalendar/fullcalendar/src/models/event/
H A DEventDef.ts20 rawId: any // unnormalized supplied ID property in EventDef
78 copy.rawId = this.rawId
172 if (this.rawId != null) {
173 obj.id = this.rawId
185 this.id = EventDef.normalizeId((this.rawId = rawProps.id))
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/Auth/
H A DState.php150 * @param bool $rawId Return a raw ID, without a restart URL. Defaults to FALSE.
154 public static function getStateId(&$state, $rawId = false) argument
157 assert(is_bool($rawId));
165 if ($rawId || !array_key_exists(self::RESTART, $state)) {
199 * @param bool $rawId Return a raw ID, without a restart URL.
203 public static function saveState(&$state, $stage, $rawId = false) argument
207 assert(is_bool($rawId));
209 $return = self::getStateId($state, $rawId);
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/Auth/
H A DState.php141 * @param bool $rawId Return a raw ID, without a restart URL. Defaults to FALSE.
145 public static function getStateId(&$state, $rawId = false) argument
148 assert(is_bool($rawId));
156 if ($rawId || !array_key_exists(self::RESTART, $state)) {
190 * @param bool $rawId Return a raw ID, without a restart URL.
194 public static function saveState(&$state, $stage, $rawId = false) argument
198 assert(is_bool($rawId));
200 $return = self::getStateId($state, $rawId);
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/IO/
H A DMapReader.cpp150 const long rawId = std::atol(idStr.c_str()); in createLayer() local
151 if (rawId <= 0) { in createLayer()
157 const Model::IdType layerId = static_cast<Model::IdType>(rawId); in createLayer()
189 const long rawId = std::atol(idStr.c_str()); in createGroup() local
190 if (rawId <= 0) { in createGroup()
196 const Model::IdType groupId = static_cast<Model::IdType>(rawId); in createGroup()
247 const long rawId = std::atol(layerIdStr.c_str()); in storeNode() local
248 if (rawId > 0) { in storeNode()
249 const Model::IdType layerId = static_cast<Model::IdType>(rawId); in storeNode()
263 const long rawId = std::atol(groupIdStr.c_str()); in storeNode() local
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objtools/readers/
H A Dread_util.cpp95 string rawId(NStr::URLDecode(givenId, NStr::eUrlDec_Percent)); in AsSeqId() local
100 if (string::npos == rawId.find_first_not_of("0987654321") && in AsSeqId()
105 pId->SetLocal().SetId(NStr::StringToInt(rawId)); in AsSeqId()
110 pId->SetLocal().SetStr(rawId); in AsSeqId()
115 CRef<CSeq_id> pId(new CSeq_id(rawId)); in AsSeqId()
117 pId.Reset(new CSeq_id(CSeq_id::e_Local, rawId)); in AsSeqId()
125 pId->SetLocal().SetStr(rawId); in AsSeqId()
128 pId->SetLocal().SetId(NStr::StringToInt(rawId)); in AsSeqId()
137 return CRef<CSeq_id>(new CSeq_id(CSeq_id::e_Local, rawId)); in AsSeqId()
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/objtools/readers/
H A Dread_util.cpp95 string rawId(NStr::URLDecode(givenId, NStr::eUrlDec_Percent)); in AsSeqId() local
100 if (string::npos == rawId.find_first_not_of("0987654321") && in AsSeqId()
105 pId->SetLocal().SetId(NStr::StringToInt(rawId)); in AsSeqId()
110 pId->SetLocal().SetStr(rawId); in AsSeqId()
115 CRef<CSeq_id> pId(new CSeq_id(rawId)); in AsSeqId()
117 pId.Reset(new CSeq_id(CSeq_id::e_Local, rawId)); in AsSeqId()
125 pId->SetLocal().SetStr(rawId); in AsSeqId()
128 pId->SetLocal().SetId(NStr::StringToInt(rawId)); in AsSeqId()
137 return CRef<CSeq_id>(new CSeq_id(CSeq_id::e_Local, rawId)); in AsSeqId()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/debugger/
H A Ddebuggerkitinformation.cpp166 const QVariant rawId = k->value(DebuggerKitAspect::id()); in setup() local
181 if (rawId.isNull()) { in setup()
194 } else if (rawId.type() == QVariant::String) { in setup()
196 if (item.id() == rawId) { in setup()
206 const QMap<QString, QVariant> map = rawId.toMap(); in setup()
260 const QVariant rawId = k->value(DebuggerKitAspect::id()); in fix() local
262 if (rawId.isNull()) // No debugger set, that is fine. in fix()
265 if (rawId.type() == QVariant::String) { in fix()
266 if (!DebuggerItemManager::findById(rawId)) { in fix()
268 qPrintable(rawId.toString()), qPrintable(k->displayName())); in fix()
[all …]
/dports/math/pdal/PDAL-2.3.0/pdal/
H A DPointView.cpp83 PointId rawId = m_pointTable.addPoint(); in tableId() local
84 m_index.push_back(rawId); in tableId()
87 return rawId; in tableId()
96 PointId rawId = 0; in setFieldInternal() local
99 rawId = m_pointTable.addPoint(); in setFieldInternal()
100 m_index.push_back(rawId); in setFieldInternal()
112 rawId = m_index[idx]; in setFieldInternal()
114 m_pointTable.setFieldInternal(dim, rawId, buf); in setFieldInternal()

1234567891011