OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Exists
(Results
1 - 25
of
57
) sorted by null
1
2
3
/external/llvm/lib/Support/
LockFileManager.cpp
25
/// \brief Attempt to read the lock file with the given name, if it
exists
.
32
// Check whether the lock file
exists
. If not, clearly there's nothing
34
bool
Exists
= false;
35
if (sys::fs::
exists
(LockFileName,
Exists
) || !
Exists
)
77
// If the lock file already
exists
, don't bother to try to create our own
195
bool
Exists
= false;
201
if (!sys::fs::
exists
(LockFileName.str(),
Exists
) && !Exists)
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
file.h
48
// Check if the file
exists
.
49
static bool
Exists
(const string& name);
file.cc
61
bool File::
Exists
(const string& name) {
103
if (
Exists
(path)) return false;
googletest.cc
72
while (!File::
Exists
(prefix + "/src/google/protobuf")) {
73
if (!File::
Exists
(prefix)) {
/external/protobuf/src/google/protobuf/testing/
file.h
48
// Check if the file
exists
.
49
static bool
Exists
(const string& name);
file.cc
61
bool File::
Exists
(const string& name) {
103
if (
Exists
(path)) return false;
googletest.cc
72
while (!File::
Exists
(prefix + "/src/google/protobuf")) {
73
if (!File::
Exists
(prefix)) {
/external/chromium/testing/gmock/test/
gmock-actions_test.cc
90
// Tests that BuiltInDefaultValue<T*>::
Exists
() return true.
92
EXPECT_TRUE(BuiltInDefaultValue<int*>::
Exists
());
93
EXPECT_TRUE(BuiltInDefaultValue<const char*>::
Exists
());
94
EXPECT_TRUE(BuiltInDefaultValue<void*>::
Exists
());
125
// Tests that BuiltInDefaultValue<T>::
Exists
() returns true when T is a
128
EXPECT_TRUE(BuiltInDefaultValue<unsigned char>::
Exists
());
129
EXPECT_TRUE(BuiltInDefaultValue<signed char>::
Exists
());
130
EXPECT_TRUE(BuiltInDefaultValue<char>::
Exists
());
132
EXPECT_TRUE(BuiltInDefaultValue<unsigned wchar_t>::
Exists
());
133
EXPECT_TRUE(BuiltInDefaultValue<signed wchar_t>::
Exists
());
[
all
...]
/external/llvm/unittests/Support/
FileOutputBufferTest.cpp
50
// Verify file
exists
and starts with special header.
71
bool
Exists
= false;
72
ASSERT_NO_ERROR(fs::
exists
(Twine(File2),
Exists
));
73
EXPECT_FALSE(
Exists
);
88
// Verify file
exists
and starts with special header.
110
// Verify file
exists
and is executable.
/external/chromium/chrome/browser/safe_browsing/
bloom_filter.h
43
bool
Exists
(SBPrefix hash) const;
prefix_set.h
67
bool
Exists
(SBPrefix prefix) const;
100
// for |
Exists
()| under control.
prefix_set_unittest.cc
55
EXPECT_TRUE(prefix_set->
Exists
(prefixes[i]));
59
EXPECT_FALSE(prefix_set->
Exists
(left_sibling));
63
EXPECT_FALSE(prefix_set->
Exists
(right_sibling));
163
EXPECT_FALSE(prefix_set.
Exists
(shared_prefixes_[i]));
171
EXPECT_FALSE(prefix_set.
Exists
(-1));
172
EXPECT_TRUE(prefix_set.
Exists
(prefixes[0]));
173
EXPECT_FALSE(prefix_set.
Exists
(1));
236
// Use artificial inputs to test various edge cases in
Exists
().
293
EXPECT_FALSE(prefix_set.
Exists
(kVeryNegative - 100));
294
EXPECT_FALSE(prefix_set.
Exists
(kVeryPositive + 100))
[
all
...]
bloom_filter_unittest.cc
51
// Check no false negatives by ensuring that every time we inserted
exists
.
53
EXPECT_TRUE(filter_copy->
Exists
(*i));
65
if (filter_copy->
Exists
(value))
filter_false_positive_perftest.cc
180
if (bloom_filter->
Exists
(prefix))
346
if (bloom_filter->
Exists
(prefix))
bloom_filter.cc
79
bool BloomFilter::
Exists
(SBPrefix hash) const {
/external/chromium_org/chrome/browser/safe_browsing/
prefix_set.h
68
bool
Exists
(SBPrefix prefix) const;
81
// for |
Exists
()| under control.
prefix_set_unittest.cc
73
EXPECT_TRUE(prefix_set.
Exists
(prefixes[i]));
77
EXPECT_FALSE(prefix_set.
Exists
(left_sibling));
81
EXPECT_FALSE(prefix_set.
Exists
(right_sibling));
183
EXPECT_FALSE(prefix_set.
Exists
(shared_prefixes_[i]));
191
EXPECT_FALSE(prefix_set.
Exists
(-1));
192
EXPECT_TRUE(prefix_set.
Exists
(prefixes[0]));
193
EXPECT_FALSE(prefix_set.
Exists
(1));
256
// Use artificial inputs to test various edge cases in
Exists
().
313
EXPECT_FALSE(prefix_set.
Exists
(kVeryNegative - 100));
314
EXPECT_FALSE(prefix_set.
Exists
(kVeryPositive + 100))
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRFileStream.cs
142
if (file.
Exists
)
/external/chromium/testing/gmock/include/gmock/
gmock-actions.h
74
static bool
Exists
() { return false; }
89
static bool
Exists
() { return BuiltInDefaultValue<T>::
Exists
(); }
98
static bool
Exists
() { return true; }
108
static bool
Exists
() { return true; } \
180
//
exists
a built-in default value.
181
static bool
Exists
() {
182
return IsSet() || internal::BuiltInDefaultValue<T>::
Exists
();
215
//
exists
a built-in default value.
216
static bool
Exists
() {
[
all
...]
/external/chromium_org/chrome/browser/extensions/
component_loader.h
63
bool
Exists
(const std::string& id) const;
/external/chromium_org/webkit/browser/fileapi/
file_system_usage_cache.h
53
bool
Exists
(const base::FilePath& usage_file_path);
/external/chromium_org/v8/src/
global-handles.h
370
ASSERT(
Exists
(singleton));
375
inline bool
Exists
(SingletonHandle singleton) {
/external/chromium_org/content/child/fileapi/
file_system_dispatcher.h
99
void
Exists
(const GURL& path,
/external/chromium_org/chrome/browser/drive/
fake_drive_service_unittest.cc
60
// Returns true if the resource identified by |resource_id|
exists
.
61
bool
Exists
(const std::string& resource_id) {
455
ASSERT_TRUE(
Exists
("file:2_file_resource_id"));
463
ASSERT_FALSE(
Exists
("file:2_file_resource_id"));
493
ASSERT_TRUE(
Exists
("file:2_file_resource_id"));
500
ASSERT_FALSE(
Exists
("file:2_file_resource_id"));
888
ASSERT_TRUE(
Exists
("file:2_file_resource_id"));
898
EXPECT_FALSE(
Exists
("file:2_file_resource_id"));
906
EXPECT_FALSE(
Exists
("file:2_file_resource_id"));
[
all
...]
/external/chromium_org/chrome/browser/extensions/api/identity/
web_auth_flow.cc
97
if (!component_loader->
Exists
(extension_misc::kIdentityApiUiAppId)) {
Completed in 897 milliseconds
1
2
3