OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:image_rotation
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/browser/chromeos/drive/
resource_entry_conversion.cc
118
const int64
image_rotation
= input.
image_rotation
();
local
119
if (
image_rotation
!= -1)
120
file_specific_info->set_image_rotation(
image_rotation
);
resource_entry_conversion_unittest.cc
416
EXPECT_EQ(90, entry.file_specific_info().
image_rotation
());
428
EXPECT_EQ(0, entry.file_specific_info().
image_rotation
());
/external/chromium_org/chrome/browser/drive/
drive_api_util_unittest.cc
254
EXPECT_EQ(90, resource_entry->
image_rotation
());
262
EXPECT_EQ(0, resource_entry->
image_rotation
());
270
EXPECT_EQ(-1, resource_entry->
image_rotation
());
drive_api_util.cc
340
image_media_metadata->set_rotation(entry.
image_rotation
());
/external/chromium_org/google_apis/drive/
gdata_wapi_parser.h
465
int64
image_rotation
() const { return image_rotation_; }
function in class:google_apis::ResourceEntry
554
void set_image_rotation(int64
image_rotation
) {
555
image_rotation_ =
image_rotation
;
gdata_wapi_parser_unittest.cc
237
EXPECT_EQ(-1, entry->
image_rotation
());
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_drive.cc
67
properties->
image_rotation
.reset(
68
new int(file_specific_info.
image_rotation
()));
Completed in 856 milliseconds