/dports/print/scribus-devel/scribus-1.5.7/codegen/fromrelaxng/ |
H A D | parserng.py | 18 def parsePattern(self, pattern, isOptional, isCollection): argument 29 newProp = Property(pattern, isOptional, isCollection) 37 self.parsePatterns(pattern.getchildren(), isOptional, isCollection) 43 self.currentClass.properties.append(Property(pattern, isOptional, isCollection)) 46 self.parsePatterns(pattern.getchildren(), isOptional, isCollection) 48 self.parsePatterns(pattern.getchildren(), isOptional, isCollection) 50 self.parsePatterns(pattern.getchildren(), True, isCollection) 52 self.parsePatterns(pattern.getchildren(), True, isCollection) 60 self.parsePatterns(pattern.getchildren(), isOptional, isCollection) 89 def parsePatterns(self, patterns, isOptional, isCollection): argument [all …]
|
/dports/devel/py-buildbot/buildbot-3.4.1/buildbot/test/fake/ |
H A D | endpoint.py | 41 isCollection = True variable in TestsEndpoint 54 isCollection = False variable in RawTestsEndpoint 67 isCollection = False variable in FailEndpoint 75 isCollection = False variable in TestEndpoint 93 isCollection = True variable in StepsEndpoint 103 isCollection = False variable in StepEndpoint
|
/dports/devel/spark/spark-2.1.1/sql/hive-thriftserver/src/main/java/org/apache/hive/service/cli/ |
H A D | Type.java | 111 private final boolean isCollection; field in Type 113 …me, int javaSQLType, TTypeId tType, boolean isQualified, boolean isComplex, boolean isCollection) { in Type() argument 119 this.isCollection = isCollection; in Type() 122 Type(String name, int javaSQLType, TTypeId tType, boolean isComplex, boolean isCollection) { in Type() argument 123 this(name, javaSQLType, tType, false, isComplex, isCollection); in Type() 143 return isCollection; in isCollectionType()
|
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/friendsofsymfony/rest-bundle/Routing/Loader/Reader/ |
H A D | RestActionReader.php | 268 list($httpMethod, $resources, $isCollection, $isInflectable) = $httpMethodAndResources; 343 … $this->addRoute($collection, $routeName, $route, $isCollection, $isInflectable, $annotation); 359 $this->addRoute($collection, $routeName, $route, $isCollection, $isInflectable); 483 $isCollection = false; 489 $isCollection = true; 492 $isCollection = true; 495 if ($isCollection && !empty($resource)) { 503 return [$httpMethod, $resources, $isCollection, $isInflectable]; 749 * @param bool $isCollection 753 …private function addRoute(RestRouteCollection $collection, $routeName, $route, $isCollection, $isI… argument [all …]
|
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/ |
H A D | TypeUseFactory.java | 48 …return new TypeUseImpl( t.getInfo(), t.isCollection(), id, t.getExpectedMimeType(), t.getAdapterUs… in makeID() 56 return new TypeUseImpl( t.getInfo(), t.isCollection(), t.idUse(), mt, t.getAdapterUse() ); in makeMimeTyped() 60 if(t.isCollection()) return t; in makeCollection() 73 … return new TypeUseImpl(t.getInfo(),t.isCollection(),t.idUse(),t.getExpectedMimeType(),adapter); in adapt()
|
H A D | CPropertyInfo.java | 63 private final boolean isCollection; field in CPropertyInfo 121 this.isCollection = collection; in CPropertyInfo() 225 public boolean isCollection() { in isCollection() method in CPropertyInfo 226 return isCollection; in isCollection() 307 if(type.isCollection()) in needsExplicitTypeName()
|
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/ |
H A D | TypeUseFactory.java | 48 …return new TypeUseImpl( t.getInfo(), t.isCollection(), id, t.getExpectedMimeType(), t.getAdapterUs… in makeID() 56 return new TypeUseImpl( t.getInfo(), t.isCollection(), t.idUse(), mt, t.getAdapterUse() ); in makeMimeTyped() 60 if(t.isCollection()) return t; in makeCollection() 73 … return new TypeUseImpl(t.getInfo(),t.isCollection(),t.idUse(),t.getExpectedMimeType(),adapter); in adapt()
|
H A D | CPropertyInfo.java | 63 private final boolean isCollection; field in CPropertyInfo 121 this.isCollection = collection; in CPropertyInfo() 225 public boolean isCollection() { in isCollection() method in CPropertyInfo 226 return isCollection; in isCollection() 307 if(type.isCollection()) in needsExplicitTypeName()
|
/dports/www/nextcloud/nextcloud/lib/private/Accounts/ |
H A D | Account.php | 52 if ($this->isCollection($property)) { 60 if ($this->isCollection($property)) { 98 if ($this->isCollection($index)) { 121 if (!$this->isCollection($propertyCollectionName)) {
|
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/ |
H A D | TypeAndAnnotationImpl.java | 68 if(!typeUse.isCollection() && prim!=null) in getTypeClass() 71 if(typeUse.isCollection()) in getTypeClass() 78 if(typeUse.getAdapterUse()==null && !typeUse.isCollection()) in annotate() 93 if(typeUse.isCollection()) in annotate()
|
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/ |
H A D | TypeAndAnnotationImpl.java | 68 if(!typeUse.isCollection() && prim!=null) in getTypeClass() 71 if(typeUse.isCollection()) in getTypeClass() 78 if(typeUse.getAdapterUse()==null && !typeUse.isCollection()) in annotate() 93 if(typeUse.isCollection()) in annotate()
|
/dports/astro/py-ro/RO-3.6.9/python/RO/ |
H A D | SeqUtil.py | 41 if isCollection(item): 69 if isCollection(item): 98 def isCollection(item): function 200 isCollection: (
|
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/core/convert/ |
H A D | AbstractDescriptor.java | 45 if (isCollection()) { in getElementTypeDescriptor() 79 if (isCollection()) { in nested() 116 private boolean isCollection() { in isCollection() method in AbstractDescriptor
|
H A D | TypeDescriptor.java | 306 else if (isCollection() && typeDescriptor.isCollection()) { in isAssignableTo() 323 public boolean isCollection() { in isCollection() method in TypeDescriptor 507 if (!isCollection() && !isArray()) { in assertCollectionOrArray() 559 if (isCollection() || isArray()) { in equals() 586 else if (isCollection()) { in toString()
|
/dports/devel/py-buildbot/buildbot-3.4.1/buildbot/data/ |
H A D | base.py | 64 if not ep.isCollection: 71 if ep.isCollection or ep.isPseudoCollection: 94 if endpoint.isCollection: 103 isCollection = False variable in Endpoint 139 if self.isCollection or self.isPseudoCollection:
|
H A D | build_data.py | 38 isCollection = True variable in BuildDatasNoValueEndpoint 59 isCollection = False variable in BuildDataNoValueEndpoint 78 isCollection = False variable in BuildDataEndpoint
|
/dports/net-mgmt/prometheus1/prometheus-1.8.2/vendor/github.com/emicklei/go-restful/swagger/ |
H A D | swagger_webservice.go | 292 isCollection, st := detectCollectionType(st) 294 if isCollection { 317 isCollection := false 320 isCollection = true 325 isCollection = true 329 return isCollection, st 417 isCollection, st := detectCollectionType(st) 420 if !isCollection {
|
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ |
H A D | ElementInfoImpl.java | 107 private final boolean isCollection; field in ElementInfoImpl 177 public boolean isCollection() { in isCollection() method in ElementInfoImpl.PropertyImpl 178 return isCollection; in isCollection() 185 return isCollection; in isValueList() 281 isCollection = false; in ElementInfoImpl() 284 isCollection = true; in ElementInfoImpl() 290 isCollection = false; in ElementInfoImpl()
|
H A D | ElementPropertyInfoImpl.java | 118 if(!nav().isPrimitive(t) || isCollection()) in getTypes() 121 types.add(createTypeRef(calcXmlName((XmlElement)null),t,isCollection(),null)); in getTypes() 129 if((!nav().isPrimitive(type) || isCollection()) && !item.required()) in getTypes() 195 if(!isCollection()) in link()
|
H A D | PropertyInfoImpl.java | 71 private final boolean isCollection; field in PropertyInfoImpl 113 isCollection = false; in PropertyInfoImpl() 118 this.isCollection = nav().isSubClassOf(t, nav().ref(Collection.class)) in PropertyInfoImpl() 173 if(!isCollection()) { in getIndividualType() 283 public final boolean isCollection() { in isCollection() method in PropertyInfoImpl 284 return isCollection; in isCollection()
|
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ |
H A D | ElementInfoImpl.java | 107 private final boolean isCollection; field in ElementInfoImpl 177 public boolean isCollection() { in isCollection() method in ElementInfoImpl.PropertyImpl 178 return isCollection; in isCollection() 185 return isCollection; in isValueList() 281 isCollection = false; in ElementInfoImpl() 284 isCollection = true; in ElementInfoImpl() 290 isCollection = false; in ElementInfoImpl()
|
H A D | ElementPropertyInfoImpl.java | 118 if(!nav().isPrimitive(t) || isCollection()) in getTypes() 121 types.add(createTypeRef(calcXmlName((XmlElement)null),t,isCollection(),null)); in getTypes() 129 if((!nav().isPrimitive(type) || isCollection()) && !item.required()) in getTypes() 195 if(!isCollection()) in link()
|
H A D | PropertyInfoImpl.java | 71 private final boolean isCollection; field in PropertyInfoImpl 113 isCollection = false; in PropertyInfoImpl() 118 this.isCollection = nav().isSubClassOf(t, nav().ref(Collection.class)) in PropertyInfoImpl() 173 if(!isCollection()) { in getIndividualType() 283 public final boolean isCollection() { in isCollection() method in PropertyInfoImpl 284 return isCollection; in isCollection()
|
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/test/java/org/springframework/core/convert/ |
H A D | TypeDescriptorTests.java | 72 assertFalse(desc.isCollection()); in parameterPrimitive() 89 assertFalse(desc.isCollection()); in parameterScalar() 108 assertTrue(desc.isCollection()); in parameterList() 133 assertTrue(desc.isCollection()); in parameterListNoParamTypes() 153 assertFalse(desc.isCollection()); in parameterArray() 174 assertFalse(desc.isCollection()); in parameterMap() 497 assertTrue(typeDescriptor.isCollection()); in valueOfCollection() 619 assertTrue(desc.isCollection()); in collection() 635 assertTrue(desc.isCollection()); in collectionNested() 651 assertFalse(desc.isCollection()); in map() [all …]
|
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.e4.emf.xpath/src/org/eclipse/e4/emf/internal/xpath/ |
H A D | EObjectPropertyPointer.java | 151 || isCollection()) { in setIndex() 189 public boolean isCollection() { in isCollection() method in EObjectPropertyPointer 213 return value != null && ValueUtils.isCollection(value); in isCollection() 283 else if (isCollection()) { in remove()
|