Searched refs:Section (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/support/room/compiler/src/test/kotlin/androidx/room/parser/
H A DSqlParserTest.kt158 Section.text("select * from users where name like "),
159 Section.bindVar("?"))
162 Section.text("select * from users where name like "),
163 Section.bindVar(":name"),
164 Section.text(" AND last_name like "),
165 Section.bindVar(":lastName"))
168 Section.text("select * from users where name "),
169 Section.newline(),
170 Section.text("like "),
171 Section
[all...]
/frameworks/base/cmds/incidentd/src/
H A Dsection_list.h24 #include "Section.h"
34 extern const Section* SECTION_LIST[];
H A DSection.h39 class Section { class in namespace:android::os::incidentd
47 Section(int id, int64_t timeoutMs = REMOTE_CALL_TIMEOUT_MS, bool userdebugAndEngOnly = false,
49 virtual ~Section();
55 * Section that generates incident headers.
57 class HeaderSection : public Section {
66 * Section that generates incident metadata.
68 class MetadataSection : public Section {
77 * Section that reads in a file.
79 class FileSection : public Section {
93 * Section tha
[all...]
H A DSection.cpp19 #include "Section.h"
118 VLOG("Section %d flushed %zu bytes to fd %d with spec %d", id, privacyBuffer.size(),
142 VLOG("Section %d flushed %zu bytes to dropbox %d with spec %d", id, privacyBuffer.size(),
154 Section::Section(int i, int64_t timeoutMs, bool userdebugAndEngOnly, bool deviceSpecific) function in class:android::os::incidentd::Section
160 Section::~Section() {}
163 HeaderSection::HeaderSection() : Section(FIELD_ID_INCIDENT_HEADER, 0) {}
187 MetadataSection::MetadataSection() : Section(FIELD_ID_INCIDENT_METADATA, 0) {}
245 : Section(i
[all...]
H A DReporter.cpp180 for (const Section** section = SECTION_LIST; *section; section++) {
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/parser/
H A DParsedQuery.kt31 data class Section(val text: String, val type: SectionType) {
33 fun text(text: String) = Section(text, SectionType.TEXT)
34 fun newline() = Section("", SectionType.NEWLINE)
35 fun bindVar(text: String) = Section(text, SectionType.BIND_VAR)
65 val sections = arrayListOf<Section>()
70 sections.add(Section.text(line.substring(charInLine,
73 sections.add(Section.bindVar(bindVar.text))
77 sections.add(Section.text(line.substring(charInLine)))
80 sections.add(Section.newline())
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DXmpDepthDecode.java127 private static class Section { class in class:XmpDepthDecode
134 List<Section> sections = parse(is, true, skipExtendedContent);
196 private static List<Section> parse(InputStream is, boolean readMetaOnly,
198 List<Section> sections = new ArrayList<Section>();
223 Section section = new Section();
284 private static Section readSection(InputStream is, int length,
287 Section section = new Section();
[all...]
/frameworks/base/cmds/incidentd/tests/
H A Dsection_list.cpp8 const Section* SECTION_LIST[] = {NULL};
/frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
H A DMediaCodecsXmlParser.h120 enum Section { enum in class:android::MediaCodecsXmlParser
133 Section mCurrentSection;
135 std::vector<Section> mSectionStack;
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp87 if (m_pSymInfo->type() == ResolveInfo::Section &&
144 if (m_pSymInfo->type() == ResolveInfo::Section) {
/frameworks/compile/mclinker/lib/LD/
H A DRelocator.cpp34 if (pReloc.symInfo()->type() == ResolveInfo::Section) {
H A DSectionSymbolSet.cpp40 ResolveInfo::Section,
51 // insert the symbol to the Section to Symbol hash map
H A DELFBinaryReader.cpp72 ResolveInfo::Section,
H A DELFReaderIf.cpp34 if (pShndx == llvm::ELF::SHN_ABS && result == ResolveInfo::Section) {
H A DELFObjectReader.cpp126 ResolveInfo::Section == signature->type()) {
H A DELFReader.cpp134 if (ResolveInfo::Section == ld_type) {
135 // Section symbol's st_name is the section index.
634 if (ResolveInfo::Section == ld_type) {
635 // Section symbol's st_name is the section index.
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp440 ResolveInfo::Section,
449 ResolveInfo::Section,
458 ResolveInfo::Section,
467 ResolveInfo::Section,
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/writer/
H A DQueryWriter.kt26 import androidx.room.parser.Section
40 val sectionToParamMapping: List<Pair<Section, QueryParameter?>>,
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h53 Section = 3, enumerator in enum:mcld::ResolveInfo::Type
246 static const uint32_t section_flag = Section << TYPE_OFFSET;
/frameworks/base/cmds/incidentd/
H A DAndroid.mk110 src/Section.cpp \
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp446 if (ResolveInfo::Section == pInfo.type() || pInfo.outSymbol() == NULL)
602 ResolveInfo::Section == info->type() &&
806 ResolveInfo::Section == info->type() &&
890 ResolveInfo::Section == info->type() &&
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp507 if (pType == ResolveInfo::Section) {
537 if (pType == ResolveInfo::Section)
609 ResolveInfo::Section,
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp151 ResolveInfo::Section,
338 return ResolveInfo::Section != pSym.type() || m_pGpDispSymbol == &pSym;
377 Elf64_Half section; // Section header index of section affected,
H A DMipsRelocator.cpp679 if (ResolveInfo::Section == rsym->type())
735 if (pReloc.symInfo()->type() == ResolveInfo::Section)
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp838 if (pReloc.symInfo()->type() == ResolveInfo::Section)
1507 if (pReloc.symInfo()->type() == ResolveInfo::Section)

Completed in 449 milliseconds

12