HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 176 - 200 of 5760) sorted by null

1 2 3 4 5 6 78 91011>>

  /hardware/qcom/display/msm8994/libqdutils/
qdMetaData.cpp 53 void *base = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, local
55 if (base == reinterpret_cast<void*>(MAP_FAILED)) {
59 MetaData_t *data = reinterpret_cast <MetaData_t *>(base);
99 if(munmap(base, size))
100 ALOGE("%s: failed to unmap ptr %p, err %d", __func__, (void*)base,
  /prebuilts/go/darwin-x86/src/cmd/go/internal/base/
env.go 5 package base package
14 func EnvForDir(dir string, base []string) []string {
17 return MergeEnvLists([]string{"PWD=" + dir}, base)
signal_notunix.go 7 package base package
signal_unix.go 7 package base package
  /prebuilts/go/linux-x86/src/cmd/go/internal/base/
env.go 5 package base package
14 func EnvForDir(dir string, base []string) []string {
17 return MergeEnvLists([]string{"PWD=" + dir}, base)
signal_notunix.go 7 package base package
signal_unix.go 7 package base package
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/container.adaptors/queue/queue.cons.alloc/
ctor_alloc.pass.cpp 24 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; typedef in struct:test
26 explicit test(const test_allocator<int>& a) : base(a) {}
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/container.adaptors/stack/stack.cons.alloc/
ctor_alloc.pass.cpp 24 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; typedef in struct:test
26 explicit test(const test_allocator<int>& a) : base(a) {}
27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {}
29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/input.streams/istream/istream.cons/
copy.fail.cpp 27 typedef std::basic_istream<char> base; typedef in struct:test_istream
30 : base(std::move(s)) // OK
35 base::operator=(std::move(s)); // OK
40 : base(s) // expected-error {{call to deleted constructor of 'std::basic_istream<char>'}}
45 base::operator=(s); // expected-error {{call to deleted member function 'operator='}}
  /system/core/base/
errors_test.cpp 17 #include "android-base/errors.h"
22 namespace base { namespace in namespace:android
33 } // namespace base
errors_unix.cpp 17 #include "android-base/errors.h"
22 namespace base { namespace in namespace:android
28 } // namespace base
test_utils_test.cpp 17 #include "android-base/test_utils.h"
23 namespace base { namespace in namespace:android
45 } // namespace base
  /system/core/base/include/android-base/
errors.h 36 namespace base { namespace in namespace:android
43 } // namespace base
parsenetaddress.h 23 namespace base { namespace in namespace:android
35 } // namespace base
properties.h 31 namespace base { namespace in namespace:android
74 } // namespace base
stringprintf.h 24 namespace base { namespace in namespace:android
53 } // namespace base
utf8.h 31 namespace base { namespace in namespace:android
80 // using namespace android::base::utf8;
83 // int fd = open(name, ...); // Calls android::base::utf8::open().
85 // unlink(name); // Calls android::base::utf8::unlink().
103 } // namespace base
  /toolchain/binutils/binutils-2.27/libiberty/
lbasename.c 51 const char *base; local
53 for (base = name; *name; name++)
55 base = name + 1;
57 return base;
63 const char *base; local
69 for (base = name; *name; name++)
71 base = name + 1;
73 return base;
  /art/test/066-mismatched-super/src/
Main.java 23 Base base = new Base(); local
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
bsearch.c 54 * the base up one item past p: e.g., when lim is 5 we change base
65 const char *base = base0; local
75 p = base + (lim >> 1) * size;
80 base = (const char *)p + size;
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Bsearch.c 73 * the base up one item past p: e.g., when lim is 5 we change base
89 const char *base = base0; local
95 p = base + (lim >> 1) * size;
100 base = (char *)p + size;
  /external/clang/test/CodeGenCXX/
debug-info-template-recursive.cpp 3 class base { }; class
5 template <class T> class foo : public base {
  /external/guava/guava/src/com/google/common/base/
VerifyException.java 15 package com.google.common.base;
  /external/libchrome/base/
bind.h 8 #include "base/bind_internal.h"
22 // read the top comment of base/bind_internal.h for a definition of common
25 namespace base { namespace
81 } // namespace base

Completed in 303 milliseconds

1 2 3 4 5 6 78 91011>>