OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_valid
(Results
1 - 25
of
106
) sorted by null
1
2
3
4
5
/external/chromium_org/base/
scoped_native_library.h
32
bool
is_valid
() const { return !!library_; }
function in class:base::ScopedNativeLibrary
scoped_generic.h
127
bool
is_valid
() const { return data_.generic != traits_type::InvalidValue(); }
function in class:base::ScopedGeneric
/external/chromium_org/extensions/renderer/
native_handler.h
36
bool
is_valid
() { return is_valid_; }
function in class:extensions::NativeHandler
/external/chromium_org/mojo/embedder/
platform_handle.h
25
bool
is_valid
() const { return fd != -1; }
function in struct:mojo::embedder::PlatformHandle
36
bool
is_valid
() const { return handle != INVALID_HANDLE_VALUE; }
scoped_platform_handle.h
50
bool
is_valid
() const {
function in class:mojo::embedder::ScopedPlatformHandle
51
return handle_.
is_valid
();
/external/chromium_org/net/http/
http_vary_data.h
35
bool
is_valid
() const { return is_valid_; }
function in class:net::HttpVaryData
41
// success, the object is also marked as valid such that
is_valid
() will
52
//
is_valid
() will return true. Otherwise, false is returned to indicate
/external/chromium_org/dbus/
file_descriptor.h
48
int
is_valid
() const { return valid_; }
function in class:dbus::FileDescriptor
/external/chromium_org/net/base/
data_url_unittest.cc
14
bool
is_valid
;
member in struct:__anon13020::ParseTestData
181
EXPECT_EQ(ok, tests[i].
is_valid
);
182
if (tests[i].
is_valid
) {
/external/chromium_org/ppapi/host/
host_message_context.h
26
bool
is_valid
() const { return params.pp_resource() != 0; }
function in struct:ppapi::host::ReplyMessageContext
/external/chromium_org/ppapi/shared_impl/
array_writer.h
32
bool
is_valid
() const { return !!pp_array_output_.GetDataBuffer; }
function in class:ppapi::ArrayWriter
33
bool is_null() const { return !
is_valid
(); }
/external/bluetooth/bluedroid/stack/avrc/
avrc_utils.c
226
BOOLEAN
is_valid
= FALSE;
local
232
is_valid
= TRUE;
235
return
is_valid
;
/external/chromium_org/chrome/common/
chrome_version_info.cc
20
if (!
is_valid
())
38
bool VersionInfo::
is_valid
() const {
function in class:chrome::VersionInfo
43
if (!
is_valid
())
49
if (!
is_valid
())
55
if (!
is_valid
())
61
if (!
is_valid
())
78
bool VersionInfo::
is_valid
() const {
function in class:chrome::VersionInfo
102
if (
is_valid
()) {
/external/chromium_org/sql/
statement.h
38
// if (!s.
is_valid
())
54
// be valid. Use
is_valid
() to check if it's OK.
66
bool
is_valid
() const { return ref_->
is_valid
(); }
function in class:sql::Statement
/external/chromium_org/base/memory/
weak_ptr.cc
43
bool WeakReference::
is_valid
() const { return flag_.get() && flag_->IsValid(); }
function in class:base::internal::WeakReference
/external/chromium_org/chrome/browser/printing/
printer_query.cc
139
bool PrinterQuery::
is_valid
() const {
function in class:printing::PrinterQuery
/external/chromium_org/components/bookmarks/browser/
bookmark_node_data.h
147
bool
is_valid
() const { return !elements.empty(); }
function in struct:BookmarkNodeData
150
bool has_single_url() const { return
is_valid
() && elements[0].is_url; }
/external/chromium_org/components/favicon_base/
favicon_types.h
53
bool
is_valid
() const { return bitmap_data.get() && bitmap_data->size(); }
function in struct:favicon_base::FaviconRawBitmapResult
/external/chromium_org/net/quic/crypto/
local_strike_register_client_test.cc
87
bool
is_valid
;
local
92
new RecordResultCallback(&called, &
is_valid
));
94
EXPECT_FALSE(
is_valid
);
100
bool
is_valid
;
local
106
new RecordResultCallback(&called, &
is_valid
));
108
EXPECT_FALSE(
is_valid
);
114
bool
is_valid
;
local
118
new RecordResultCallback(&called, &
is_valid
));
120
EXPECT_TRUE(
is_valid
);
/external/chromium_org/net/ssl/
ssl_info.h
43
bool
is_valid
() const { return cert.get() != NULL; }
function in class:net::SSLInfo
/external/chromium_org/remoting/host/
token_validator_base.h
27
inline bool
is_valid
() const {
function in struct:remoting::ThirdPartyAuthConfig
28
return token_url.
is_valid
() && token_validation_url.
is_valid
();
/external/chromium_org/remoting/protocol/
authentication_method.h
52
bool
is_valid
() const { return type_ != INVALID; }
function in class:remoting::protocol::AuthenticationMethod
56
// Following methods are valid only when
is_valid
() returns true.
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.h
52
VGboolean
is_valid
;
member in struct:arc
/external/lldb/source/Host/common/
SocketAddress.cpp
224
const bool
is_valid
= IsValid();
local
225
if (!
is_valid
)
230
return
is_valid
;
/external/mesa3d/src/gallium/state_trackers/vega/
arc.h
52
VGboolean
is_valid
;
member in struct:arc
/hardware/libhardware/modules/usbaudio/
alsa_device_profile.h
49
bool
is_valid
;
member in struct:__anon40536
Completed in 1746 milliseconds
1
2
3
4
5