Searched defs:Section (Results 1 - 25 of 87) sorted by path

1234

/external/chromium_org/courgette/
H A Dtypes_win_pe.h18 struct Section { struct in namespace:courgette
32 COMPILE_ASSERT(sizeof(Section) == 40, section_is_40_bytes);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DSection.js35 WebInspector.Section = function(title, subtitle)
61 WebInspector.Section.prototype = {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
H A DWikiParser.js19 WebInspector.WikiParser.Section = function()
43 /** @typedef {(?WebInspector.WikiParser.ArticleElement|!Array.<!WebInspector.WikiParser.Section>)} */
337 * @return {!WebInspector.WikiParser.Section}
341 var section = new WebInspector.WikiParser.Section();
401 * @return {!Array.<!WebInspector.WikiParser.Section>}
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DSourceMap.js39 /** @type {!Array.<!SourceMapV3.Section>|undefined} */ this.sections;
47 SourceMapV3.Section = function()
189 * @param {!Array.<!SourceMapV3.Section>} sections
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DMediaQueryInspector.js30 WebInspector.MediaQueryInspector.Section = {
111 if (model.section() === WebInspector.MediaQueryInspector.Section.Max) {
115 if (model.section() === WebInspector.MediaQueryInspector.Section.Min) {
339 var labelClass = model.section() === WebInspector.MediaQueryInspector.Section.MinMax ? "media-inspector-label-right" : "media-inspector-label-left";
345 var labelClass = model.section() === WebInspector.MediaQueryInspector.Section.MinMax ? "media-inspector-label-left" : "media-inspector-label-right";
371 this._section = WebInspector.MediaQueryInspector.Section.Max;
373 this._section = WebInspector.MediaQueryInspector.Section.MinMax;
375 this._section = WebInspector.MediaQueryInspector.Section.Min;
452 if (this.section() === WebInspector.MediaQueryInspector.Section.Max)
454 if (this.section() === WebInspector.MediaQueryInspector.Section
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Drc.py43 class Section(regexp.RegexpGatherer): class in inherits:regexp.RegexpGatherer
65 super(Section, self)._RegExpParse(rexp, text_to_parse)
98 class Dialog(Section):
153 class Menu(Section):
210 class Version(Section):
273 class RCData(Section):
316 class Accelerators(Section):
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp1021 /// \param Section - The section the variable should go into, or empty.
1026 StringRef Section, unsigned Align,
1134 const char *Section,
1149 const char *Section,
1329 const char *Section,
2885 CGObjCMac::EmitMethodDescList(Twine Name, const char *Section, argument
2898 llvm::GlobalVariable *GV = CreateMetadataVar(Name, Init, Section, 4, true);
3107 const char *Section = "__OBJC,__class,regular,no_dead_strip"; local
3114 GV->setSection(Section);
3118 GV = CreateMetadataVar(Name, Init, Section,
3356 EmitMethodList(Twine Name, const char *Section, ArrayRef<llvm::Constant*> Methods) argument
3393 CreateMetadataVar(Twine Name, llvm::Constant *Init, StringRef Section, unsigned Align, bool AddToUsed) argument
4278 const char *Section = (ObjCABI == 1) ? local
6062 EmitMethodList(Twine Name, const char *Section, ArrayRef<llvm::Constant*> Methods) argument
[all...]
/external/clang/lib/Sema/
H A DSemaAttr.cpp366 auto Section = SectionInfos.find(SectionName); local
367 if (Section == SectionInfos.end()) {
373 if (Section->second.SectionFlags == SectionFlags ||
374 !(Section->second.SectionFlags & PSF_Implicit))
376 auto OtherDecl = Section->second.Decl;
393 auto Section = SectionInfos.find(SectionName); local
394 if (Section != SectionInfos.end()) {
395 if (Section->second.SectionFlags == SectionFlags)
397 if (!(Section->second.SectionFlags & PSF_Implicit)) {
400 Diag(Section
[all...]
/external/deqp/executor/
H A DxeTestCaseResult.hpp74 class Section;
414 class Section : public Item class in namespace:xe::ri
417 Section (void) : Item(TYPE_SECTION) {} function in class:xe::ri::Section
418 ~Section (void) {}
/external/deqp/framework/common/
H A DtcuTestLog.hpp68 * log << TestLog::Section("Details", "Test case details")
94 typedef LogSection Section; typedef in class:tcu::TestLog
113 TestLog& operator<< (const Section& section);
402 // Section helper that closes section when leaving scope.
409 m_log << TestLog::Section(name, description);
426 inline TestLog& TestLog::operator<< (const Section& section) { section.write(*this); return *this; }
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DSection.java27 public abstract class Section { class
69 public Section(String name, DexFile file, int alignment) { method in class:Section
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/lldb/examples/python/
H A Dsymbolication.py145 class Section: class in inherits:
182 print '<name>=<base> __TEXT=0x123000 Section from base address only'
183 print '<name>=<base>-<end> __TEXT=0x123000-0x124000 Section from base address and end address'
184 print '<name>=<base>+<size> __TEXT=0x123000+0x1000 Section from base address and size'
558 section = Section()
/external/lldb/include/lldb/Core/
H A DSection.h1 //===-- Section.h -----------------------------------------------*- C++ -*-===//
47 FindSectionIndex (const Section* sect);
105 class Section : class in namespace:lldb_private
106 public std::enable_shared_from_this<Section>,
113 Section (const lldb::ModuleSP &module_sp,
125 Section (const lldb::SectionSP &parent_section_sp, // NULL for top level sections, non-NULL for child sections
137 ~Section ();
140 Compare (const Section& a, const Section& b);
237 IsDescendant (const Section *sectio
[all...]
/external/lldb/source/Core/
H A DSection.cpp1 //===-- Section.cpp ---------------------------------------------*- C++ -*-===//
10 #include "lldb/Core/Section.h"
18 Section::Section (const ModuleSP &module_sp, function in class:Section
44 // printf ("Section::Section(%p): module=%p, sect_id = 0x%16.16" PRIx64 ", addr=[0x%16.16" PRIx64 " - 0x%16.16" PRIx64 "), file [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 "), flags = 0x%8.8x, name = %s\n",
48 Section::Section (const lldb::SectionSP &parent_section_sp, function in class:Section
75 // printf ("Section::Section(
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c888 CAMLprim value llvm_set_section(value Section, LLVMValueRef Global) { argument
889 LLVMSetSection(Global, String_val(Section));
/external/llvm/bindings/python/llvm/
H A Dobject.py19 Section, Symbol, and Relocation, respectively.
30 relocations, call get_relocations() on a Section instance.
40 To aid working around this limitation, each Section, Symbol, and Relocation
53 # This is OK. Each Section is only accessed inside its own iteration slot.
96 "Section",
126 This is a generator for llvm.object.Section instances.
137 last = Section(sections)
179 class Section(LLVMObject): class in inherits:LLVMObject
185 Section instances can currently only be created from an ObjectFile
200 raise Exception('Section instanc
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py4 from ..object import Section namespace
21 assert isinstance(section, Section)
54 assert isinstance(section, Section)
/external/llvm/include/llvm/IR/
H A DGlobalObject.h36 std::string Section; // Section to emit this into, empty means default member in class:llvm::GlobalObject
45 const char *getSection() const { return Section.c_str(); }
/external/llvm/include/llvm/MC/
H A DMCAssembler.h584 const MCSection *Section; member in class:llvm::MCSectionData
620 MCSectionData(const MCSection &Section, MCAssembler *A = nullptr);
622 const MCSection &getSection() const { return *Section; }
994 void writeSectionData(const MCSectionData *Section,
1076 /// @name Section List Access
1187 MCSectionData &getSectionData(const MCSection &Section) const {
1188 MCSectionData *Entry = SectionMap.lookup(&Section);
1193 MCSectionData &getOrCreateSectionData(const MCSection &Section, argument
1195 MCSectionData *&Entry = SectionMap[&Section];
1199 Entry = new MCSectionData(Section, thi
[all...]
H A DMCContext.h248 /// @name Section Management
254 StringRef Section,
259 StringRef Section,
262 return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
265 const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
268 const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
272 void renameELFSection(const MCSectionELF *Section, StringRef Name);
276 const MCSectionCOFF *getCOFFSection(StringRef Section,
281 const MCSectionCOFF *getCOFFSection(StringRef Section,
285 const MCSectionCOFF *getCOFFSection(StringRef Section);
258 getMachOSection(StringRef Segment, StringRef Section, unsigned TypeAndAttributes, SectionKind K) argument
[all...]
H A DMCSectionCOFF.h47 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
49 : MCSection(SV_COFF, K), SectionName(Section),
H A DMCSectionELF.h51 MCSectionELF(StringRef Section, unsigned type, unsigned flags, argument
53 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),

Completed in 2841 milliseconds

1234