Home
last modified time | relevance | path

Searched refs:Location (Results 1 – 25 of 63) sorted by relevance

123

/system/tools/hidl/
DLocation.cpp59 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 …]
DLocation.h52 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
DReference.h37 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()
DNamedType.h31 NamedType(const char* localName, const FQName& fullName, const Location& loc, Scope* parent);
44 const Location& location() const;
54 const Location mLocation;
Dmain.cpp66 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 …]
DNamedType.cpp21 NamedType::NamedType(const char* localName, const FQName& fullName, const Location& loc, in NamedType()
45 const Location &NamedType::location() const { in location()
DMethod.h57 std::vector<Annotation*>* annotations, const Location& location);
111 const Location& location() const;
127 const Location mLocation;
DEnumType.h33 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;
DCoordinator.h55 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,
DScope.h36 Scope(const char* localName, const FQName& fullName, const Location& location, Scope* parent);
96 RootScope(const char* localName, const FQName& fullName, const Location& location,
DTypeDef.h26 TypeDef(const char* localName, const FQName& fullName, const Location& location, Scope* parent,
DTypeDef.cpp24 TypeDef::TypeDef(const char* localName, const FQName& fullName, const Location& location, in TypeDef()
/system/tools/hidl/test/host_test/
Dmain.cpp70 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/
DRegs.h42 struct Location { struct
43 Location(LocationEnum type, int16_t value) : type(type), value(value) {} in Location() function
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/
Dbtu.h47 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/
Dhci_layer.h73 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/
Dmessage_loop_thread.h70 bool DoInThread(const base::Location& from_here, base::OnceClosure task);
176 bool DoInThreadDelayed(const base::Location& from_here,
Donce_timer.h55 const base::Location& from_here, base::OnceClosure task,
Drepeating_timer.h55 const base::Location& from_here,
Dmessage_loop_thread.cc59 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/
Dbtif_common.h178 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/
DGpsActivity.java22 import android.location.Location;
70 public void onLocationChanged(Location location) {} in initLocation()
/system/core/libunwindstack/tests/
DRegsFake.h32 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/
Dbtif_hearing_aid.cc40 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/
Dbte_main.cc99 void post_to_main_message_loop(const base::Location& from_here, BT_HDR* p_msg) { in post_to_main_message_loop()

123