Home
last modified time | relevance | path

Searched refs:indexPath (Results 1 – 9 of 9) sorted by relevance

/external/skia/experimental/iOSSampleApp/Shared/
DSkOptionListController.mm39 …TableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
48 cell.textLabel.text = [fOptions objectAtIndex:indexPath.row];
49 if (indexPath.row == fSelectedIndex) {
62 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
63 UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
68 self.fSelectedIndex = indexPath.row;
DSkUIRootViewController.mm41 …TableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
51 cell.textLabel.text = [fSamples objectAtIndex:indexPath.row];
DSkOptionsTableViewController.mm287 …TableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
288 return ((SkOptionItem*)[fItems objectAtIndex:[self convertPathToIndex:indexPath]]).fCell;
294 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
295 UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
296 id item = [fItems objectAtIndex:[self convertPathToIndex:indexPath]];
314 [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
/external/walt/ios/WALT/
DSettingsController.m72 willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
73 if (indexPath.section == 0 && indexPath.row == 0) {
77 } else if (indexPath.section == 0 && indexPath.row == 1) {
82 return indexPath;
DMenuController.m124 forRowAtIndexPath:(NSIndexPath *)indexPath {
125 if (indexPath.section == 1) {
134 willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
135 if (indexPath.section == 0 && indexPath.row == 0) {
147 } else if (indexPath.section == 1 && !_client.isConnected) {
152 return indexPath;
/external/skia/experimental/iOSSampleApp/iPhone/
DSkUINavigationController.mm23 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
24 [fDetail goToItem:indexPath.row];
/external/skia/experimental/iOSSampleApp/iPad/
DSkUISplitViewController.mm23 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
24 [fDetail goToItem:indexPath.row];
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp543 const de::FilePath indexPath = getIndexPath(dstPath); in writeToPath() local
551 if (!de::FilePath(indexPath.getDirName()).exists()) in writeToPath()
552 de::createDirectoryAndParents(indexPath.getDirName().c_str()); in writeToPath()
555 std::ofstream indexOut(indexPath.getPath(), std::ios_base::binary); in writeToPath()
558 …throw tcu::InternalError(string("Failed to open program binary index file ") + indexPath.getPath()… in writeToPath()
/external/deqp/executor/tools/
DxeBatchResultToXml.cpp367 de::FilePath indexPath = de::FilePath::join(dstPath, "caselist.xml"); in batchResultToSeparateXmlFiles() local
368 std::ofstream out (indexPath.getPath(), std::ofstream::binary|std::ofstream::trunc); in batchResultToSeparateXmlFiles()