/system/tools/hidl/ |
D | Location.cpp | 59 Location::Location(const Position& begin, const Position& end) in Location() function in android::Location 62 void Location::setLocation(const Position& begin, const Position& end) { in setLocation() 68 bool Location::isValid() const { in isValid() 72 const Position& Location::begin() const { in begin() 76 const Position& Location::end() const { in end() 80 Location Location::startOf(const std::string& path) { in startOf() 81 return Location(Position(path, 1, 1), Position(path, 1, 1)); in startOf() 84 bool Location::inSameFile(const Location& lhs, const Location& rhs) { in inSameFile() 88 bool Location::intersect(const Location& lhs, const Location& rhs) { in intersect() 93 bool Location::operator<(const Location& loc) const { in operator <() [all …]
|
D | Location.h | 52 struct Location { struct 53 Location() = default; 54 Location(const Position& begin, const Position& end); 62 static Location startOf(const std::string& path); 64 static bool inSameFile(const Location& lhs, const Location& rhs); 65 static bool intersect(const Location& lhs, const Location& rhs); 68 bool operator<(const Location& loc) const; 79 std::ostream& operator<<(std::ostream& ostr, const Location& loc); argument
|
D | Reference.h | 37 Reference(const FQName& fqName, const Location& location) in Reference() 40 Reference(T* type, const Location& location) : mResolved(type), mLocation(location) { in Reference() 49 Reference(const Reference<OtherT>& ref, const Location& location) in Reference() 98 const Location& location() const { in location() 110 Location mLocation; 125 NamedReference(const std::string& name, const Reference<T>& reference, const Location& location) in NamedReference()
|
D | NamedType.h | 31 NamedType(const char* localName, const FQName& fullName, const Location& loc, Scope* parent); 44 const Location& location() const; 54 const Location mLocation;
|
D | main.cpp | 66 Coordinator::Location location, std::string* file) const { in getOutputFile() 75 Coordinator::Location location, in appendOutputFiles() 77 if (location == Coordinator::Location::STANDARD_OUT) { in appendOutputFiles() 94 Coordinator::Location location) const { in generate() 127 Coordinator::Location mLocation; // how to compute location relative to the output directory 482 status_t err = coordinator->getFilepath(fqName, Coordinator::Location::PACKAGE_ROOT, in isTestPackage() 989 Coordinator::Location::STANDARD_OUT, 1004 Coordinator::Location::GEN_OUTPUT, 1013 Coordinator::Location::GEN_OUTPUT, 1022 Coordinator::Location::GEN_OUTPUT, [all …]
|
D | NamedType.cpp | 21 NamedType::NamedType(const char* localName, const FQName& fullName, const Location& loc, in NamedType() 45 const Location &NamedType::location() const { in location()
|
D | Method.h | 57 std::vector<Annotation*>* annotations, const Location& location); 111 const Location& location() const; 127 const Location mLocation;
|
D | EnumType.h | 33 EnumType(const char* localName, const FQName& fullName, const Location& location, 144 EnumValue(const char* name, ConstantExpression* value, const Location& location); 156 const Location& location() const; 161 const Location mLocation;
|
D | Coordinator.h | 55 enum class Location { enum 63 status_t getFilepath(const FQName& fqName, Location location, const std::string& fileName, 66 Formatter getFormatter(const FQName& fqName, Location location,
|
D | Scope.h | 36 Scope(const char* localName, const FQName& fullName, const Location& location, Scope* parent); 96 RootScope(const char* localName, const FQName& fullName, const Location& location,
|
D | TypeDef.h | 26 TypeDef(const char* localName, const FQName& fullName, const Location& location, Scope* parent,
|
D | TypeDef.cpp | 24 TypeDef::TypeDef(const char* localName, const FQName& fullName, const Location& location, in TypeDef()
|
/system/tools/hidl/test/host_test/ |
D | main.cpp | 70 using Location = Coordinator::Location; in TEST_F() typedef 83 EXPECT_EQ_OK("foo/x.y", coordinator.getFilepath, kName, Location::DIRECT, "x.y"); in TEST_F() 84 EXPECT_EQ_OK("foo/a1/b1/c/1.2/x.y", coordinator.getFilepath, kName, Location::PACKAGE_ROOT, in TEST_F() 86 EXPECT_EQ_OK("foo/a/b/c/1.2/x.y", coordinator.getFilepath, kName, Location::GEN_OUTPUT, "x.y"); in TEST_F() 87 EXPECT_EQ_OK("foo/a/b/c/V1_2/x.y", coordinator.getFilepath, kName, Location::GEN_SANITIZED, in TEST_F() 91 EXPECT_EQ_OK("foo/", coordinator.getFilepath, kName, Location::DIRECT, ""); in TEST_F() 92 EXPECT_EQ_OK("foo/a1/b1/c/1.2/", coordinator.getFilepath, kName, Location::PACKAGE_ROOT, ""); in TEST_F() 93 EXPECT_EQ_OK("foo/a/b/c/1.2/", coordinator.getFilepath, kName, Location::GEN_OUTPUT, ""); in TEST_F() 94 EXPECT_EQ_OK("foo/a/b/c/V1_2/", coordinator.getFilepath, kName, Location::GEN_SANITIZED, ""); in TEST_F() 98 Location a{{"file", 3, 4}, {"file", 3, 5}}; in TEST_F() [all …]
|
/system/core/libunwindstack/include/unwindstack/ |
D | Regs.h | 42 struct Location { struct 43 Location(LocationEnum type, int16_t value) : type(type), value(value) {} in Location() argument 49 Regs(uint16_t total_regs, const Location& return_loc) in Regs() argument 86 Location return_loc_; 93 RegsImpl(uint16_t total_regs, Location return_loc) in RegsImpl()
|
/system/bt/stack/include/ |
D | btu.h | 47 void btu_hcif_send_cmd_with_cb(const base::Location& posted_from, 63 bt_status_t do_in_main_thread(const base::Location& from_here,
|
/system/bt/hci/include/ |
D | hci_layer.h | 73 base::Callback<void(const base::Location&, BT_HDR*)> send_data_cb); 93 void post_to_main_message_loop(const base::Location& from_here, BT_HDR* p_msg);
|
/system/bt/common/ |
D | message_loop_thread.h | 70 bool DoInThread(const base::Location& from_here, base::OnceClosure task); 176 bool DoInThreadDelayed(const base::Location& from_here,
|
D | once_timer.h | 55 const base::Location& from_here, base::OnceClosure task,
|
D | repeating_timer.h | 55 const base::Location& from_here,
|
D | message_loop_thread.cc | 59 bool MessageLoopThread::DoInThread(const base::Location& from_here, in DoInThread() 64 bool MessageLoopThread::DoInThreadDelayed(const base::Location& from_here, in DoInThreadDelayed()
|
/system/bt/btif/include/ |
D | btif_common.h | 178 extern bt_status_t do_in_jni_thread(const base::Location& from_here, 187 base::Callback<R(Args...)> jni_thread_wrapper(const base::Location& from_here, in jni_thread_wrapper() 190 [](const base::Location& from_here, base::Callback<R(Args...)> cb, in jni_thread_wrapper()
|
/system/extras/power_profile/gps_on/Application/src/main/java/com/example/android/powerprofile/gpson/ |
D | GpsActivity.java | 22 import android.location.Location; 70 public void onLocationChanged(Location location) {} in initLocation()
|
/system/core/libunwindstack/tests/ |
D | RegsFake.h | 32 RegsFake(uint16_t total_regs) : Regs(total_regs, Regs::Location(Regs::LOCATION_UNKNOWN, 0)) {} in RegsFake() 80 : RegsImpl<TypeParam>(total_regs, Regs::Location(Regs::LOCATION_UNKNOWN, 0)) {} in RegsImplFake()
|
/system/bt/btif/src/ |
D | btif_hearing_aid.cc | 40 base::Callback<void()> jni_thread_wrapper(const base::Location& from_here, in jni_thread_wrapper() 43 [](const base::Location& from_here, base::Callback<void()> cb) { in jni_thread_wrapper()
|
/system/bt/main/ |
D | bte_main.cc | 99 void post_to_main_message_loop(const base::Location& from_here, BT_HDR* p_msg) { in post_to_main_message_loop()
|