Lines Matching refs:propIntParts
109 std::vector<int> propIntParts; in parseExternalDisplaysFromProperties() local
117 propIntParts.push_back(propIntPart); in parseExternalDisplaysFromProperties()
119 if (propIntParts.empty() || propIntParts.size() % 5 != 0) { in parseExternalDisplaysFromProperties()
122 outPropIntParts.insert(outPropIntParts.end(), propIntParts.begin(), propIntParts.end()); in parseExternalDisplaysFromProperties()
129 std::vector<int> propIntParts; in findGoldfishSecondaryDisplays() local
130 parseExternalDisplaysFromProperties(propIntParts); in findGoldfishSecondaryDisplays()
133 while (!propIntParts.empty()) { in findGoldfishSecondaryDisplays()
138 /*width=*/propIntParts[1], // in findGoldfishSecondaryDisplays()
139 /*heighth=*/propIntParts[2], // in findGoldfishSecondaryDisplays()
140 /*dpiXh=*/propIntParts[3], // in findGoldfishSecondaryDisplays()
141 /*dpiYh=*/propIntParts[3], // in findGoldfishSecondaryDisplays()
148 propIntParts.erase(propIntParts.begin(), propIntParts.begin() + 5); in findGoldfishSecondaryDisplays()