Home | History | Annotate | Download | only in link

Lines Matching refs:Element

33 static bool NameIsJavaClassName(xml::Element* el, xml::Attribute* attr,
54 static bool OptionalNameIsJavaClassName(xml::Element* el, SourcePathDiagnostics* diag) {
61 static bool RequiredNameIsJavaClassName(xml::Element* el, SourcePathDiagnostics* diag) {
70 static bool RequiredNameIsJavaPackage(xml::Element* el, SourcePathDiagnostics* diag) {
80 return [=](xml::Element* el, SourcePathDiagnostics* diag) -> bool {
90 static bool AutoGenerateIsFeatureSplit(xml::Element* el, SourcePathDiagnostics* diag) {
120 static bool VerifyManifest(xml::Element* el, SourcePathDiagnostics* diag) {
150 static bool FixCoreAppAttribute(xml::Element* el, SourcePathDiagnostics* diag) {
163 static bool VerifyUsesFeature(xml::Element* el, SourcePathDiagnostics* diag) {
238 manifest_action.Action([&](xml::Element* el) -> bool {
261 manifest_action["uses-sdk"].Action([&](xml::Element* el) -> bool {
282 manifest_action["instrumentation"].Action([&](xml::Element* el) -> bool {
348 void Visit(xml::Element* el) override {
367 static bool RenameManifestPackage(const StringPiece& package_override, xml::Element* manifest_el) {
370 // We've already verified that the manifest element is present, with a package
383 xml::Element* root = xml::FindRootElement(doc->root.get());
392 // Auto insert a <uses-sdk> element. This must be inserted before the
395 std::unique_ptr<xml::Element> uses_sdk = util::make_unique<xml::Element>();