Home
last modified time | relevance | path

Searched defs:ele (Results 1 – 25 of 101) sorted by relevance

12345

/aosp_15_r20/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/util/
H A DXmlUtils.java204 public static void appendChildren(Element ele, List<Element> children) { in appendChildren()
225 var ele = doc.createElement(XmlUtils.OD_TAG_PBUNDLE_AS_MAP); in createPbundleEleWithName() local
232 var ele = doc.createElement(XmlUtils.OD_TAG_BOOLEAN); in createOdBooleanEle() local
239 public static void maybeSetHrBoolAttr(Element ele, String attrName, Boolean b) { in maybeSetHrBoolAttr()
247 var ele = doc.createElement(XmlUtils.OD_TAG_LONG); in createOdLongEle() local
255 var ele = doc.createElement(XmlUtils.OD_TAG_STRING); in createOdStringEle() local
292 public static Long tryGetVersion(Element ele) throws MalformedXmlException { in tryGetVersion()
306 Element ele, String attrName, Set<String> requiredNames) throws MalformedXmlException { in getPipelineSplitAttr()
311 public static List<String> getPipelineSplitAttr(Element ele, String attrName, boolean required) in getPipelineSplitAttr()
330 public static Boolean getBoolAttr(Element ele, String attrName, Set<String> requiredStrings) in getBoolAttr()
[all …]
/aosp_15_r20/frameworks/native/services/surfaceflinger/TimeStats/timestatsproto/
H A DTimeStatsHelper.cpp54 for (const auto& ele : hist) { in totalTime() local
63 for (const auto& ele : hist) { in averageTime() local
126 for (const auto& ele : deltas) { in toString() local
175 for (const auto& ele : stats) { in toString() local
188 for (const auto& ele : dumpStats) { in toString() local
201 for (const auto& ele : deltas) { in toProto() local
222 for (const auto& ele : refreshRateStatsLegacy) { in toProto() local
245 for (const auto& ele : dumpStats) { in toProto() local
257 for (const auto& ele : stats) { in generateDumpStats() local
263 for (const auto& ele : stats) { in generateDumpStats() local
/aosp_15_r20/frameworks/base/tools/app_metadata_bundles/src/test/java/com/android/asllib/marshallable/
H A DSecurityLabelsTest.java62 var ele = in testMissingOptionalFields() local
70 var ele = in testMissingOptionalFields() local
86 Element ele = securityLabels.toOdDomElement(doc); in testHrToOdSecurityLabels() local
98 Element ele = securityLabels.toHrDomElement(doc); in testOdToHrSecurityLabels() local
H A DThirdPartyVerificationTest.java95 Element ele = thirdPartyVerification.toOdDomElement(doc); in testHrToOdThirdPartyVerification() local
107 Element ele = thirdPartyVerification.toHrDomElement(doc); in testOdToHrThirdPartyVerification() local
H A DSafetyLabelsTest.java68 var ele = in testValidFieldsV1() local
77 var ele = in testUnrecognizedFieldV2() local
H A DAndroidSafetyLabelTest.java85 var ele = in testMissingRequiredFieldsOdV2() local
100 var ele = in testMissingOptionalFieldsOdV1() local
H A DSystemAppSafetyLabelTest.java97 var ele = in hrToOdExpectException() local
107 var ele = in odToHrExpectException() local
H A DAppInfoTest.java201 var ele = in testMissingOptionalFields() local
210 var ele = in testMissingOptionalFields() local
H A DDataLabelsTest.java312 var ele = TestUtils.getElementFromResource(Paths.get(DATA_LABELS_HR_PATH, fileName)); in hrToOdExpectException() local
320 var ele = TestUtils.getElementFromResource(Paths.get(DATA_LABELS_OD_PATH, fileName)); in odToHrExpectException() local
/aosp_15_r20/frameworks/native/services/gpuservice/gpustats/
H A DGpuStats.cpp363 for (const auto& ele : mGlobalStats) { in dumpGlobalLocked() local
370 for (const auto& ele : mAppStats) { in dumpAppLocked() local
396 for (const auto& ele : value) { in int64VectorToProtoByteString() local
411 for (const auto& ele : mAppStats) { in pullAppInfoAtom() local
463 for (const auto& ele : mGlobalStats) { in pullGlobalInfoAtom() local
/aosp_15_r20/external/tinyxml2/
H A Dxmltest.cpp590 XMLElement* ele = doc.FirstChildElement(); in main() local
626 XMLElement* ele = doc.FirstChildElement(); in main() local
1383 for( XMLNode* ele = xml.FirstChildElement( "Parent" )->FirstChild(); in main() local
1545 XMLElement* ele = doc.FirstChildElement(); in main() local
1581 XMLElement* ele = 0; in main() local
1611 XMLElement* ele = XMLHandle( doc ).FirstChildElement( "element" ).FirstChild().ToElement(); in main() local
1618 …XMLElement* ele = docH.FirstChildElement( "noSuchElement" ).FirstChildElement( "element" ).ToEleme… in main() local
1623 …const XMLElement* ele = XMLConstHandle( doc ).FirstChildElement( "element" ).FirstChild().ToElemen… in main() local
1630 …const XMLElement* ele = docH.FirstChildElement( "noSuchElement" ).FirstChildElement( "element" ).T… in main() local
2050 …XMLElement* ele = doc.NewElement( "unused" ); // This will get cleaned up with the 'doc' going ou… in main() local
[all …]
/aosp_15_r20/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
H A DNdkApiXmlReport.java233 Element ele = null; in saveToXML() local
299 Element ele = doc.createElement(CLASS_TAG); in createClassEle() local
310 Element ele = doc.createElement(METHOD_TAG); in createMethodEle() local
324 Element ele = doc.createElement(FIELD_TAG); in createFieldEle() local
/aosp_15_r20/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/marshallable/
H A DThirdPartyVerificationFactory.java29 public ThirdPartyVerification createFromHrElement(Element ele) throws MalformedXmlException { in createFromHrElement()
40 public ThirdPartyVerification createFromOdElement(Element ele) throws MalformedXmlException { in createFromOdElement()
H A DSecurityLabelsFactory.java28 public SecurityLabels createFromHrElement(Element ele) throws MalformedXmlException { in createFromHrElement()
41 public SecurityLabels createFromOdElement(Element ele) throws MalformedXmlException { in createFromOdElement()
H A DThirdPartyVerification.java35 Element ele = in toOdDomElement() local
43 Element ele = doc.createElement(XmlUtils.HR_TAG_THIRD_PARTY_VERIFICATION); in toHrDomElement() local
H A DSecurityLabels.java37 Element ele = XmlUtils.createPbundleEleWithName(doc, XmlUtils.OD_NAME_SECURITY_LABELS); in toOdDomElement() local
53 Element ele = doc.createElement(XmlUtils.HR_TAG_SECURITY_LABELS); in toHrDomElement() local
/aosp_15_r20/external/libese/ready_se/google/keymint/KM200/Applet/AndroidSEProviderLib/src/com/android/javacard/seprovider/
H A DKMUpgradable.java23 void onSave(Element ele); in onSave()
25 void onRestore(Element ele, short oldVersion, short currentVersion); in onRestore()
/aosp_15_r20/external/libese/ready_se/google/keymint/KM300/Applet/AndroidSEProviderLib/src/com/android/javacard/seprovider/
H A DKMUpgradable.java23 void onSave(Element ele); in onSave()
25 void onRestore(Element ele, short oldVersion, short currentVersion); in onRestore()
/aosp_15_r20/external/pigweed/pw_protobuf/
H A Dmessage_test.cc322 for (String ele : msg) { in TEST() local
341 for (String ele : msg) { in TEST() local
355 for ([[maybe_unused]] String ele : msg) { in TEST() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/
H A Dquantization_context.cc264 auto ele = op->getOperand(i).getType().cast<ShapedType>().getElementType(); in PropagateQuantParams() local
273 auto ele = op->getResult(res).getType().cast<ShapedType>().getElementType(); in PropagateQuantParams() local
/aosp_15_r20/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapContent.java2361 BluetoothMapMessageListingElement ele = list.get(x); in msgListing() local
2897 BluetoothMapConvoListingElement ele = list.get(x); in convoListing() local
3147 private void updateSmsMmsConvoVersion(Cursor cursor, BluetoothMapConvoListingElement ele) { in updateSmsMmsConvoVersion()
3192 Cursor cursor, FilterInfo fi, BluetoothMapConvoListingElement ele) { in updateImEmailConvoVersion()
3237 BluetoothMapConvoListingElement ele, in populateSmsMmsConvoElement()
3304 BluetoothMapConvoListingElement ele, in populateImEmailConvoElement()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/src/gregorian/
Ddate_generators.cpp23 BOOST_DATE_TIME_DECL const char* nth_as_str(int ele) in nth_as_str()
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/misc/win32/
H A Dinternal.c46 char *ele; in apr_wastrtoastr() local
/aosp_15_r20/cts/tools/release-parser/src/com/android/cts/releaseparser/
H A DArgumentParser.java55 String ele = null; in getParameterElement() local
/aosp_15_r20/external/tensorflow/tensorflow/lite/python/
H A Dtflite_keras_util.py132 def one_index(ele): argument

12345