/external/libchrome/base/ |
H A D | bind_helpers.cc | 5 #include "base/bind_helpers.h" 7 #include "base/callback.h" 9 namespace base { namespace 14 } // namespace base
|
/external/libchrome/base/time/ |
H A D | clock.cc | 5 #include "base/time/clock.h" 7 namespace base { namespace 11 } // namespace base
|
H A D | tick_clock.cc | 5 #include "base/time/tick_clock.h" 7 namespace base { namespace 11 } // namespace base
|
/external/selinux/libsepol/tests/ |
H A D | test-linker-cond-map.h | 24 extern void base_cond_tests(policydb_t * base); 25 extern void module_cond_tests(policydb_t * base);
|
H A D | test-linker-types.h | 24 extern void base_type_tests(policydb_t * base); 25 extern void module_type_tests(policydb_t * base);
|
H A D | test-linker-roles.c | 38 * - role in base, no modules 39 * - role in base optional, no modules 40 * - role a in base, b in module 41 * - role a in base and module (additive) 42 * - role a in base and 2 module 43 * - role a in base optional, b in module 44 * - role a in base, b in module optional 45 * - role a in base optional, b in module optional 46 * - role a in base optional and module 47 * - role a in base an 70 base_role_tests(policydb_t * base) argument 100 module_role_tests(policydb_t * base) argument [all...] |
H A D | test-linker-types.c | 39 * - type in base, no modules 40 * - type in base optional, no modules 41 * - type a in base, b in module 42 * - type a in base optional, b in module 43 * - type a in base, b in module optional 44 * - type a in base optional, b in module optional 45 * - attr in base, no modules 46 * - attr in base optional, no modules 47 * - attr a in base, b in module 48 * - attr a in base optiona 125 base_type_tests(policydb_t * base) argument 163 module_type_tests(policydb_t * base) argument [all...] |
/external/bison/lib/ |
H A D | stripslash.c | 33 char *base = last_component (file); local 39 if (! *base) 40 base = file; 41 base_lim = base + base_len (base);
|
H A D | basename.c | 30 char const *base = last_component (name); local 35 if (! *base) 39 length = base_len (base); 40 if (ISSLASH (base[length])) 46 if (FILE_SYSTEM_PREFIX_LEN (base)) 51 memcpy (p + 2, base, length); 57 return xstrndup (base, length);
|
/external/libmojo/base/android/ |
H A D | base_jni_registrar.cc | 5 #include "base/android/base_jni_registrar.h" 7 #include "base/android/animation_frame_time_histogram.h" 8 #include "base/android/apk_assets.h" 9 #include "base/android/application_status_listener.h" 10 #include "base/android/build_info.h" 11 #include "base/android/callback_android.h" 12 #include "base/android/command_line_android.h" 13 #include "base/android/content_uri_utils.h" 14 #include "base/android/context_utils.h" 15 #include "base/androi 38 namespace base { namespace [all...] |
/external/libmojo/base/files/ |
H A D | file_util_android.cc | 5 #include "base/files/file_util.h" 7 #include "base/files/file_path.h" 8 #include "base/path_service.h" 10 namespace base { namespace 12 bool GetShmemTempDir(bool executable, base::FilePath* path) { 13 return PathService::Get(base::DIR_CACHE, path); 16 } // namespace base
|
/external/libmojo/base/android/java/src/org/chromium/base/ |
H A D | VisibleForTesting.java | 5 package org.chromium.base;
|
H A D | JNIUtils.java | 5 package org.chromium.base; 7 import org.chromium.base.annotations.CalledByNative; 8 import org.chromium.base.annotations.MainDex;
|
/external/mockito/src/main/java/org/mockito/exceptions/base/ |
H A D | package-info.java | 9 package org.mockito.exceptions.base;
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/ |
H A D | TestR.java | 9 private static int base = 1025; field in class:TestR 12 public static final int test_anim_1 = ++base; 16 public static final int test_color_1 = ++base; 20 public static final int test_drawable_1 = ++base;
|
/external/clang/test/CodeGenCXX/ |
H A D | debug-info-template-recursive.cpp | 3 class base { }; class 5 template <class T> class foo : public base {
|
/external/libbrillo/brillo/ |
H A D | value_conversion.cc | 22 bool FromValue(const base::Value& in_value, 23 std::unique_ptr<base::ListValue>* out_value) { 24 const base::ListValue* list = nullptr; 31 bool FromValue(const base::Value& in_value, 32 std::unique_ptr<base::DictionaryValue>* out_value) { 33 const base::DictionaryValue* dict = nullptr; 40 std::unique_ptr<base::Value> ToValue(int value) { 41 return std::unique_ptr<base::Value>{new base::FundamentalValue{value}}; 44 std::unique_ptr<base [all...] |
/external/libchrome/base/timer/ |
H A D | hi_res_timer_manager_unittest.cc | 5 #include "base/timer/hi_res_timer_manager.h" 10 #include "base/message_loop/message_loop.h" 11 #include "base/power_monitor/power_monitor.h" 12 #include "base/power_monitor/power_monitor_device_source.h" 13 #include "base/time/time.h" 17 namespace base { namespace 24 base::MessageLoop loop(base::MessageLoop::TYPE_UI); 25 std::unique_ptr<base::PowerMonitorSource> power_monitor_source( 26 new base [all...] |
/external/libmojo/base/ |
H A D | base_paths_android.cc | 5 // Defines base::PathProviderAndroid which replaces base::PathProviderPosix for 6 // Android in base/path_service.cc. 11 #include "base/android/jni_android.h" 12 #include "base/android/path_utils.h" 13 #include "base/base_paths.h" 14 #include "base/files/file_path.h" 15 #include "base/files/file_util.h" 16 #include "base/logging.h" 17 #include "base/proces 19 namespace base { namespace [all...] |
/external/pdfium/core/fxcrt/ |
H A D | fx_safe_types.h | 12 #include "third_party/base/numerics/safe_math.h" 14 typedef pdfium::base::CheckedNumeric<uint32_t> FX_SAFE_UINT32; 15 typedef pdfium::base::CheckedNumeric<int32_t> FX_SAFE_INT32; 16 typedef pdfium::base::CheckedNumeric<size_t> FX_SAFE_SIZE_T; 17 typedef pdfium::base::CheckedNumeric<FX_FILESIZE> FX_SAFE_FILESIZE; 18 typedef pdfium::base::CheckedNumeric<FX_STRSIZE> FX_SAFE_STRSIZE;
|
/external/mesa3d/src/gallium/state_trackers/dri/ |
H A D | dri_query_renderer.c | 19 (unsigned int)screen->base.screen->get_param(screen->base.screen, 24 (unsigned int)screen->base.screen->get_param(screen->base.screen, 29 (unsigned int)screen->base.screen->get_param(screen->base.screen, 35 (unsigned int)screen->base.screen->get_param(screen->base.screen, 41 (unsigned int)screen->base.screen->get_param(screen->base [all...] |
/external/libmojo/mojo/public/cpp/bindings/lib/ |
H A D | string_traits_string16.cc | 9 #include "base/strings/utf_string_conversions.h" 14 void* StringTraits<base::string16>::SetUpContext(const base::string16& input) { 15 return new std::string(base::UTF16ToUTF8(input)); 19 void StringTraits<base::string16>::TearDownContext(const base::string16& input, 25 size_t StringTraits<base::string16>::GetSize(const base::string16& input, 31 const char* StringTraits<base::string16>::GetData(const base [all...] |
/external/syslinux/dos/ |
H A D | strtoul.c | 10 extern uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n); 12 unsigned long strtoul(const char *nptr, char **endptr, int base) argument 14 return (unsigned long) strntoumax(nptr, endptr, base, ~(size_t) 0);
|
/external/toybox/toys/posix/ |
H A D | basename.c | 23 char *base = basename(*toys.optargs), *suffix = toys.optargs[1]; local 26 if (suffix && *suffix && (suffix = strend(base, suffix))) *suffix = 0; 28 puts(base);
|
/external/v4l2_codec2/vda/ |
H A D | ranges.cc | 10 void Ranges<base::TimeDelta>::DCheckLT(const base::TimeDelta& lhs, 11 const base::TimeDelta& rhs) const {
|