HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 26 - 50 of 14516) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/selinux/libsepol/tests/
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 and module optiona
    [all...]
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 optional, b in modul
    [all...]
  /external/bison/lib/
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/libbrillo/brillo/
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::Value> ToValue(bool value)
    [all...]
  /external/libchrome/base/task/
cancelable_task_tracker.h 16 // CancelableCallback (base/cancelable_callback.h) and WeakPtr binding are
41 #include "base/base_export.h"
42 #include "base/callback.h"
43 #include "base/containers/hash_tables.h"
44 #include "base/macros.h"
45 #include "base/memory/weak_ptr.h"
46 #include "base/task_runner_util.h"
47 #include "base/threading/thread_checker.h"
53 namespace base { namespace
64 typedef base::Callback<bool()> IsCanceledCallback
    [all...]
  /external/libchrome/base/timer/
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::PowerMonitorDeviceSource())
    [all...]
  /external/libmojo/base/
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/process/process_metrics.h
19 namespace base { namespace
    [all...]
  /system/update_engine/common/
fake_clock.h 29 base::Time GetWallclockTime() override {
33 base::Time GetMonotonicTime() override {
37 base::Time GetBootTime() override {
41 void SetWallclockTime(const base::Time &time) {
45 void SetMonotonicTime(const base::Time &time) {
49 void SetBootTime(const base::Time &time) {
54 base::Time wallclock_time_;
55 base::Time monotonic_time_;
56 base::Time boot_time_;
clock.h 29 base::Time GetWallclockTime() override;
31 base::Time GetMonotonicTime() override;
33 base::Time GetBootTime() override;
  /external/pdfium/core/fxcrt/
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;
  /prebuilts/ndk/r11/sources/android/support/src/musl-locale/
newlocale.c 6 locale_t newlocale(int mask, const char *name, locale_t base)
10 if (!base) base = calloc(1, sizeof *base);
11 return base;
  /prebuilts/ndk/r13/sources/android/support/src/musl-locale/
newlocale.c 6 locale_t newlocale(int mask, const char *name, locale_t base)
10 if (!base) base = calloc(1, sizeof *base);
11 return base;
  /external/libmojo/base/android/java/src/org/chromium/base/
JNIUtils.java 5 package org.chromium.base;
7 import org.chromium.base.annotations.CalledByNative;
8 import org.chromium.base.annotations.MainDex;
  /external/libmojo/mojo/message_pump/
time_helper.h 8 #include "base/time/time.h"
11 namespace base { namespace
21 MOJO_MESSAGE_PUMP_EXPORT void SetTickClockForTest(base::TickClock* clock);
28 MOJO_MESSAGE_PUMP_EXPORT base::TimeTicks NowTicks();
  /external/libmojo/mojo/public/cpp/bindings/lib/
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::string16& input
    [all...]
  /external/syslinux/dos/
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)
14 return (unsigned long) strntoumax(nptr, endptr, base, ~(size_t) 0);
  /external/valgrind/none/tests/s390x/
stmg.c 3 char base[] ="0123456789012345678901234567890123456789"; variable
10 /* No-wrap around case; copies 24 bytes from BASE to BUF */
16 : "a" (base)
32 /* Wrap around case; copies 32 bytes from BASE to BUF */
39 : "a" (base)
  /external/v8/tools/clang/value_cleanup/tests/
list-value-append-original.cc 7 #include "base/values.h"
11 base::ListValue* ReturnsRawPtr() {
15 std::unique_ptr<base::Value> ReturnsUniquePtr() {
20 void DoesItTakeOwnership(base::Value*) {}
23 std::unique_ptr<base::Value> ToValue() { return nullptr; }
27 base::ListValue list;
28 list.Append(new base::FundamentalValue(1 == 0));
29 list.Append(new base::FundamentalValue(true));
30 list.Append(new base::FundamentalValue(static_cast<unsigned char>(1.0)));
31 list.Append(new base::FundamentalValue(double{3}))
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/arm/gic/
gic_v2.c 41 unsigned int gicd_read_igroupr(unsigned int base, unsigned int id)
44 return mmio_read_32(base + GICD_IGROUPR + (n << 2));
47 unsigned int gicd_read_isenabler(unsigned int base, unsigned int id)
50 return mmio_read_32(base + GICD_ISENABLER + (n << 2));
53 unsigned int gicd_read_icenabler(unsigned int base, unsigned int id)
56 return mmio_read_32(base + GICD_ICENABLER + (n << 2));
59 unsigned int gicd_read_ispendr(unsigned int base, unsigned int id)
62 return mmio_read_32(base + GICD_ISPENDR + (n << 2));
65 unsigned int gicd_read_icpendr(unsigned int base, unsigned int id)
68 return mmio_read_32(base + GICD_ICPENDR + (n << 2))
    [all...]
  /build/kati/testcase/
foreach.mk 0 base := base
4 files := $(foreach dir,$(dirs),$(foreach subdir,$(dirs),$(dir)/$(subdir)/$(base)))
1 base := base macro
  /external/libchrome/base/metrics/
metrics_hashes.cc 5 #include "base/metrics/metrics_hashes.h"
7 #include "base/logging.h"
8 #include "base/md5.h"
9 #include "base/sys_byteorder.h"
11 namespace base { namespace
16 inline uint64_t DigestToUInt64(const base::MD5Digest& digest) {
20 return base::NetToHost64(value);
25 uint64_t HashMetricName(base::StringPiece name) {
26 base::MD5Digest digest;
27 base::MD5Sum(name.data(), name.size(), &digest)
    [all...]
metrics_hashes.h 10 #include "base/base_export.h"
11 #include "base/strings/string_piece.h"
13 namespace base { namespace
17 BASE_EXPORT uint64_t HashMetricName(base::StringPiece name);
  /external/libmojo/mojo/common/
common_custom_types_struct_traits.h 17 struct StructTraits<common::mojom::String16, base::string16> {
18 static std::vector<uint16_t> data(const base::string16& str) {
19 const uint16_t* base = str.data(); local
20 return std::vector<uint16_t>(base, base + str.size());
22 static bool Read(common::mojom::String16DataView data, base::string16* output);
  /frameworks/base/cmds/am/
am 6 base=/system
7 export CLASSPATH=$base/framework/am.jar
8 exec app_process $base/bin com.android.commands.am.Am "$@"
  /external/libchrome/base/synchronization/
spin_wait.h 18 #include "base/threading/platform_thread.h"
19 #include "base/time/time.h"
34 SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(base::TimeDelta::FromSeconds(1), \
38 base::TimeTicks start = base::TimeTicks::Now(); \
39 const base::TimeDelta kTimeout = delta; \
41 if (kTimeout < base::TimeTicks::Now() - start) { \
42 EXPECT_LE((base::TimeTicks::Now() - start).InMilliseconds(), \
46 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(50));
    [all...]

Completed in 1698 milliseconds

12 3 4 5 6 7 8 91011>>