Home
last modified time | relevance | path

Searched refs:nested (Results 1 – 25 of 92) sorted by relevance

1234

/aosp12/build/blueprint/proptools/
H A Dunpack_test.go135 nested: {
136 nested: {
163 nested: {
185 nested: {
205 nested: {
233 nested: {
407 nested: {
439 nested: {
471 nested: {
1155 nested: { nested: { nested: { nested: { nested: {
[all …]
/aosp12/system/nvram/messages/tests/
H A Dio_test.cpp151 CheckRead(&nested, 5, 0); in TEST()
152 EXPECT_TRUE(nested.Done()); in TEST()
153 EXPECT_FALSE(nested.Skip(1)); in TEST()
159 CheckRead(&nested, 10, 0); in TEST()
160 EXPECT_TRUE(nested.Done()); in TEST()
161 EXPECT_FALSE(nested.Skip(1)); in TEST()
167 CheckRead(&nested, 8, 0); in TEST()
168 EXPECT_FALSE(nested.Done()); in TEST()
169 CheckRead(&nested, 8, 8); in TEST()
170 EXPECT_TRUE(nested.Done()); in TEST()
[all …]
/aosp12/system/tools/xsdc/tests/resources/nested_type/api/
H A Dcurrent.txt2 package nested.type {
6 method public nested.type.Employee.Address getAddress();
10 method public void setAddress(nested.type.Employee.Address);
18 method public nested.type.Employee.Address.Extra getExtra();
19 method public nested.type.Employee.Address.ExtraAddress getExtra_address();
23 method public void setExtra(nested.type.Employee.Address.Extra);
24 method public void setExtra_address(nested.type.Employee.Address.ExtraAddress);
47 …method public static nested.type.Employee read(java.io.InputStream) throws javax.xml.datatype.Data…
55 …method public static void write(nested.type.XmlWriter, nested.type.Employee) throws java.io.IOExce…
/aosp12/art/test/478-checker-inliner-nested-loop/
H A DAndroid.bp3 // Build rules for ART run-test `478-checker-inliner-nested-loop`.
16 name: "art-run-test-478-checker-inliner-nested-loop",
21 ":art-run-test-478-checker-inliner-nested-loop-expected-stdout",
22 ":art-run-test-478-checker-inliner-nested-loop-expected-stderr",
31 name: "art-run-test-478-checker-inliner-nested-loop-expected-stdout",
32 out: ["art-run-test-478-checker-inliner-nested-loop-expected-stdout.txt"],
39 name: "art-run-test-478-checker-inliner-nested-loop-expected-stderr",
40 out: ["art-run-test-478-checker-inliner-nested-loop-expected-stderr.txt"],
/aosp12/frameworks/base/services/incremental/
H A Dpath.h70 std::string_view relativize(std::string_view parent, std::string_view nested);
71 inline std::string_view relativize(const char* parent, const char* nested) { in relativize() argument
72 return relativize(std::string_view(parent), std::string_view(nested)); in relativize()
74 inline std::string_view relativize(std::string_view parent, const char* nested) { in relativize() argument
75 return relativize(parent, std::string_view(nested)); in relativize()
77 inline std::string_view relativize(const char* parent, std::string_view nested) { in relativize() argument
78 return relativize(std::string_view(parent), nested); in relativize()
81 std::string_view relativize(std::string&& parent, std::string_view nested) = delete;
82 std::string_view relativize(std::string_view parent, std::string&& nested) = delete;
H A Dpath.cpp70 std::string_view relativize(std::string_view parent, std::string_view nested) { in relativize() argument
71 if (!nested.starts_with(parent)) { in relativize()
72 return nested; in relativize()
74 if (nested.size() == parent.size()) { in relativize()
77 if (nested[parent.size()] != '/') { in relativize()
78 return nested; in relativize()
80 auto relative = nested.substr(parent.size()); in relativize()
/aosp12/system/incremental_delivery/incfs/include/
H A Dpath.h40 std::string_view relativize(std::string_view parent, std::string_view nested);
41 inline std::string_view relativize(const char* parent, const char* nested) { in relativize() argument
42 return relativize(std::string_view(parent), std::string_view(nested)); in relativize()
44 inline std::string_view relativize(std::string_view parent, const char* nested) { in relativize() argument
45 return relativize(parent, std::string_view(nested)); in relativize()
47 inline std::string_view relativize(const char* parent, std::string_view nested) { in relativize() argument
48 return relativize(std::string_view(parent), nested); in relativize()
51 std::string_view relativize(std::string&& parent, std::string_view nested) = delete;
52 std::string_view relativize(std::string_view parent, std::string&& nested) = delete;
/aosp12/hardware/interfaces/automotive/can/1.0/default/libnl++/
H A DMessageFactory.cpp47 void MessageFactoryBase::closeNested(nlmsghdr* msg, nlattr* nested) { in closeNested() argument
48 if (nested == nullptr) return; in closeNested()
49 nested->nla_len = uintptr_t(tail(msg)) - uintptr_t(nested); in closeNested()
/aosp12/system/incremental_delivery/incfs/
H A Dpath.cpp173 std::string_view relativize(std::string_view parent, std::string_view nested) { in relativize() argument
174 if (!nested.starts_with(parent)) { in relativize()
175 return nested; in relativize()
177 if (nested.size() == parent.size()) { in relativize()
180 if (nested[parent.size()] != '/') { in relativize()
181 return nested; in relativize()
183 auto relative = nested.substr(parent.size()); in relativize()
/aosp12/system/tools/aidl/build/
H A Daidl_rust_glue.py28 self.nested = collections.defaultdict(RustModule)
44 for name, mod in self.nested.items():
55 for name, mod in self.nested.items():
67 node = node.nested[part]
/aosp12/packages/modules/StatsD/statsd/src/state/
H A DStateTracker.cpp61 const bool nested = newState.mAnnotations.isNested(); in onLogEvent() local
63 updateStateForPrimaryKey(eventTimeNs, primaryKey, newState, nested, stateValueInfo); in onLogEvent()
114 const FieldValue& newState, const bool nested, in updateStateForPrimaryKey() argument
128 if (!nested) { in updateStateForPrimaryKey()
/aosp12/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/nested/
H A DLevel2Test.java17 package android.test.suitebuilder.examples.nested.nested;
/aosp12/system/connectivity/wificond/tests/
H A Dnl80211_packet_unittest.cpp252 NL80211NestedAttr nested(0); in TEST() local
253 EXPECT_TRUE(netlink_packet.GetAttribute(NL80211_ATTR_CQM, &nested)); in TEST()
254 EXPECT_TRUE(nested.GetAttributeValue(NL80211_ATTR_CQM_PKT_LOSS_EVENT, &value)); in TEST()
274 NL80211NestedAttr nested(0); in TEST() local
275 EXPECT_TRUE(netlink_packet.GetAttribute(NL80211_ATTR_STA_INFO, &nested)); in TEST()
/aosp12/build/blueprint/bootstrap/bpdoc/
H A Dbpdoc.go143 nested, err := r.PropertyStruct(nestedType.PkgPath(), nestedType.Name(), nestedValue)
147 nested.ExcludeByTag("blueprint", "mutated")
149 ps.Nest(nested)
155 nestPoint.Nest(nested)
162 nestedName += proptools.PropertyNameForField(nested.Name)
H A Dproperties.go145 func (ps *PropertyStruct) Nest(nested *PropertyStruct) {
146 ps.Properties = append(ps.Properties, nested.Properties...)
160 func (p *Property) Nest(nested *PropertyStruct) {
161 p.Properties = append(p.Properties, nested.Properties...)
/aosp12/frameworks/base/tools/codegen/src/com/android/codegen/
H A DFileInfo.kt84 parent.nested.add(this)
144 val nested: MutableList<ClassBounds> = mutableListOf(),
148 nested.filter { it.isDataclass }.sortedBy { it.range.start }
179 nested.forEach {
/aosp12/frameworks/proto_logging/stats/stats_log_api_gen/
H A DCollation.cpp56 nested(that.nested) { in AtomDecl()
251 const bool nested = stateFieldOption.nested(); in collate_field_annotations() local
252 atomDecl->nested = nested; in collate_field_annotations()
255 ANNOTATION_TYPE_BOOL, AnnotationValue(nested)); in collate_field_annotations()
/aosp12/packages/apps/CarrierConfig/tests/src/com/android/carrierconfig/
H A DCarrierConfigTest.java276 for (Class nested : CarrierConfigManager.class.getDeclaredClasses()) { in getCarrierConfigXmlNames()
277 Log.i("CarrierConfigTest", nested.toString()); in getCarrierConfigXmlNames()
278 if (Modifier.isStatic(nested.getModifiers())) { in getCarrierConfigXmlNames()
279 names.addAll(getCarrierConfigXmlNames(nested)); in getCarrierConfigXmlNames()
/aosp12/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DTestSuiteBuilderTest.java25 import android.test.suitebuilder.examples.nested.Level1Test;
26 import android.test.suitebuilder.examples.nested.nested.Level2Test;
/aosp12/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/
H A DStructNlAttr.java168 public StructNlAttr(short type, StructNlAttr... nested) { in StructNlAttr() argument
173 for (StructNlAttr nla : nested) payloadLength += nla.getAlignedLength(); in StructNlAttr()
177 for (StructNlAttr nla : nested) { in StructNlAttr()
/aosp12/packages/modules/Virtualization/docs/getting_started/
H A Dgoldfish.md13 [enable nested virtualization](https://www.linux-kvm.org/page/Nested_Guests) on your machine.
35 * `-qemu -cpu host`: needed to enable nested virtualization, instructs QEMU to allow Android
/aosp12/system/bt/gd/packet/parser/
H A Dfield_list.h133 FieldList Merge(FieldList nested) const { in Merge() argument
140 for (const auto& field : nested) { in Merge()
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DGapWorker.java76 void collectPrefetchPositionsFromView(RecyclerView view, boolean nested) { in collectPrefetchPositionsFromView() argument
86 if (nested) { in collectPrefetchPositionsFromView()
102 layout.mPrefetchMaxObservedInInitialPrefetch = nested; in collectPrefetchPositionsFromView()
/aosp12/art/test/650-checker-inline-access-thunks/
H A Dinfo.txt1 Test that access thunks for nested classes are inlined.
/aosp12/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/
H A DLevel1Test.java17 package android.test.suitebuilder.examples.nested;

1234