HomeSort by relevance Sort by last modified time
    Searched full:base (Results 351 - 375 of 40563) sorted by null

<<11121314151617181920>>

  /system/core/base/
parsedouble_test.cpp 17 #include "android-base/parsedouble.h"
23 ASSERT_FALSE(android::base::ParseDouble("", &d));
24 ASSERT_FALSE(android::base::ParseDouble("x", &d));
25 ASSERT_FALSE(android::base::ParseDouble("123.4x", &d));
27 ASSERT_TRUE(android::base::ParseDouble("123.4", &d));
29 ASSERT_TRUE(android::base::ParseDouble("-123.4", &d));
32 ASSERT_TRUE(android::base::ParseDouble("0", &d, 0.0));
34 ASSERT_FALSE(android::base::ParseDouble("0", &d, 1e-9));
35 ASSERT_FALSE(android::base::ParseDouble("3.0", &d, -1.0, 2.0));
36 ASSERT_TRUE(android::base::ParseDouble("1.0", &d, 0.0, 2.0))
    [all...]
parseint_test.cpp 17 #include "android-base/parseint.h"
23 ASSERT_FALSE(android::base::ParseInt("x", &i));
24 ASSERT_FALSE(android::base::ParseInt("123x", &i));
26 ASSERT_TRUE(android::base::ParseInt("123", &i));
28 ASSERT_TRUE(android::base::ParseInt("-123", &i));
32 ASSERT_TRUE(android::base::ParseInt("1234", &s));
35 ASSERT_TRUE(android::base::ParseInt("12", &i, 0, 15));
37 ASSERT_FALSE(android::base::ParseInt("-12", &i, 0, 15));
38 ASSERT_FALSE(android::base::ParseInt("16", &i, 0, 15));
43 ASSERT_FALSE(android::base::ParseUint("x", &i))
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/arm/tzc400/
tzc400.c 44 uint64_t base; member in struct:tzc_instance
53 static inline uint32_t tzc_read_build_config(uint64_t base)
55 return mmio_read_32(base + BUILD_CONFIG_OFF);
58 static inline uint32_t tzc_read_gate_keeper(uint64_t base)
60 return mmio_read_32(base + GATE_KEEPER_OFF);
63 static inline void tzc_write_gate_keeper(uint64_t base, uint32_t val)
65 mmio_write_32(base + GATE_KEEPER_OFF, val);
68 static inline void tzc_write_action(uint64_t base, tzc_action_t action)
70 mmio_write_32(base + ACTION_OFF, action);
73 static inline void tzc_write_region_base_low(uint64_t base,
    [all...]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/NorthCluster/Include/
PlatformBaseAddresses.h 38 // Define platform base
58 #define SMBUS_BASE_ADDRESS 0xEFA0 // SMBus IO Base Address
59 #define SPI_BASE_ADDRESS 0xFED01000 // SPI Memory Base Address
60 #define PMC_BASE_ADDRESS 0xFED03000 // PMC Memory Base Address
61 #define SMBM_BASE_ADDRESS 0xFED04000 // SMBus Memory Base Address
62 #define IO_BASE_ADDRESS 0xFED0C000 // IO Memory Base Address
63 #define ILB_BASE_ADDRESS 0xFED08000 // ILB Memory Base Address
64 #define HPET_BASE_ADDRESS 0xFED00000 // HPET Base Address
65 #define RCBA_BASE_ADDRESS 0xFED1C000 // Root Complex Base Address
66 #define MPHY_BASE_ADDRESS 0xFEF00000 // MPHY Memory Base Address
    [all...]
  /external/clang/test/PCH/
cxx11-inheriting-ctors.cpp 18 struct Base {
19 Base(int) {}
22 Base(T) {}
25 struct Test : Base {
26 using Base::Base;
30 struct Test2 : Base {
31 using Base::Base;
46 Test3<Base> test3a(42)
    [all...]
  /external/v8/src/compiler-dispatcher/
optimizing-compile-dispatcher.h 10 #include "src/base/atomicops.h"
11 #include "src/base/platform/condition-variable.h"
12 #include "src/base/platform/mutex.h"
13 #include "src/base/platform/platform.h"
35 base::NoBarrier_Store(&mode_, static_cast<base::AtomicWord>(COMPILE));
49 base::LockGuard<base::Mutex> access_input_queue(&input_queue_mutex_);
78 base::Mutex input_queue_mutex_;
84 base::Mutex output_queue_mutex_
    [all...]
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_batchbuffer.c 19 struct i915_winsys_batchbuffer base; member in struct:i915_sw_batchbuffer
33 memset(batch->base.map, 0, batch->actual_size);
34 batch->base.ptr = batch->base.map;
35 batch->base.size = batch->actual_size - BATCH_RESERVED;
36 batch->base.relocs = 0;
47 batch->base.map = MALLOC(batch->actual_size);
48 batch->base.ptr = NULL;
49 batch->base.size = 0;
51 batch->base.relocs = 0
    [all...]
  /external/pdfium/third_party/bigint/
BigUnsignedInABase.cc 9 BigUnsignedInABase::BigUnsignedInABase(const Digit *d, Index l, Base base)
10 : NumberlikeArray<Digit>(d, l), base(base) {
11 // Check the base
12 if (base < 2)
17 if (blk[i] >= base)
38 BigUnsignedInABase::BigUnsignedInABase(const BigUnsigned &x, Base base) {
39 // Check the base
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/15.0/
guava-15.0.jar 
  /external/libbrillo/brillo/
file_utils_unittest.cc 12 #include <base/files/file_util.h>
13 #include <base/files/scoped_temp_dir.h>
26 base::FilePath file_path_;
27 base::ScopedTempDir temp_dir_;
33 base::WriteFile(file_path_, contents.c_str(), contents.length()));
38 EXPECT_TRUE(base::PathExists(file_path_));
40 EXPECT_TRUE(base::ReadFileToString(file_path_, &new_contents));
47 EXPECT_TRUE(base::GetPosixFilePermissions(file_path_, &actual_permissions));
56 base::FILE_PERMISSION_READ_BY_USER | base::FILE_PERMISSION_WRITE_BY_USER
    [all...]
file_utils.cc 10 #include <base/files/file_path.h>
11 #include <base/files/file_util.h>
12 #include <base/files/scoped_file.h>
13 #include <base/logging.h>
14 #include <base/posix/eintr_wrapper.h>
25 // Verify that base file permission enums are compatible with S_Ixxx. If these
27 // away from using base permission enums and add a note to the function comments
28 // indicating that base enums can not be used.
29 static_assert(base::FILE_PERMISSION_READ_BY_USER == S_IRUSR,
30 "base file permissions don't match unistd.h permissions")
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
binding_set.h 12 #include "base/bind.h"
13 #include "base/callback.h"
14 #include "base/macros.h"
15 #include "base/memory/weak_ptr.h"
28 void set_connection_error_handler(const base::Closure& error_handler) {
35 base::Bind(&BindingSet::OnConnectionError, base::Unretained(this)));
65 base::Bind(&Element::OnConnectionError, base::Unretained(this)));
70 void set_connection_error_handler(const base::Closure& error_handler)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineDominanceFrontier.h 21 ForwardDominanceFrontierBase<MachineBasicBlock> Base;
37 return Base;
41 return Base.getRoots();
45 return Base.getRoot();
49 return Base.isPostDominator();
53 return Base.begin();
57 return Base.begin();
61 return Base.end();
65 return Base.end();
69 return Base.find(B)
    [all...]
  /external/skia/third_party/freetype2/
BUILD.gn 37 "../externals/freetype/src/base/ftbase.c",
38 "../externals/freetype/src/base/ftbbox.c",
39 "../externals/freetype/src/base/ftbitmap.c",
40 "../externals/freetype/src/base/ftdebug.c",
41 "../externals/freetype/src/base/ftfntfmt.c",
42 "../externals/freetype/src/base/ftfstype.c",
43 "../externals/freetype/src/base/ftgasp.c",
44 "../externals/freetype/src/base/ftglyph.c",
45 "../externals/freetype/src/base/ftinit.c",
46 "../externals/freetype/src/base/ftlcdfil.c"
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscBaseBoardManufacturer.uni 19 #string STR_MISC_BASE_BOARD_MANUFACTURER #language en-US "Base Board Manufacturer"
20 #string STR_MISC_BASE_BOARD_PRODUCT_NAME #language en-US "Base Board Product Name"
21 #string STR_MISC_BASE_BOARD_VERSION #language en-US "Base Board Version"
22 #string STR_MISC_BASE_BOARD_SERIAL_NUMBER #language en-US "Base Board Serial Number"
23 #string STR_MISC_BASE_BOARD_ASSET_TAG #language en-US "Base Board Asset Tag"
24 #string STR_MISC_BASE_BOARD_CHASSIS_LOCATION #language en-US "Base Board Chassis Location"
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/
CpuGdt.c 28 0x0, // base 15:0
29 0x0, // base 23:16
32 0x0, // base 31:24
39 0x0, // base 15:0
40 0x0, // base 23:16
50 0x0, // base 15:0
51 0x0, // base 23:16
61 0x0, // base 15:0
62 0x0, // base 23:16
72 0x0, // base 15:0
    [all...]
  /external/clang/test/SemaTemplate/
temp.cpp 11 namespace A { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found}}
12 namespace B { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found}}
14 template<typename T> struct Derived : A::Base<char>, B::Base<int> {
16 typename Derived::Base<float>::t x; // expected-error {{found in multiple base classes of different types}} \
  /external/libchrome/base/mac/
mach_port_broker_unittest.cc 5 #include "base/mac/mach_port_broker.h"
7 #include "base/command_line.h"
8 #include "base/synchronization/lock.h"
9 #include "base/synchronization/waitable_event.h"
10 #include "base/test/multiprocess_test.h"
11 #include "base/test/test_timeouts.h"
15 namespace base { namespace
22 public base::PortProvider::Observer {
26 event_(base::WaitableEvent::ResetPolicy::MANUAL,
27 base::WaitableEvent::InitialState::NOT_SIGNALED)
    [all...]
  /external/libchrome/base/metrics/
metrics_hashes_unittest.cc 5 #include "base/metrics/metrics_hashes.h"
10 #include "base/format_macros.h"
11 #include "base/macros.h"
12 #include "base/strings/stringprintf.h"
15 namespace base { namespace
30 std::string hash_hex = base::StringPrintf("0x%016" PRIx64, hash);
  /external/libchrome/base/test/
simple_test_clock.h 8 #include "base/compiler_specific.h"
9 #include "base/synchronization/lock.h"
10 #include "base/time/clock.h"
11 #include "base/time/time.h"
13 namespace base { namespace
39 } // namespace base
simple_test_tick_clock.h 8 #include "base/compiler_specific.h"
9 #include "base/synchronization/lock.h"
10 #include "base/time/tick_clock.h"
11 #include "base/time/time.h"
13 namespace base { namespace
39 } // namespace base
test_file_util.cc 5 #include "base/test/test_file_util.h"
7 #include "base/test/test_timeouts.h"
8 #include "base/threading/platform_thread.h"
10 namespace base { namespace
23 // Declared in base/files/file_path.h.
28 } // namespace base
  /external/libchrome/base/trace_event/
memory_allocator_dump_guid.cc 5 #include "base/trace_event/memory_allocator_dump_guid.h"
7 #include "base/format_macros.h"
8 #include "base/sha1.h"
9 #include "base/strings/stringprintf.h"
11 namespace base { namespace
38 } // namespace base

Completed in 799 milliseconds

<<11121314151617181920>>