HomeSort by relevance Sort by last modified time
    Searched refs:kBase (Results 1 - 8 of 8) sorted by null

  /external/libchrome/base/strings/
string_number_conversions.cc 125 // - constant kBase, the base in which to interpret the input
183 if (traits::kBase == 16 && end - begin > 2 && *begin == '0' &&
191 if (!CharToDigit<traits::kBase>(*current, &new_digit)) {
199 *output *= traits::kBase;
211 if (*output > static_cast<value_type>(traits::max() / traits::kBase) ||
212 (*output == static_cast<value_type>(traits::max() / traits::kBase) &&
213 new_digit > traits::max() % traits::kBase)) {
227 if (*output < traits::min() / traits::kBase ||
228 (*output == traits::min() / traits::kBase &&
229 new_digit > 0 - traits::min() % traits::kBase)) {
    [all...]
  /art/runtime/base/unix_file/
fd_file.cc 43 : guard_state_(check_usage ? GuardState::kBase : GuardState::kNoCheck),
52 : guard_state_(check_usage ? GuardState::kBase : GuardState::kNoCheck),
146 guard_state_ = GuardState::kBase;
208 moveTo(GuardState::kBase, GuardState::kClosed, "Truncating closed file.");
225 moveTo(GuardState::kBase, GuardState::kClosed, "Writing into closed file.");
278 moveTo(GuardState::kBase, GuardState::kClosed, "Writing into closed file.");
fd_file.h 77 guard_state_ = fd == -1 ? GuardState::kNoCheck : GuardState::kBase;
140 kBase, // Base, file has not been flushed or closed.
  /external/libmojo/mojo/public/cpp/bindings/tests/
type_conversion_unittest.cc 166 const RedmondRect kBase = {10, 20, 30, 40};
170 RedmondRect rr = kBase;
186 const RedmondRect kBase = {10, 20, 30, 40};
189 RedmondRect rect = kBase;
  /art/runtime/
runtime_callbacks_test.cc 108 kBase,
117 if (state == CallbackState::kBase) {
134 CallbackState state = CallbackState::kBase;
147 cb_.state = CallbackState::kBase; // Ignore main thread attach.
  /art/runtime/arch/mips/
instruction_set_features_mips.cc 34 kBase,
47 static constexpr MipsLevel kRuntimeMipsLevel = MipsLevel::kBase;
  /external/v8/src/regexp/
jsregexp.h 285 static const int kBase = 0;
    [all...]
jsregexp.cc     [all...]

Completed in 803 milliseconds