HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 1251 - 1275 of 4749) sorted by null

<<51525354555657585960>>

  /system/core/base/include/android-base/
unique_fd.h 25 // android-base/macros.h, which causes macro collisions.
40 namespace base { namespace in namespace:android
95 } // namespace base
  /system/core/metricsd/uploader/
metrics_log_base.h 25 #include "base/macros.h"
26 #include "base/metrics/histogram.h"
27 #include "base/time/time.h"
30 namespace base { namespace
32 } // namespace base
36 // This class provides base functionality for logging metrics data.
66 // This wraps base::TimeTicks, and hence provides an abstract time that is
75 const base::HistogramSamples& snapshot);
  /system/extras/perfprofd/quipper/base/
macros.h 16 #include "quipper/base/compiler_specific.h" // For ALLOW_UNUSED.
33 // NOTE: The usage of this macro was banned from our code base, but some
237 // the base::LINKER_INITIALIZED argument. Normally, it is unsafe to declare a
243 // explicit MyClass(base::LinkerInitialized x) {}
245 // static MyClass my_variable_name(base::LINKER_INITIALIZED);
246 namespace base { namespace
251 // thread-safe initialization, use base/lazy_instance.h instead.
255 } // base
  /system/tools/aidl/
io_delegate.cpp 30 #include <android-base/strings.h>
39 using android::base::Split;
161 // The "base" directory is just the root of the file system. On Windows,
164 string base = directories[0]; local
165 if (base.empty()) {
166 base = "/";
173 return CreatedNestedDirs(base, directories);
  /toolchain/binutils/binutils-2.25/libiberty/
make-temp-file.c 66 If BASE is non-NULL, return it.
74 try_dir (const char *dir, const char *base)
76 if (base != 0)
77 return base;
111 const char *base = 0; local
117 base = try_dir ("/sys$scratch", base);
119 base = try_dir (getenv ("TMPDIR"), base);
120 base = try_dir (getenv ("TMP"), base)
187 const char *base = choose_tmpdir (); local
    [all...]
  /art/compiler/
cfi_test.h 63 const uint8_t* base = actual_asm.data() + (isa == kThumb2 ? 1 : 0); local
64 disasm->Dump(stream, base, base + actual_asm.size());
  /art/test/106-exceptions2/src/
Main.java 134 Main base = new Main(); local
138 base.ifoo = x;
139 return base.noThrow(a,b,c);
143 Main base = new Main(); local
150 base.ifoo = x;
151 return base.checkThrow(a,b,c,d,e,f);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestSuite.java 17 package com.android.cts.verifier.location.base;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestSuite.java 17 package com.android.cts.verifier.sensors.base;
SensorCtsVerifierTestActivity.java 18 package com.android.cts.verifier.sensors.base;
  /device/google/contexthub/firmware/src/cpu/cortexm4f/
appSupport.c 37 uint32_t base, where; local
42 base = ramAddr;
46 base = flashAddr;
56 mem[where] += base;
176 static uintptr_t __attribute__((naked)) callWithR9(const void *base, uint32_t offset, void *data, uintptr_t arg1, uintptr_t arg2)
  /device/google/dragon/recovery/updater/
fmap.h 34 uint32_t offset; /* offset relative to base */
44 uint64_t base; /* address of the firmware binary */ member in struct:fmap
  /device/linaro/hikey/gralloc/
gralloc_module.cpp 108 hnd->base = ump_mapped_pointer_get((ump_handle)hnd->ump_mem_handle);
110 if (0 != hnd->base)
179 hnd->base = mappedAddress + hnd->offset;
210 void *base = (void *)hnd->base; local
213 if (munmap(base, size) < 0)
215 AERR("Could not munmap base:0x%p size:%lu '%s'", base, (unsigned long)size, strerror(errno));
228 hnd->base = 0;
305 *vaddr = (void *)hnd->base;
    [all...]
  /external/boringssl/src/include/openssl/
bytestring.h 18 #include <openssl/base.h>
240 struct cbb_buffer_st *base; member in struct:cbb_st
243 /* offset is the number of bytes from the start of |base->buf| to this |CBB|'s
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/
mock.py 15 import apitools.base.py as apitools_base namespace
mock_test.py 1 """Tests for apitools.base.py.testing.mock."""
6 import apitools.base.py as apitools_base namespace
7 from apitools.base.py.testing import mock
8 from apitools.base.py.testing import testclient as fusiontables
  /external/clang/test/SemaCXX/
qual-id-test.cpp 6 struct base // expected-note{{object type}} struct in namespace:A::B
23 struct sub : B::base
44 a.base::x();
46 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
49 a.A::B::base::x();
65 a->base::x();
67 a->B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
70 a->A::B::base::x();
82 i.foo(); // expected-error{{member reference base type 'int' is not a structure or union}}
88 typedef A::member base; // expected-note{{current scope} typedef
95 typedef A::B::base base; typedef
    [all...]
warn-overloaded-virtual.cpp 44 struct Base {
48 void Base::foo(int) { }
50 struct Derived : public Base {
85 struct Base {
89 struct Derived1: virtual Base {
93 struct Derived2: virtual Base {
103 struct Base {
107 struct Derived1: virtual Base {
111 struct Derived2: virtual Base {
143 struct base { struct in namespace:__anon8179
    [all...]
  /external/clang/tools/libclang/
IndexBody.cpp 23 typedef RecursiveASTVisitor<BodyIndexer> base; typedef in class:__anon8316::BodyIndexer
132 return base::TraverseCXXOperatorCallExpr(E, Q);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_mapping_libcdep.cc 18 // <mapping start> <mapping end> <base address> <dso name> // repeated
83 uptr base = modules[i].base_address(); local
89 text.append("%zx %zx %zx %s\n", start, end, base, module_name);
sanitizer_flags.cc 53 const char *base = GetProcessName(); local
54 CHECK(base);
55 while (*base && out < out_end - 1)
56 *out++ = *base++;
  /external/dbus/dbus/
dbus-server-debug-pipe.c 58 DBusServer base; /**< Parent class members. */ member in struct:DBusServerDebugPipe
168 if (!_dbus_server_init_base (&debug_server->base,
181 _dbus_server_trace_ref (&debug_server->base, 0, 1, "debug_pipe_new");
185 _dbus_server_finalize_base (&debug_server->base);
  /external/drm_gralloc/
gralloc_drm_priv.h 44 gralloc_module_t base; member in struct:drm_module_t
gralloc_drm_rockchip.c 15 struct gralloc_drm_drv_t base; member in struct:rockchip_info
22 struct gralloc_drm_bo_t base; member in struct:rockchip_buffer
119 buf->base.fb_handle = gem_handle;
124 buf->base.handle = handle;
126 return &buf->base;
192 info->base.destroy = drm_gem_rockchip_destroy;
193 info->base.alloc = drm_gem_rockchip_alloc;
194 info->base.free = drm_gem_rockchip_free;
195 info->base.map = drm_gem_rockchip_map;
196 info->base.unmap = drm_gem_rockchip_unmap
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/base/
BaseDroidDriver.java 17 package io.appium.droiddriver.base;
32 * Base DroidDriver that implements the common operations.

Completed in 1096 milliseconds

<<51525354555657585960>>