/external/chromium/chrome/browser/sessions/ |
session_types.h | 74 void set_type_mask(int type_mask) { type_mask_ = type_mask; } 75 int type_mask() const { return type_mask_; } function in class:TabNavigation
|
session_service_test_helper.cc | 84 EXPECT_EQ(expected.type_mask(), actual.type_mask());
|
base_session_service.cc | 173 int type_mask = entry.has_post_data() ? TabNavigation::HAS_POST_DATA : 0; local 174 pickle.WriteInt(type_mask); 219 // type_mask did not always exist in the written stream. As such, we 224 // the "referrer" property was added after type_mask to the written
|
session_service_unittest.cc | 78 navigation.type_mask() & TabNavigation::HAS_POST_DATA);
|
/frameworks/native/services/surfaceflinger/ |
Transform.h | 54 enum type_mask { enum in class:android::Transform
|
/external/chromium_org/components/sessions/ |
serialized_navigation_entry.cc | 217 // type_mask (has_post_data_) 245 const int type_mask = has_post_data_ ? HAS_POST_DATA : 0; local 246 pickle->WriteInt(type_mask); 281 // type_mask did not always exist in the written stream. As such, we 283 int type_mask = 0; local 284 bool has_type_mask = iterator->ReadInt(&type_mask); 287 has_post_data_ = type_mask & HAS_POST_DATA; 288 // the "referrer" property was added after type_mask to the written
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
libc_override_osx.h | 140 unsigned type_mask, vm_address_t zone_address,
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
libc_override_osx.h | 140 unsigned type_mask, vm_address_t zone_address,
|
/external/opencv/ml/src/ |
_ml.h | 339 CvMat* cvPreprocessVarType( const CvMat* type_mask, const CvMat* var_idx,
|
/external/compiler-rt/lib/asan/ |
asan_malloc_mac.cc | 263 unsigned type_mask, vm_address_t zone_address,
|
/external/kernel-headers/original/linux/ |
pci.h | 537 resource_size_t min, unsigned int type_mask,
|
/external/chromium_org/chrome/installer/util/ |
shell_util.cc | 95 DWORD type_mask = VER_MAJORVERSION | VER_MINORVERSION | VER_BUILDNUMBER | local 98 return VerifyVersionInfo(&min_version_info, type_mask, condition_mask) != 0; [all...] |