Lines Matching defs:isArray
600 int numInstances = block.isArray() ? block.getArraySize() : 1;
616 if (block.isArray())
631 bool isArray = entry.size > 1;
638 deUint8* elemPtr = (deUint8*)basePtr + entry.offset + (isArray ? elemNdx*entry.arrayStride : 0);
933 if (block.isArray())
937 DE_ASSERT(!block.isArray());
946 bool isArray = entry.size > 1;
947 const deUint8* elemPtr = (const deUint8*)basePtr + entry.offset + (isArray ? elementNdx*entry.arrayStride : 0);
1005 bool isArray = type.isArrayType();
1006 glu::DataType elementType = isArray ? type.getElementType().getBasicType() : type.getBasicType();
1008 std::string fullApiName = string(apiName) + (isArray ? "[0]" : ""); // Arrays are always postfixed with [0]
1012 if (isArray)
1065 bool isArray = block.isArray();
1066 int numInstances = isArray ? block.getArraySize() : 1;
1069 DE_ASSERT(!isArray || hasInstanceName);
1073 std::string instancePostfix = isArray ? string("[") + de::toString(instanceNdx) + "]" : string("");
1584 bool isArray = block.isArray();
1585 std::string instanceName = string(block.getBlockName()) + (isArray ? "[0]" : "");
1663 bool isArray = block.isArray();
1664 std::string instanceName = string(block.getBlockName()) + (isArray ? "[0]" : "");
1737 bool isArray = block.isArray();
1738 int numInstances = isArray ? block.getArraySize() : 1;
1745 if (isArray)