HomeSort by relevance Sort by last modified time
    Searched refs:is_default (Results 1 - 25 of 51) sorted by null

1 2 3

  /system/connectivity/shill/wimax/
wimax_service.h 70 bool is_default() const { return is_default_; } function in class:shill::WiMaxService
71 void set_is_default(bool is_default) { is_default_ = is_default; }
wimax_provider_unittest.cc 291 EXPECT_FALSE(services[0]->is_default());
292 EXPECT_FALSE(services[1]->is_default());
293 EXPECT_FALSE(services[2]->is_default());
294 EXPECT_TRUE(services[3]->is_default());
420 EXPECT_FALSE(service->is_default());
428 EXPECT_FALSE(service->is_default());
597 EXPECT_FALSE(service->is_default());
wimax_provider.cc 148 if (service->is_default()) {
491 if (service->is_default()) {
  /system/connectivity/shill/
mock_connection.h 37 MOCK_CONST_METHOD0(is_default, bool());
38 MOCK_METHOD1(SetIsDefault, void(bool is_default));
connection.h 101 virtual bool is_default() const { return is_default_; } function in class:shill::Connection
102 virtual void SetIsDefault(bool is_default);
184 uint32_t GetMetric(bool is_default);
connection.cc 323 void Connection::SetIsDefault(bool is_default) {
326 << is_default_ << " -> " << is_default; local
327 if (is_default == is_default_) {
331 routing_table_->SetDefaultMetric(interface_index_, GetMetric(is_default));
333 is_default_ = is_default;
336 if (is_default) {
558 uint32_t Connection::GetMetric(bool is_default) {
562 return is_default ? kDefaultMetric : kNonDefaultMetricBase + interface_index_;
connection_unittest.cc 279 EXPECT_FALSE(connection_->is_default());
351 EXPECT_TRUE(connection_->is_default());
360 EXPECT_FALSE(connection_->is_default());
463 EXPECT_TRUE(connection->is_default());
470 EXPECT_FALSE(connection->is_default());
    [all...]
device_unittest.cc     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/
vpc.py 39 :ivar is_default: Indicates whether the VPC is the default VPC.
48 self.is_default = None
65 self.is_default = True if value == 'true' else False
  /art/test/968-default-partial-compile-generated/util-src/
generate_smali.py 234 assert exp.is_default()
368 def is_default(self): member in class:ConflictInterface
462 def is_default(self): member in class:TestInterface
482 elif best.is_default():
483 if super_best.is_default():
486 if super_best.is_default():
525 if self.is_default():
  /art/test/971-iface-super/util-src/
generate_smali.py 422 def is_default(self): member in class:ConflictInterface
524 def is_default(self): function
535 if self.is_default():
538 if self.is_default():
543 if self.is_default():
565 elif best.is_default():
566 if super_best.is_default():
569 if super_best.is_default():
605 if self.is_default():
generate_java.py 90 filters = (lambda a: a.is_default(), lambda a: not a.is_default())
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtp_analyze.cc 71 if (!google::GetCommandLineFlagInfoOrDie("audio_level").is_default) {
77 if (!google::GetCommandLineFlagInfoOrDie("abs_send_time").is_default) {
  /frameworks/base/media/java/android/media/
SubtitleController.java 230 boolean is_default =
238 // is_default is meaningless unless caption language is 'default'
240 (((selectedLocale == null) && is_default) ? 4 : 0) +
248 if ((selectedLocale == null && is_default) ||
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/vpc/
test_vpc.py 39 self.assertFalse(vpc.is_default)
  /external/google-breakpad/src/third_party/linux/include/gflags/
gflags.h 176 bool is_default; // true if the flag has default value member in struct:google::CommandLineFlagInfo
222 // if (GetCommandLineFlagInfoOrDie("foo").is_default) ...
  /external/libyuv/files/third_party/gflags/gen/posix/include/gflags/
gflags.h 162 bool is_default; // true if the flag has the default value and member in struct:GFLAGS_NAMESPACE::CommandLineFlagInfo
222 // if (GetCommandLineFlagInfoOrDie("foo").is_default) ...
  /external/libyuv/files/third_party/gflags/gen/win/include/gflags/
gflags.h 162 bool is_default; // true if the flag has the default value and member in struct:GFLAGS_NAMESPACE::CommandLineFlagInfo
222 // if (GetCommandLineFlagInfoOrDie("foo").is_default) ...
  /external/webrtc/third_party/gflags/gen/posix/include/gflags/
gflags.h 189 bool is_default; // true if the flag has the default value and member in struct:google::CommandLineFlagInfo
244 // if (GetCommandLineFlagInfoOrDie("foo").is_default) ...
  /toolchain/binutils/binutils-2.25/gold/
cref.cc 314 if (sym->is_default())
  /external/v8/src/ast/
ast-literal-reindexer.cc 242 if (!node->is_default()) Visit(node->label());
ast-expression-rewriter.cc 380 if (!node->is_default()) {
prettyprinter.cc 159 if (!clause->is_default()) {
617 if (clause->is_default()) {
    [all...]
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.cc 208 if (!cc->is_default()) Visit(cc->label());
  /external/webrtc/third_party/gflags/gen/win/include/gflags/
gflags.h 212 bool is_default; // true if the flag has the default value and member in struct:google::CommandLineFlagInfo
266 // if (GetCommandLineFlagInfoOrDie("foo").is_default) ...

Completed in 1664 milliseconds

1 2 3