HomeSort by relevance Sort by last modified time
    Searched refs:IsLocal (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/search/
instant_page_unittest.cc 67 TEST_F(InstantPageTest, IsLocal) {
70 EXPECT_FALSE(page->IsLocal());
73 EXPECT_TRUE(page->IsLocal());
75 EXPECT_FALSE(page->IsLocal());
83 EXPECT_TRUE(page->IsLocal());
96 EXPECT_FALSE(page->IsLocal());
116 EXPECT_FALSE(page->IsLocal());
instant_page.h 71 virtual bool IsLocal() const;
92 FRIEND_TEST_ALL_PREFIXES(InstantPageTest, IsLocal);
instant_page.cc 41 bool InstantPage::IsLocal() const {
search_tab_helper.cc 94 bool IsLocal(const content::WebContents* contents) {
606 } else if (IsLocal(web_contents_)) {
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_gatt_descriptor.cc 22 ON_CALL(*this, IsLocal()).WillByDefault(Return(is_local));
mock_bluetooth_gatt_descriptor.h 34 MOCK_CONST_METHOD0(IsLocal, bool());
mock_bluetooth_gatt_characteristic.cc 24 ON_CALL(*this, IsLocal()).WillByDefault(Return(is_local));
mock_bluetooth_gatt_service.cc 22 ON_CALL(*this, IsLocal()).WillByDefault(Return(is_local));
mock_bluetooth_gatt_service.h 31 MOCK_CONST_METHOD0(IsLocal, bool());
mock_bluetooth_gatt_characteristic.h 35 MOCK_CONST_METHOD0(IsLocal, bool());
  /external/chromium_org/sync/api/
sync_data_unittest.cc 55 EXPECT_TRUE(data.IsLocal());
65 EXPECT_TRUE(data.IsLocal());
82 EXPECT_TRUE(data.IsLocal());
97 EXPECT_TRUE(data.IsLocal());
113 EXPECT_FALSE(data.IsLocal());
sync_change.cc 31 if (!sync_data_.IsLocal())
sync_data.cc 150 bool SyncData::IsLocal() const { return id_ == kInvalidId; }
163 if (IsLocal()) {
165 return "{ isLocal: true, type: " + type + ", tag: " +
172 return "{ isLocal: false, type: " + type + ", specifics: " + specifics +
191 DCHECK(sync_data.IsLocal());
202 DCHECK(!sync_data.IsLocal());
sync_data.h 96 bool IsLocal() const;
157 // |sync_data|'s IsLocal() must be true.
171 // |sync_data|'s IsLocal() must be false.
  /external/chromium_org/device/bluetooth/
bluetooth_gatt_descriptor.h 147 virtual bool IsLocal() const = 0;
bluetooth_gatt_characteristic.h 127 virtual bool IsLocal() const = 0;
bluetooth_gatt_service.h 157 virtual bool IsLocal() const = 0;
bluetooth_remote_gatt_descriptor_chromeos.h 35 virtual bool IsLocal() const OVERRIDE;
bluetooth_remote_gatt_service_chromeos.h 45 virtual bool IsLocal() const OVERRIDE;
bluetooth_gatt_chromeos_unittest.cc 92 EXPECT_FALSE(service->IsLocal());
110 EXPECT_FALSE(service->IsLocal());
504 EXPECT_FALSE(service->IsLocal());
543 EXPECT_FALSE(service->IsLocal());
688 EXPECT_FALSE(descriptor->IsLocal());
717 EXPECT_FALSE(descriptor->IsLocal());
750 EXPECT_FALSE(service->IsLocal());
757 EXPECT_FALSE(service->IsLocal());
768 EXPECT_FALSE(characteristic->IsLocal());
779 EXPECT_FALSE(characteristic->IsLocal());
    [all...]
bluetooth_remote_gatt_characteristic_chromeos.h 44 virtual bool IsLocal() const OVERRIDE;
bluetooth_remote_gatt_descriptor_chromeos.cc 57 bool BluetoothRemoteGattDescriptorChromeOS::IsLocal() const {
bluetooth_remote_gatt_service_chromeos.cc 76 bool BluetoothRemoteGattServiceChromeOS::IsLocal() const {
  /external/chromium_org/extensions/browser/api/bluetooth_low_energy/
bluetooth_low_energy_event_router.cc 42 out->is_local = service->IsLocal();
96 out->is_local = characteristic->IsLocal();
115 out->is_local = descriptor->IsLocal();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wmiutils.h 208 virtual WINBOOL WINAPI IsLocal(LPCWSTR wszMachine) = 0;
241 WINBOOL (WINAPI *IsLocal)(IWbemPath *This,LPCWSTR wszMachine);
276 #define IWbemPath_IsLocal(This,wszMachine) (This)->lpVtbl->IsLocal(This,wszMachine)
    [all...]

Completed in 714 milliseconds

1 2