Lines Matching refs:prompt
150 ostringstream prompt; in GetPartNum() local
153 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): "; in GetPartNum()
154 partNum = GetNumber(low + 1, high + 1, low, prompt.str()); in GetPartNum()
162 ostringstream prompt; in ResizePartitionTable() local
171 prompt << "Enter new size (" << curHigh << " up, default " << NUM_GPT_ENTRIES << "): "; in ResizePartitionTable()
172 newSize = GetNumber(4, 65535, 128, prompt.str()); in ResizePartitionTable()
251 ostringstream prompt; in DeletePartition() local
254 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): "; in DeletePartition()
255 partNum = GetNumber(low + 1, high + 1, low, prompt.str()); in DeletePartition()
334 ostringstream prompt; in SwapPartitions() local
341 prompt << "New partition number (1-" << numParts in SwapPartitions()
343 partNum2 = GetNumber(1, numParts, high + 2, prompt.str()) - 1; in SwapPartitions()
770 ostringstream prompt; in ExpertsMenu() local
815 prompt.seekp(0); in ExpertsMenu()
816 prompt << "Enter the sector alignment value (1-" << MAX_ALIGNMENT << ", default = " in ExpertsMenu()
818 temp1 = GetNumber(1, MAX_ALIGNMENT, DEFAULT_ALIGNMENT, prompt.str()); in ExpertsMenu()