| /system/keymaster/include/keymaster/ |
| authorization_set.h | 47 * dynamically-allocated storage. If allocation of the needed storage fails, \p is_valid() will 67 * of the needed storage fails this method will return false and \p is_valid() will return 84 Error is_valid() const { return error_; } function in class:keymaster::AuthorizationSet
|
| /external/chromium_org/ash/wm/workspace/ |
| multi_window_resize_controller.h | 71 bool is_valid() const { return window1 && window2; } function in struct:ash::MultiWindowResizeController::ResizeWindows 90 // Returns a ResizeWindows based on the specified arguments. Use is_valid()
|
| /external/chromium_org/chrome/installer/tools/ |
| validate_installation_main.cc | 176 bool is_valid = local 179 FILE* stream = is_valid ? stdout : stderr; 181 (is_valid ? "" : " (with errors)"), 184 if (!is_valid)
|
| /external/chromium_org/components/autofill/core/browser/ |
| credit_card_unittest.cc | 369 bool is_valid; member in struct:autofill::__anon10840 525 EXPECT_EQ(test_cases[i].is_valid, IsValidCreditCardNumber(card_number));
|
| /external/chromium_org/content/renderer/pepper/ |
| npapi_glue.h | 191 // If the NPObject or identifier is invalid, we'll set is_valid() to false. 192 // The caller should check is_valid() before doing anything with the class. 198 // is false and the identifier is an integer, we'll set is_valid() to false. 213 bool is_valid() const { function in class:content::NPObjectAccessorWithIdentifier
|
| ppb_image_data_impl.h | 180 // state. You must check is_valid() to make sure the image was successfully 185 // if (!mapper.is_valid()) 207 bool is_valid() const { return is_valid_; } function in class:content::ImageDataAutoMapper
|
| /external/chromium_org/extensions/renderer/ |
| script_context.h | 45 bool is_valid() const { return !v8_context_.IsEmpty(); } function in class:extensions::ScriptContext
|
| /external/chromium_org/mojo/system/ |
| dispatcher.h | 360 bool is_valid() const { return !!dispatcher_; } function in class:mojo::system::DispatcherTransport
|
| /external/chromium_org/net/cert/ |
| x509_cert_types_unittest.cc | 149 bool is_valid; member in struct:net::__anon13125::CertDateTestData 202 << "; valid: " << data.is_valid 204 << (data.is_valid ? 225 EXPECT_EQ(test_data_.is_valid, parsed); 226 if (!test_data_.is_valid)
|
| /external/chromium_org/net/proxy/ |
| proxy_server.h | 46 bool is_valid() const { return scheme_ != SCHEME_INVALID; } function in class:net::ProxyServer
|
| /external/chromium_org/third_party/bintrees/bintrees/ |
| cwalker.pyx | 44 def is_valid(self): member in class:cWalker
|
| walker.py | 37 def is_valid(self): member in class:Walker
|
| /external/chromium_org/third_party/skia/src/core/ |
| SkMallocPixelRef.cpp | 18 static bool is_valid(const SkImageInfo& info, SkColorTable* ctable) { function 45 if (!is_valid(info, ctable)) { 56 if (!is_valid(info, ctable)) { 98 if (!is_valid(info, ctable)) { 114 if (!is_valid(info, ctable)) { 142 SkASSERT(is_valid(info, ctable)); 165 SkASSERT(is_valid(info, ctable));
|
| /external/chromium_org/v8/src/ |
| safepoint-table.h | 23 ASSERT(is_valid()); 26 bool is_valid() const { return bits_ != NULL; } function in class:v8::internal::BASE_EMBEDDED 38 ASSERT(is_valid()); 58 ASSERT(is_valid()); 63 ASSERT(is_valid()); 68 ASSERT(is_valid());
|
| conversions.h | 225 bool is_valid = TryNumberToSize(isolate, number, &result); local 226 CHECK(is_valid);
|
| /external/chromium_org/webkit/browser/fileapi/ |
| file_system_url.h | 91 bool is_valid() const { return is_valid_; } function in class:fileapi::FileSystemURL
|
| file_system_usage_cache.cc | 51 bool is_valid = true; local 54 if (!Read(usage_file_path, &is_valid, &dirty, &usage)) 65 bool is_valid = true; local 68 if (!Read(usage_file_path, &is_valid, &dirty, &usage)) 78 bool is_valid = true; local 82 if (!Read(usage_file_path, &is_valid, &dirty, &usage)) 85 bool success = Write(usage_file_path, is_valid, dirty + 1, usage); 95 bool is_valid = true; local 98 if (!Read(usage_file_path, &is_valid, &dirty, &usage) || dirty <= 0) 104 return Write(usage_file_path, is_valid, dirty - 1, usage) 110 bool is_valid = true; local 122 bool is_valid = true; local 134 bool is_valid = true; local [all...] |
| /external/lldb/include/lldb/Utility/ |
| CleanUp.h | 139 is_valid() const function in class:lldb_utility::CleanUp 148 // constructor one time if the value is considered valid (See is_valid()). 158 if (is_valid()) 272 is_valid() const function in class:lldb_utility::CleanUp2 281 // constructor one time if the value is considered valid (See is_valid()). 291 if (is_valid())
|
| /external/skia/src/core/ |
| SkMallocPixelRef.cpp | 18 static bool is_valid(const SkImageInfo& info, SkColorTable* ctable) { function 45 if (!is_valid(info, ctable)) { 56 if (!is_valid(info, ctable)) { 98 if (!is_valid(info, ctable)) { 114 if (!is_valid(info, ctable)) { 142 SkASSERT(is_valid(info, ctable)); 165 SkASSERT(is_valid(info, ctable));
|
| /external/chromium_org/ppapi/shared_impl/ |
| compositor_layer_data.h | 101 bool is_valid() const { function in struct:ppapi::CompositorLayerData
|
| /external/chromium_org/ui/gfx/ |
| display.h | 111 bool is_valid() const { return id_ != kInvalidDisplayID; } function in class:gfx::Display
|
| /external/chromium_org/url/ |
| gurl.h | 47 bool is_valid); 54 GURL(std::string canonical_spec, const url::Parsed& parsed, bool is_valid); 65 bool is_valid() const { function in class:GURL 70 // invalid, and is_valid() will return false for them. This is provided 84 // The exception is for empty() URLs (which are !is_valid()) but this will
|
| url_util_unittest.cc | 227 bool is_valid; member in struct:url::ResolveRelativeCase 291 EXPECT_EQ(test_data.is_valid, valid) << i; 292 if (test_data.is_valid && valid)
|
| /external/chromium_org/url/third_party/mozilla/ |
| url_parse.h | 35 bool is_valid() const { function in struct:url::Component
|
| /external/chromium_org/v8/src/arm64/ |
| assembler-arm64.h | 86 bool is_valid() const { return IsValid(); } function in struct:v8::internal::CPURegister [all...] |