Home
last modified time | relevance | path

Searched refs:resType (Results 1 – 25 of 1067) sorted by relevance

12345678910>>...43

/dports/games/opendungeons/OpenDungeons-0.7.1/source/game/
H A DSkillManager.cpp257 SkillType resType; in SkillManager() local
308 resType = SkillType::roomPrison; in SkillManager()
327 resType = SkillType::roomArena; in SkillManager()
336 resType = SkillType::roomCasino; in SkillManager()
345 resType = SkillType::roomTorture; in SkillManager()
360 resType = SkillType::roomTreasury; in SkillManager()
404 resType = SkillType::trapCannon; in SkillManager()
413 resType = SkillType::trapSpike; in SkillManager()
423 resType = SkillType::trapBoulder; in SkillManager()
438 resType = SkillType::roomLibrary; in SkillManager()
[all …]
/dports/security/lego/lego-4.5.3/vendor/github.com/ovh/go-ovh/ovh/
H A Dovh.go139 return c.CallAPI("GET", url, nil, resType, true)
144 return c.CallAPI("GET", url, nil, resType, false)
149 return c.CallAPI("POST", url, reqBody, resType, true)
154 return c.CallAPI("POST", url, reqBody, resType, false)
159 return c.CallAPI("PUT", url, reqBody, resType, true)
164 return c.CallAPI("PUT", url, reqBody, resType, false)
169 return c.CallAPI("DELETE", url, nil, resType, true)
174 return c.CallAPI("DELETE", url, nil, resType, false)
391 return c.UnmarshalResponse(response, resType)
416 if len(body) == 0 || resType == nil {
[all …]
/dports/net/traefik/traefik-2.6.1/vendor/github.com/ovh/go-ovh/ovh/
H A Dovh.go139 return c.CallAPI("GET", url, nil, resType, true)
144 return c.CallAPI("GET", url, nil, resType, false)
149 return c.CallAPI("POST", url, reqBody, resType, true)
154 return c.CallAPI("POST", url, reqBody, resType, false)
159 return c.CallAPI("PUT", url, reqBody, resType, true)
164 return c.CallAPI("PUT", url, reqBody, resType, false)
169 return c.CallAPI("DELETE", url, nil, resType, true)
174 return c.CallAPI("DELETE", url, nil, resType, false)
391 return c.UnmarshalResponse(response, resType)
416 if len(body) == 0 || resType == nil {
[all …]
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/HexEditor/
H A DExpressionParser.h77 typedef Operation::modifier resType; typedef
79 static const resType resNone = Operation::modNone;
87 resType m_OutType; ///< \brief Produced type
158 resType producedType,
159 resType argumentsType,
211 inline void ConstArg( T value, resType type );
229 inline resType TopType( int pos );
232 inline resType HigherType2Top();
235 inline resType TopAfterNeg();
238 inline resType ModResult2Top();
[all …]
H A DExpressionParser.cpp36 const Parser::resType Parser::resNone;
37 const Parser::resType Parser::resSignedInt;
38 const Parser::resType Parser::resUnsignedInt;
39 const Parser::resType Parser::resFloat;
379 resType result = resNone; in Memory()
476 inline Parser::resType Parser::HigherType2Top() in HigherType2Top()
481 inline Parser::resType Parser::TopAfterNeg() in TopAfterNeg()
486 inline Parser::resType Parser::ModResult2Top() in ModResult2Top()
488 resType t1 = TopType(0); in ModResult2Top()
489 resType t2 = TopType(1); in ModResult2Top()
[all …]
/dports/print/py-fonttools/fonttools-4.28.2/Lib/fontTools/misc/
H A DmacRes.py116 res = Resource(resType)
121 def __getitem__(self, resType): argument
122 return self._resources[resType]
124 def __delitem__(self, resType): argument
125 del self._resources[resType]
144 def countResources(self, resType): argument
147 return len(self[resType])
151 def getIndices(self, resType): argument
159 def getNames(self, resType): argument
170 res = self[resType][index-1]
[all …]
/dports/print/py-fonttools3/fonttools-3.44.0/Lib/fontTools/misc/
H A DmacRes.py103 res = Resource(resType)
108 def __getitem__(self, resType): argument
109 return self._resources[resType]
111 def __delitem__(self, resType): argument
112 del self._resources[resType]
130 def countResources(self, resType): argument
133 return len(self[resType])
137 def getIndices(self, resType): argument
144 def getNames(self, resType): argument
155 res = self[resType][index-1]
[all …]
/dports/devel/awless/awless-0.1.11/commands/
H A Dlist.go60 resources = append(resources, resType)
63 for _, resType := range resources {
64 listCmd.AddCommand(listSpecificResourceCmd(resType))
89 var listSpecificResourceCmd = func(resType string) *cobra.Command {
91 Use: cloud.PluralizeResource(resType),
92 …ces.ServicePerResourceType[resType], strings.ToUpper(awsservices.APIPerResourceType[resType]), clo…
113 if srvName, ok := awsservices.ServicePerResourceType[resType]; ok {
119 srv, err := cloud.GetServiceForType(resType)
126 printResources(g, resType)
150 func printResources(g cloud.GraphAPI, resType string) {
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/android/java/src/org/chromium/ui/resources/
H A DResourceManager.java127 SparseArray<LayoutResource> bucket = mLoadedResources.get(resType); in getResource()
138 saveMetadataForLoadedResource(resType, resId, resource); in onResourceLoaded()
143 resType, resId, bitmap, resource.getBitmapSize().width(), in onResourceLoaded()
150 if (resType != AndroidResourceType.DYNAMIC_BITMAP in onResourceUnregistered()
151 && resType != AndroidResourceType.DYNAMIC) { in onResourceUnregistered()
172 SparseArray<LayoutResource> bucket = mLoadedResources.get(resType); in saveMetadataForLoadedResource()
175 mLoadedResources.put(resType, bucket); in saveMetadataForLoadedResource()
187 private void resourceRequested(int resType, int resId) { in resourceRequested() argument
188 ResourceLoader loader = mResourceLoaders.get(resType); in resourceRequested()
193 private void preloadResource(int resType, int resId) { in preloadResource() argument
[all …]
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/pdb2pqr/propka30/Source/
H A Dversion.py413 if resType == None:
423 key = resType
446 key1 = resType
577 if (residue1.resType == "COO" and residue2.resType == "TYR") or \
578 (residue2.resType == "COO" and residue1.resType == "TYR"):
693 if (residue1.resType == "COO" and residue2.resType == "TYR") or \
694 (residue2.resType == "COO" and residue1.resType == "TYR"):
782 if (residue1.resType == "COO" and residue2.resType == "TYR") or \
783 (residue2.resType == "COO" and residue1.resType == "TYR"):
1289 if (residue1.resType == "COO" and residue2.resType == "TYR") or \
[all …]
/dports/graphics/p5-Image-ExifTool-devel/Image-ExifTool-12.14/lib/Image/ExifTool/
H A DRSRC.pm104 my $resType = substr($map,$off,4); # resource type
116 my $tagInfo = $$tagTablePtr{$resType};
118 $tag = $resType;
138 $resType, $id, $resOff, $resName));
142 if ($resType eq 'vers') {
152 } elsif ($resType eq 'sfnt') {
163 } elsif ($resType eq '8BIM') {
173 } elsif ($resType eq 'STR ' and $valLen > 1) {
178 } elsif ($resType eq 'usro' and $valLen > 4) {
196 } elsif ($resType eq 'POST') {
[all …]
/dports/graphics/p5-Image-ExifTool/Image-ExifTool-12.30/lib/Image/ExifTool/
H A DRSRC.pm104 my $resType = substr($map,$off,4); # resource type
116 my $tagInfo = $$tagTablePtr{$resType};
118 $tag = $resType;
138 $resType, $id, $resOff, $resName));
142 if ($resType eq 'vers') {
152 } elsif ($resType eq 'sfnt') {
163 } elsif ($resType eq '8BIM') {
173 } elsif ($resType eq 'STR ' and $valLen > 1) {
178 } elsif ($resType eq 'usro' and $valLen > 4) {
196 } elsif ($resType eq 'POST') {
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/tconverter/
H A Dtconverter.cpp309 resType = TRop::Triangle; in convert()
311 resType = TRop::Hann2; in convert()
313 resType = TRop::Hamming3; in convert()
315 resType = TRop::Triangle; in convert()
317 resType = TRop::Mitchell; in convert()
319 resType = TRop::Cubic5; in convert()
321 resType = TRop::Cubic75; in convert()
323 resType = TRop::Cubic1; in convert()
325 resType = TRop::Hann2; in convert()
327 resType = TRop::Hann3; in convert()
[all …]
/dports/graphics/krita/krita-4.4.8/libs/ui/
H A DKisResourceBundle.cpp294 if (resType == "ko_gradients") { in save()
309 else if (resType == "ko_patterns") { in save()
324 else if (resType == "kis_brushes") { in save()
464 if (resType == "gradients") { in install()
510 else if (resType == "patterns") { in install()
553 else if (resType == "brushes") { in install()
605 else if (resType == "palettes") { in install()
1012 if (resType == "gradients") { in resources()
1017 else if (resType == "patterns") { in resources()
1022 else if (resType == "brushes") { in resources()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Design/System.Resources.Tools/
H A DStronglyTypedResourceBuilder.cs225 nsMain.Types.Add (resType); in GenerateCodeDOMBase()
227 GenerateFields (resType); in GenerateCodeDOMBase()
229 resType.Members.Add (GenerateConstructor ()); in GenerateCodeDOMBase()
233 resType.Members.Add (GenerateCultureProp (internalClass)); in GenerateCodeDOMBase()
278 resType.IsClass = true; in GenerateBaseType()
281 resType.TypeAttributes = TypeAttributes.NotPublic; in GenerateBaseType()
283 resType.TypeAttributes = TypeAttributes.Public; in GenerateBaseType()
301 return resType; in GenerateBaseType()
303 static void GenerateFields (CodeTypeDeclaration resType) in GenerateFields() argument
313 resType.Members.Add (resourceManField); in GenerateFields()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Dialect/SparseTensor/Transforms/
H A DSparseTensorConversion.cpp123 Type resType = op.getType(); in matchAndRewrite() local
126 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
138 Type resType = op.getType(); in matchAndRewrite() local
139 Type eltType = resType.cast<ShapedType>().getElementType(); in matchAndRewrite()
143 auto enc = getSparseTensorEncoding(resType); in matchAndRewrite()
211 Type resType = op.getType(); in matchAndRewrite() local
227 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
239 Type resType = op.getType(); in matchAndRewrite() local
255 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
267 Type resType = op.getType(); in matchAndRewrite() local
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/Dialect/SparseTensor/Transforms/
H A DSparseTensorConversion.cpp123 Type resType = op.getType(); in matchAndRewrite() local
126 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
138 Type resType = op.getType(); in matchAndRewrite() local
139 Type eltType = resType.cast<ShapedType>().getElementType(); in matchAndRewrite()
143 auto enc = getSparseTensorEncoding(resType); in matchAndRewrite()
211 Type resType = op.getType(); in matchAndRewrite() local
227 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
239 Type resType = op.getType(); in matchAndRewrite() local
255 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
267 Type resType = op.getType(); in matchAndRewrite() local
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/Dialect/SparseTensor/Transforms/
H A DSparseTensorConversion.cpp123 Type resType = op.getType(); in matchAndRewrite() local
126 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
138 Type resType = op.getType(); in matchAndRewrite() local
139 Type eltType = resType.cast<ShapedType>().getElementType(); in matchAndRewrite()
143 auto enc = getSparseTensorEncoding(resType); in matchAndRewrite()
211 Type resType = op.getType(); in matchAndRewrite() local
227 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
239 Type resType = op.getType(); in matchAndRewrite() local
255 op, resType, getFunc(op, name, resType, operands), operands); in matchAndRewrite()
267 Type resType = op.getType(); in matchAndRewrite() local
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/contrib.go.opencensus.io/exporter/stackdriver/monitoredresource/
H A Dmonitored_resources_test.go48 resType, labels := autoDetected.MonitoredResource()
49 if resType != "gke_container" ||
78 resType, labels := autoDetected.MonitoredResource()
79 if resType != "k8s_container" ||
102 resType, labels := autoDetected.MonitoredResource()
103 if resType != "gce_instance" ||
125 resType, labels := autoDetected.MonitoredResource()
126 if resType != "aws_ec2_instance" ||
/dports/math/scilab/scilab-6.1.1/scilab/modules/ast/src/cpp/analysis/
H A DLengthAnalyzer.cpp42 TIType & resType = res.getType(); in analyze() local
43 if (!resType.ismatrix() || resType.type == TIType::STRING) in analyze()
49 SymbolicDimension prod = resType.rows * resType.cols; in analyze()
53 e.getDecorator().setCall(L"length", resType); in analyze()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/utils/convertrc/
H A Dwxr2xml.cpp72 wxString resType(res->GetType()); in ParseResources() local
73 if (resType == _T("wxDialog")) in ParseResources()
75 else if (resType == _T("wxPanel")) in ParseResources()
77 else if (resType == _T("wxPanel")) in ParseResources()
79 else if (resType == _T("wxMenu")) in ParseResources()
81 else if (resType == _T("wxBitmap")) in ParseResources()
118 wxString resType(res->GetType()); in ParseControls() local
119 if (resType == _T("wxButton")) in ParseControls()
121 else if ((resType == _T("wxTextCtrl")) | (resType == _T("wxText")) in ParseControls()
130 else if ((resType == _T("wxStaticText")) | (resType == _T("wxMessage"))) in ParseControls()
[all …]
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/utils/convertrc/
H A Dwxr2xml.cpp72 wxString resType(res->GetType()); in ParseResources() local
73 if (resType == _T("wxDialog")) in ParseResources()
75 else if (resType == _T("wxPanel")) in ParseResources()
77 else if (resType == _T("wxPanel")) in ParseResources()
79 else if (resType == _T("wxMenu")) in ParseResources()
81 else if (resType == _T("wxBitmap")) in ParseResources()
118 wxString resType(res->GetType()); in ParseControls() local
119 if (resType == _T("wxButton")) in ParseControls()
121 else if ((resType == _T("wxTextCtrl")) | (resType == _T("wxText")) in ParseControls()
130 else if ((resType == _T("wxStaticText")) | (resType == _T("wxMessage"))) in ParseControls()
[all …]
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/contrib/utils/convertrc/
H A Dwxr2xml.cpp72 wxString resType(res->GetType()); in ParseResources() local
73 if (resType == _T("wxDialog")) in ParseResources()
75 else if (resType == _T("wxPanel")) in ParseResources()
77 else if (resType == _T("wxPanel")) in ParseResources()
79 else if (resType == _T("wxMenu")) in ParseResources()
81 else if (resType == _T("wxBitmap")) in ParseResources()
118 wxString resType(res->GetType()); in ParseControls() local
119 if (resType == _T("wxButton")) in ParseControls()
121 else if ((resType == _T("wxTextCtrl")) | (resType == _T("wxText")) in ParseControls()
130 else if ((resType == _T("wxStaticText")) | (resType == _T("wxMessage"))) in ParseControls()
[all …]
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/contrib/utils/convertrc/
H A Dwxr2xml.cpp72 wxString resType(res->GetType()); in ParseResources() local
73 if (resType == _T("wxDialog")) in ParseResources()
75 else if (resType == _T("wxPanel")) in ParseResources()
77 else if (resType == _T("wxPanel")) in ParseResources()
79 else if (resType == _T("wxMenu")) in ParseResources()
81 else if (resType == _T("wxBitmap")) in ParseResources()
118 wxString resType(res->GetType()); in ParseControls() local
119 if (resType == _T("wxButton")) in ParseControls()
121 else if ((resType == _T("wxTextCtrl")) | (resType == _T("wxText")) in ParseControls()
130 else if ((resType == _T("wxStaticText")) | (resType == _T("wxMessage"))) in ParseControls()
[all …]
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/metrics2/lib/
H A DMethodMetric.java55 Class<?> resType = method.getReturnType(); in newImpl() local
58 return newCounter(resType); in newImpl()
60 return newGauge(resType); in newImpl()
62 return resType == String.class ? newTag(resType) : newGauge(resType); in newImpl()
64 return newTag(resType); in newImpl()
126 MutableMetric newTag(Class<?> resType) {
127 if (resType == String.class) {
140 throw new MetricsException("Unsupported tag type: "+ resType.getName());

12345678910>>...43