/aosp_15_r20/frameworks/base/tools/aapt2/link/ |
H A D | ManifestFixer.cpp | 121 static bool RequiredNameIsNotEmpty(xml::Element* el, android::SourcePathDiagnostics* diag) { in RequiredNameIsNotEmpty() argument 122 xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, "name"); in RequiredNameIsNotEmpty() 124 diag->Error(android::DiagMessage(el->line_number) in RequiredNameIsNotEmpty() 125 << "<" << el->name << "> is missing attribute 'android:name'"); in RequiredNameIsNotEmpty() 130 diag->Error(android::DiagMessage(el->line_number) in RequiredNameIsNotEmpty() 131 << "attribute 'android:name' in <" << el->name << "> tag must not be empty"); in RequiredNameIsNotEmpty() 138 static bool NameIsJavaClassName(xml::Element* el, xml::Attribute* attr, in NameIsJavaClassName() argument 151 diag->Error(android::DiagMessage(el->line_number) << "attribute 'android:name' in <" << el->name in NameIsJavaClassName() 158 static bool OptionalNameIsJavaClassName(xml::Element* el, android::SourcePathDiagnostics* diag) { in OptionalNameIsJavaClassName() argument 159 if (xml::Attribute* attr = el->FindAttribute(xml::kSchemaAndroid, "name")) { in OptionalNameIsJavaClassName() [all …]
|
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/parser/ |
H A D | HtmlTreeBuilder.java | 177 final Element el = currentElement(); in useCurrentOrForeignInsert() 178 final String ns = el.tag().namespace(); in useCurrentOrForeignInsert() 186 if (isMathmlTextIntegration(el)) { in useCurrentOrForeignInsert() 196 && el.nameIs("annotation-xml") in useCurrentOrForeignInsert() 203 if (isHtmlIntegration(el) in useCurrentOrForeignInsert() 211 static boolean isMathmlTextIntegration(Element el) { in isMathmlTextIntegration() argument 220 return (Parser.NamespaceMathml.equals(el.tag().namespace()) in isMathmlTextIntegration() 221 && StringUtil.inSorted(el.normalName(), TagMathMlTextIntegration)); in isMathmlTextIntegration() 224 static boolean isHtmlIntegration(Element el) { in isHtmlIntegration() argument 233 if (Parser.NamespaceMathml.equals(el.tag().namespace()) in isHtmlIntegration() [all …]
|
/aosp_15_r20/external/libwebsockets/lib/tls/mbedtls/ |
H A D | lws-genec.c | 56 const struct lws_gencrypto_keyelem *el) in lws_genec_keypair_import() argument 62 if (el[LWS_GENCRYPTO_EC_KEYEL_CRV].len < 4) { in lws_genec_keypair_import() 64 el[LWS_GENCRYPTO_EC_KEYEL_CRV].buf ? in lws_genec_keypair_import() 65 (char *)el[LWS_GENCRYPTO_EC_KEYEL_CRV].buf : in lws_genec_keypair_import() 67 el[LWS_GENCRYPTO_EC_KEYEL_CRV].len); in lws_genec_keypair_import() 72 (char *)el[LWS_GENCRYPTO_EC_KEYEL_CRV].buf); in lws_genec_keypair_import() 81 if ((el[LWS_GENCRYPTO_EC_KEYEL_D].len && in lws_genec_keypair_import() 82 el[LWS_GENCRYPTO_EC_KEYEL_D].len != curve->key_bytes) || in lws_genec_keypair_import() 83 el[LWS_GENCRYPTO_EC_KEYEL_X].len != curve->key_bytes || in lws_genec_keypair_import() 84 el[LWS_GENCRYPTO_EC_KEYEL_Y].len != curve->key_bytes) in lws_genec_keypair_import() [all …]
|
/aosp_15_r20/external/mesa3d/src/panfrost/compiler/valhall/ |
H A D | valhall.py | 58 def build_enum(el): argument 61 for child in el: 68 return Enum(el.attrib['name'], values) 220 def build_source(el, i, size): argument 221 lane = el.get('lane', None) 227 return Source(i, int(el.get('size', size)), 228 absneg = el.get('absneg', False), 229 is_float = el.get('float', False), 230 swizzle = el.get('swizzle', False), 231 halfswizzle = el.get('halfswizzle', False), [all …]
|
/aosp_15_r20/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/ |
D | GattDbElement.java | 55 GattDbElement el = new GattDbElement(); in createPrimaryService() local 56 el.type = TYPE_PRIMARY_SERVICE; in createPrimaryService() 57 el.uuid = uuid; in createPrimaryService() 58 return el; in createPrimaryService() 62 GattDbElement el = new GattDbElement(); in createSecondaryService() local 63 el.type = TYPE_SECONDARY_SERVICE; in createSecondaryService() 64 el.uuid = uuid; in createSecondaryService() 65 return el; in createSecondaryService() 69 GattDbElement el = new GattDbElement(); in createCharacteristic() local 70 el.type = TYPE_CHARACTERISTIC; in createCharacteristic() [all …]
|
/aosp_15_r20/external/trusty/arm-trusted-firmware/lib/xlat_tables_v2/aarch64/ |
D | enable_mmu.S | 16 .macro _msr reg_name, el, gp_reg 17 msr \reg_name\()_el\()\el, \gp_reg 20 .macro _mrs gp_reg, reg_name, el argument 21 mrs \gp_reg, \reg_name\()_el\()\el 24 .macro tlbi_invalidate_all el argument 25 .if \el == 1 27 .elseif \el == 2 29 .elseif \el == 3 37 .macro define_mmu_enable_func el argument 38 func enable_mmu_direct_\()el\el [all …]
|
/aosp_15_r20/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
H A D | RewriteRuleElementStream.js | 14 org.antlr.runtime.tree.RewriteRuleElementStream = function(adaptor, elementDescription, el) { argument 32 if (el) { 33 if (org.antlr.lang.isArray(el)) { 35 this.elements = el; 37 this.add(el); 53 add: function(el) { argument 54 if ( !org.antlr.lang.isValue(el) ) { 58 this.elements.push(el); 62 this.singleElement = el; 69 this.elements.push(el); [all …]
|
/aosp_15_r20/external/arm-trusted-firmware/lib/xlat_tables_v2/aarch64/ |
H A D | enable_mmu.S | 16 .macro _msr reg_name, el, gp_reg 17 msr \reg_name\()_el\()\el, \gp_reg 20 .macro _mrs gp_reg, reg_name, el argument 21 mrs \gp_reg, \reg_name\()_el\()\el 24 .macro tlbi_invalidate_all el argument 25 .if \el == 1 27 .elseif \el == 2 29 .elseif \el == 3 37 .macro define_mmu_enable_func el argument 38 func enable_mmu_direct_\()el\el [all …]
|
/aosp_15_r20/frameworks/base/tools/aapt2/xml/ |
H A D | XmlDom.cpp | 111 std::unique_ptr<Element> el; in StartElementHandler() local 113 el = std::move(stack->pending_element); in StartElementHandler() 115 el = util::make_unique<Element>(); in StartElementHandler() 118 el->line_number = XML_GetCurrentLineNumber(parser); in StartElementHandler() 119 el->column_number = XML_GetCurrentColumnNumber(parser); in StartElementHandler() 120 el->comment = std::move(stack->pending_comment); in StartElementHandler() 122 SplitName(name, &el->namespace_uri, &el->name); in StartElementHandler() 128 el->attributes.push_back(std::move(attribute)); in StartElementHandler() 132 std::sort(el->attributes.begin(), el->attributes.end(), less_attribute); in StartElementHandler() 135 Element* this_el = el.get(); in StartElementHandler() [all …]
|
H A D | XmlActionExecutor.cpp | 24 static bool wrapper_one(const XmlNodeAction::ActionFunc& f, Element* el, in wrapper_one() argument 26 return f(el); in wrapper_one() 29 static bool wrapper_two(const XmlNodeAction::ActionFuncWithDiag& f, Element* el, in wrapper_two() argument 32 return f(el, diag); in wrapper_two() 35 static bool wrapper_three(const XmlNodeAction::ActionFuncWithPolicyAndDiag& f, Element* el, in wrapper_three() argument 38 return f(el, policy, diag); in wrapper_three() 56 static void PrintElementToDiagMessage(const Element* el, android::DiagMessage* msg) { in PrintElementToDiagMessage() argument 58 if (!el->namespace_uri.empty()) { in PrintElementToDiagMessage() 59 *msg << el->namespace_uri << ":"; in PrintElementToDiagMessage() 61 *msg << el->name << ">"; in PrintElementToDiagMessage() [all …]
|
/aosp_15_r20/external/libwebsockets/lib/tls/openssl/ |
H A D | lws-genec.c | 123 const struct lws_gencrypto_keyelem *el) in lws_genec_eckey_import() argument 140 bn_x = BN_bin2bn(el[LWS_GENCRYPTO_EC_KEYEL_X].buf, in lws_genec_eckey_import() 141 (int)el[LWS_GENCRYPTO_EC_KEYEL_X].len, NULL); in lws_genec_eckey_import() 146 bn_y = BN_bin2bn(el[LWS_GENCRYPTO_EC_KEYEL_Y].buf, in lws_genec_eckey_import() 147 (int)el[LWS_GENCRYPTO_EC_KEYEL_Y].len, NULL); in lws_genec_eckey_import() 178 if (el[LWS_GENCRYPTO_EC_KEYEL_D].len) { in lws_genec_eckey_import() 179 bn_d = BN_bin2bn(el[LWS_GENCRYPTO_EC_KEYEL_D].buf, in lws_genec_eckey_import() 180 (int)el[LWS_GENCRYPTO_EC_KEYEL_D].len, NULL); in lws_genec_eckey_import() 223 const struct lws_gencrypto_keyelem *el) in lws_genec_keypair_import() argument 228 if (el[LWS_GENCRYPTO_EC_KEYEL_CRV].len < 4) in lws_genec_keypair_import() [all …]
|
/aosp_15_r20/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
H A D | BitSet.js | 78 numWordsToHold: function(el) { argument 79 return (el >> org.antlr.runtime.BitSet.LOG_BITS) + 1; 113 of: function(el, el2) { argument 116 if (org.antlr.lang.isNumber(el)) { 119 for (i = el; i <= el2; i++) { 125 s = new org.antlr.runtime.BitSet(el + 1); 126 s.add(el); 129 } else if(org.antlr.lang.isArray(el)) { 131 for (i=el.length-1; i>=0; i--) { 132 s.add(el[i]); [all …]
|
/aosp_15_r20/external/doclava/res/assets/templates-sdk/assets/js/ |
H A D | docs.js | 322 function doNavToggle(el) { argument 323 var section = $(el).closest('li.nav-section'); 334 var $others = $('li.nav-section.expanded', $(el).closest('ul')).not('.sticky'); 449 $('.section-card-menu').each(function(index, el) { argument 450 var height = $(el).height(); 451 $(el).css({height:height + 'px', position:'relative'}); 452 var $cardInfo = $(el).find('.card-info'); 742 function css(el, prop) { argument 743 return parseInt($.css(el[0], prop)) || 0; 745 function width(el) { argument [all …]
|
/aosp_15_r20/frameworks/base/packages/SystemUI/scripts/token_alignment/helpers/ |
H A D | DOMFuncs.ts | 95 static getElementComment(el: Element): IElementComment { 96 const commentNode = el.previousSibling?.previousSibling; 145 queried.forEach((el) => { 147 if (el.hasAttribute(attr)) { 148 const currentAttrValue = el.getAttribute(attr); 158 el.setAttribute(attr, currentAttrValue.replace(oldStr, newStr)); 171 static updateElement(el: Element, updateOptions: IUpdateTag) { 172 const exists = this.futureEntryAlreadyExist(el, updateOptions); 181 const { commentNode } = this.getElementComment(el); 192 el.setAttribute(attr, `${value}`); [all …]
|
/aosp_15_r20/external/aac/libMpegTPDec/src/ |
H A D | tpdec_asc.cpp | 526 int el, numCh1 = 0, numCh2 = 0; in CProgramConfig_Compare() local 527 for (el = 0; el < pPce1->NumFrontChannelElements; el += 1) { in CProgramConfig_Compare() 528 if (pPce1->FrontElementHeightInfo[el] != in CProgramConfig_Compare() 529 pPce2->FrontElementHeightInfo[el]) { in CProgramConfig_Compare() 533 numCh1 += pPce1->FrontElementIsCpe[el] ? 2 : 1; in CProgramConfig_Compare() 534 numCh2 += pPce2->FrontElementIsCpe[el] ? 2 : 1; in CProgramConfig_Compare() 544 int el, numCh1 = 0, numCh2 = 0; in CProgramConfig_Compare() local 545 for (el = 0; el < pPce1->NumSideChannelElements; el += 1) { in CProgramConfig_Compare() 546 if (pPce1->SideElementHeightInfo[el] != in CProgramConfig_Compare() 547 pPce2->SideElementHeightInfo[el]) { in CProgramConfig_Compare() [all …]
|
/aosp_15_r20/external/perfetto/ui/src/base/ |
H A D | dom_utils_unittest.ts | 84 const el = document.createElement('input'); constant 85 el.setAttribute('type', 'text'); 86 expect(elementIsEditable(el)).toBeTruthy(); 90 const el = document.createElement('input'); constant 91 el.setAttribute('type', 'radio'); 92 expect(elementIsEditable(el)).toBeFalsy(); 96 const el = document.createElement('input'); constant 97 el.setAttribute('type', 'checkbox'); 98 expect(elementIsEditable(el)).toBeFalsy(); 102 const el = document.createElement('input'); constant [all …]
|
/aosp_15_r20/external/libvpx/vp8/common/ |
H A D | extend.c | 22 int el, /* extend left border */ in copy_and_extend_plane() argument 36 dest_ptr1 = d - el; in copy_and_extend_plane() 40 memset(dest_ptr1, src_ptr1[0], el); in copy_and_extend_plane() 42 memcpy(dest_ptr1 + el, src_ptr1, w); in copy_and_extend_plane() 45 dest_ptr1[el + j] = src_ptr1[interleave_step * j]; in copy_and_extend_plane() 58 src_ptr1 = d - el; in copy_and_extend_plane() 59 src_ptr2 = d + dp * (h - 1) - el; in copy_and_extend_plane() 60 dest_ptr1 = d + dp * (-et) - el; in copy_and_extend_plane() 61 dest_ptr2 = d + dp * (h)-el; in copy_and_extend_plane() 62 linesize = el + er + w; in copy_and_extend_plane() [all …]
|
/aosp_15_r20/out/soong/raw-aosp_shiba/6e/ |
D | 6ec6c02a5ee1ce74ab231d39d1c01280e933be61 | 33 from: "external/hyphenation-patterns/TeX/el/hyph-el.chr.txt" 34 to: "external/hyphenation-patterns/TeX/el/hyph-el.chr.txt" 37 from: "external/hyphenation-patterns/TeX/el/hyph-el.hyp.txt" 38 to: "external/hyphenation-patterns/TeX/el/hyph-el.hyp.txt" 41 from: "external/hyphenation-patterns/TeX/el/hyph-el.pat.txt" 42 to: "external/hyphenation-patterns/TeX/el/hyph-el.pat.txt" 45 …/bin/mk_hyb_file external/hyphenation-patterns/TeX/el/hyph-el.pat.txt __SBOX_SANDBOX_DIR__/out/hyp… 47 from: "out/hyph-el.hyb" 48 to: "out/soong/.intermediates/external/hyphenation-patterns/TeX/el/hyph-el-hyb/gen/hyph-el.hyb"
|
/aosp_15_r20/out/soong/.intermediates/external/hyphenation-patterns/TeX/el/hyph-el-hyb/ |
D | genrule.sbox.textproto | 33 from: "external/hyphenation-patterns/TeX/el/hyph-el.chr.txt" 34 to: "external/hyphenation-patterns/TeX/el/hyph-el.chr.txt" 37 from: "external/hyphenation-patterns/TeX/el/hyph-el.hyp.txt" 38 to: "external/hyphenation-patterns/TeX/el/hyph-el.hyp.txt" 41 from: "external/hyphenation-patterns/TeX/el/hyph-el.pat.txt" 42 to: "external/hyphenation-patterns/TeX/el/hyph-el.pat.txt" 45 …/bin/mk_hyb_file external/hyphenation-patterns/TeX/el/hyph-el.pat.txt __SBOX_SANDBOX_DIR__/out/hyp… 47 from: "out/hyph-el.hyb" 48 to: "out/soong/.intermediates/external/hyphenation-patterns/TeX/el/hyph-el-hyb/gen/hyph-el.hyb"
|
/aosp_15_r20/external/guice/extensions/struts2/lib/ |
HD | jsp-2.1.jar | ... com/
com/sun/
com/sun/el/
com/sun/el/parser/
com ... |
/aosp_15_r20/external/fonttools/Lib/fontTools/subset/ |
H A D | svg.py | 43 return {el.attrib["id"]: el for el in xpath("//svg:*[@id]")(tree)} 73 for el in chain([tree], find_svg_elements_with_references(tree)): 74 ref_id = href_local_target(el) 78 attrs = el.attrib 80 attrs = {**dict(attrs), **parse_css_declarations(el.attrib["style"])} 108 def subset_elements(el: etree.Element, retained_ids: Set[str]) -> bool: 112 if el.attrib.get("id") in retained_ids: 118 if any([subset_elements(e, retained_ids) for e in el]): 120 assert len(el) == 0 121 parent = el.getparent() [all …]
|
/aosp_15_r20/external/e2fsprogs/e2fsck/ |
H A D | ea_refcount.c | 115 struct ea_refcount_el *el; in insert_refcount_el() local 142 el = &refcount->list[pos]; in insert_refcount_el() 143 el->ea_key = ea_key; in insert_refcount_el() 144 el->ea_value = 0; in insert_refcount_el() 145 return el; in insert_refcount_el() 211 struct ea_refcount_el *el; in ea_refcount_fetch() local 213 el = get_refcount_el(refcount, ea_key, 0); in ea_refcount_fetch() 214 if (!el) { in ea_refcount_fetch() 218 *ret = el->ea_value; in ea_refcount_fetch() 225 struct ea_refcount_el *el; in ea_refcount_increment() local [all …]
|
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/parser/ |
H A D | TokeniserTest.java | 56 Element el = els.first(); in handleSuperLargeTagNames() local 57 assertNotNull(el); in handleSuperLargeTagNames() 58 assertEquals("One", el.text()); in handleSuperLargeTagNames() 59 assertEquals(tag, el.tagName()); in handleSuperLargeTagNames() 73 Element el = els.first(); in handleSuperLargeAttributeName() local 74 assertNotNull(el); in handleSuperLargeAttributeName() 75 assertEquals("One", el.text()); in handleSuperLargeAttributeName() 76 Attribute attribute = el.attributes().asList().get(0); in handleSuperLargeAttributeName() 92 Element el = els.first(); in handleLargeText() local 94 assertNotNull(el); in handleLargeText() [all …]
|
/aosp_15_r20/external/aac/libSBRenc/src/ |
H A D | sbr_encoder.cpp | 769 int el, ch; in sbrEncoder_Close() local 771 for (el = 0; el < (8); el++) { in sbrEncoder_Close() 772 if (hSbrEncoder->sbrElement[el] != NULL) { in sbrEncoder_Close() 773 sbrEncoder_ElementClose(&hSbrEncoder->sbrElement[el]); in sbrEncoder_Close() 1215 int el; in FDKsbrEnc_Downsample() local 1220 for (el = 0; el < hSbrEncoder->noElements; el++) { in FDKsbrEnc_Downsample() 1221 hSbrElement = hSbrEncoder->sbrElement[el]; in FDKsbrEnc_Downsample() 1222 if (hSbrEncoder->sbrElement[el] != NULL) { in FDKsbrEnc_Downsample() 1586 INT el = -1; in FDKsbrEnc_Reallocate() local 1593 el++; in FDKsbrEnc_Reallocate() [all …]
|
/aosp_15_r20/development/tools/winscope/src/app/components/ |
H A D | collect_traces_component_test.ts | 139 const el = assertDefined(htmlElement.querySelector('.devices-connecting')); constant 140 expect(el.innerHTML).toContain('No devices detected'); 149 const el = assertDefined(htmlElement.querySelector('.devices-connecting')); constant 150 expect(el.innerHTML).toContain('Pixel 6'); 151 expect(el.innerHTML).toContain('smartphone'); 168 const el = assertDefined(htmlElement.querySelector('.devices-connecting')); constant 169 expect(el.innerHTML).toContain('unauthorized'); 170 expect(el.innerHTML).toContain('screen_lock_portrait'); 178 const el = assertDefined(htmlElement.querySelector('.devices-connecting')); constant 179 expect(el.textContent).toContain('No devices detected'); [all …]
|