Searched refs:sourceCollection (Results 1 – 2 of 2) sorted by relevance
483 Collection sourceCollection = (Collection) source; in protectCollection() local484 Collection<Object> resultCollection = clone(sourceCollection); in protectCollection()485 if (resultCollection == null) return (T) sourceCollection; // failed in protectCollection()488 for (Object item : sourceCollection) { in protectCollection()492 …return sourceCollection instanceof List ? (T) Collections.unmodifiableList((List) sourceCollection) in protectCollection()493 : sourceCollection instanceof SortedSet ? (T) Collections in protectCollection()494 .unmodifiableSortedSet((SortedSet) sourceCollection) in protectCollection()495 … : sourceCollection instanceof Set ? (T) Collections.unmodifiableSet((Set) sourceCollection) in protectCollection()496 : (T) Collections.unmodifiableCollection(sourceCollection); in protectCollection()529 Collection sourceCollection = (Collection) source; in protectCollectionX() local[all …]
1691 void ShaderCase::initPrograms (SourceCollections& sourceCollection) const in initPrograms()1732 …vk::GlslSource& curSrc = sourceCollection.glslSources.add(getShaderName((glu::ShaderType)shaderTyp… in initPrograms()