Searched defs:section (Results 51 - 75 of 186) sorted by relevance

12345678

/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dautofill_section_container.h40 // View delegate for a section of the payment details. Contains a label
41 // describing the section as well as associated inputs and controls. Built
55 // controller for such an icon. There is at most one such icon per section.
77 @property(readonly, nonatomic) autofill::DialogSection section; variable
81 // fields for |section|.
83 forSection:(autofill::DialogSection)section;
91 // Called when the contents of a section have changed.
94 // Fills the section with Autofill data that was triggered by a user
98 // Validate this section. Validation rules depend on |validationType|.
116 // not part of this section
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dconf.h74 * # This key is in the default section.
83 char *section; member in struct:__anon11663
105 /* NCONF_get_section returns a stack of values for a given section in |conf|.
106 * If |section| is NULL, the default section is returned. It returns NULL on
108 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
110 /* NCONF_get_string returns the value of the key |name|, in section |section|.
111 * The |section| argument may be NULL to indicate the default section
[all...]
/external/chromium_org/ui/gfx/
H A Dblit_unittest.cc151 base::SharedMemoryHandle section = shared_mem.handle(); local
153 skia::CreatePlatformCanvas(kCanvasWidth, kCanvasHeight, true, section,
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp47 QVariant EventListModel::headerData(int section, Qt::Orientation orientation, argument
54 switch (section) {
63 return QString("%1").arg(section);
/external/chromium_org/tools/gyp/tools/emacs/
H A Dgyp.el32 ;; is a list of section symbols (see gyp-section-name and gyp-parse-to)
33 ;; with most nested section symbol at the front of the list.
53 "Regular expression to introduce 'dependencies' section")
76 (defun gyp-section-name (section)
79 SECTION is a string from the buffer that introduces a section. The result is
80 a symbol representing the kind of section.
83 section names as the same kind of section
[all...]
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_dialog_view_tester_views.cc73 DialogSection section,
75 view_->GroupForSection(section)->suggested_info->textfield()->SetText(text);
95 bool AutofillDialogViewTesterViews::IsShowingSection(DialogSection section)
97 return view_->GroupForSection(section)->container->visible();
72 SetTextContentsOfSuggestionInput( DialogSection section, const base::string16& text) argument
/external/chromium_org/sandbox/win/src/
H A Dtarget_interceptions.cc19 NtMapViewOfSectionFunction orig_MapViewOfSection, HANDLE section,
23 NTSTATUS ret = orig_MapViewOfSection(section, process, base, zero_bits,
43 if (!IsValidImageSection(section, base, offset, view_size))
53 // full path of the mapped section.
18 TargetNtMapViewOfSection( NtMapViewOfSectionFunction orig_MapViewOfSection, HANDLE section, HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size, PLARGE_INTEGER offset, PSIZE_T view_size, SECTION_INHERIT inherit, ULONG allocation_type, ULONG protect) argument
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTableCell.cpp112 RenderTableSection* section = renderCell->section(); local
114 if (!table || !section)
120 if (tableSection == section)
162 RenderTableSection* section = renderCell->section(); local
163 if (!section)
166 RenderTableCell* headerCell = section->primaryCellAt(row, 0);
H A DAXTableColumn.cpp99 // try the <thead> section first. this doesn't require th tags
111 AXObject* AXTableColumn::headerObjectForSection(RenderTableSection* section, bool thTagRequired) argument
113 if (!section)
116 unsigned numCols = section->numColumns();
120 if (!section->numRows())
126 RenderTableCell* testCell = section->primaryCellAt(0, testCol);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableRow.h49 RenderTableSection* section() const { return toRenderTableSection(parent()); } function in class:blink::FINAL
71 ASSERT(!section() || !section()->needsCellRecalc()); // index may be bogus if cells need recalc.
77 if (section()->hasSameDirectionAs(table()))
85 if (section()->hasSameDirectionAs(table()))
H A DFixedTableLayout.cpp132 RenderTableSection* section = m_table->topNonEmptySection(); local
133 if (!section)
138 RenderTableRow* firstRow = section->firstRow();
326 for (RenderTableSection* section = m_table->topNonEmptySection(); section; section = m_table->sectionBelow(section)) {
327 for (unsigned i = 0; i < section->numRows(); i++) {
328 RenderTableRow* row = section->rowRendererAt(i);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMapItem.java37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
102 // Add a MapItem for the final items in the section.
103 items.add(new MapItem(currentType, section,
105 } else if (section
124 MapItem(ItemType type, Section section, Item firstItem, Item lastItem, int itemCount) argument
161 MapItem(Section section) argument
[all...]
/external/lldb/source/Core/
H A DAddressRange.cpp31 AddressRange::AddressRange (const lldb::SectionSP &section, addr_t offset, addr_t byte_size) : argument
32 m_base_addr(section, offset),
199 s->Printf("%p: AddressRange section = %p, offset = 0x%16.16" PRIx64 ", byte_size = 0x%16.16" PRIx64 "\n", this, m_base_addr.GetSection().get(), m_base_addr.GetOffset(), GetByteSize());
/external/lldb/source/Target/
H A DSectionLoadList.cpp44 SectionLoadList::GetSectionLoadAddress (const lldb::SectionSP &section) const
46 // TODO: add support for the same section having multiple load addresses
48 if (section)
51 sect_to_addr_collection::const_iterator pos = m_sect_to_addr.find (section.get());
60 SectionLoadList::SetSectionLoadAddress (const lldb::SectionSP &section, addr_t load_addr, bool warn_multiple) argument
66 const FileSpec &module_file_spec (section->GetModule()->GetFileSpec());
67 log->Printf ("SectionLoadList::%s (section = %p (%s.%s), load_addr = 0x%16.16" PRIx64 ")",
69 section.get(),
71 section->GetName().AsCString(),
75 if (section
[all...]
/external/openssl/crypto/conf/
H A Dconf_api.c81 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
85 if ((conf == NULL) || (section == NULL)) return(NULL);
87 vv.section=(char *)section;
94 const char *section)
98 v=_CONF_get_section(conf,section);
105 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) argument
110 ts = (STACK_OF(CONF_VALUE) *)section->value;
112 value->section=section
129 _CONF_get_string(const CONF *conf, const char *section, const char *name) argument
270 _CONF_new_section(CONF *conf, const char *section) argument
[all...]
/external/oprofile/opjitconv/
H A Dopjitconv.h59 * section we put this code to */
60 asection * section; member in struct:jitentry
104 int fill_section_content(bfd * abfd, asection * section,
H A Dcreate_bfd.c34 asection * section = NULL; local
47 if (e->section)
48 section = e->section;
56 s->section = section;
58 s->value = e->vma - section->vma;
73 * create a new section.
78 asection * section; local
81 section
109 asection * section; local
133 fill_section_content(bfd * abfd, asection * section, void const * b, file_ptr offset, size_t sz) argument
147 fill_text_section_content(asection * section, int start_idx, int end_idx) argument
220 asection * section; local
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_field.h33 const std::string& section() const { return section_; } function in class:autofill::AutofillField
41 // Setters for the detected type and section for this field.
42 void set_section(const std::string& section) { section_ = section; } argument
96 // The unique identifier for the section (e.g. billing vs. shipping address)
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmodule.hpp38 struct section { struct in struct:clover::module
47 section(resource_id id, enum type type, size_t size, function in struct:clover::module::section
50 section() : id(0), type(text), size(0), data() { } function in struct:clover::module::section
79 symbol(const clover::compat::vector<char> &name, resource_id section, argument
81 name(name), section(section), offset(offset), args(args) { }
82 symbol() : name(), section(0), offset(0), args() { }
85 resource_id section; member in struct:clover::module::symbol
97 /// Look up a section by type. Throws module::noent_error if not
99 const section
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbytecode.h185 * \see section.h (#yasm_section).
194 /** Pointer to section containing bytecode; NULL if not part of a
195 * section.
197 /*@dependent@*/ /*@null@*/ yasm_section *section; member in struct:yasm_bytecode
213 /** Offset of bytecode from beginning of its section.
379 /** Create a bytecode that puts the following bytecode at a fixed section
381 * \param start section offset of following bytecode
390 /** Get the section that contains a particular bytecode.
393 * section).
/external/libunwind/src/
H A Delfxx.c45 Debug (1, "section table outside of image? (%lu > %lu)\n",
55 elf_w (string_table) (struct elf_image *ei, int section) argument
64 str_soff = soff + (section * ehdr->e_shentsize);
/external/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp291 const lldb_private::Section *section = section_list->GetSectionAtIndex(shndx).get(); local
292 if (section)
293 return section->GetName().AsCString("");
/external/llvm/bindings/python/llvm/
H A Dobject.py55 for section in obj.get_sections():
56 section_names.append(section.name)
180 """Represents a section in an object file."""
183 """Construct a new section instance.
195 """Obtain the string name of the section.
206 """The size of the section, in long bytes."""
226 """The address of this section, in long bytes."""
284 """Expire the section.
286 This is called internally by the section iterator.
330 def section(sel member in class:Symbol
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmodule.hpp38 struct section { struct in struct:clover::module
47 section(resource_id id, enum type type, size_t size, function in struct:clover::module::section
50 section() : id(0), type(text), size(0), data() { } function in struct:clover::module::section
79 symbol(const clover::compat::vector<char> &name, resource_id section, argument
81 name(name), section(section), offset(offset), args(args) { }
82 symbol() : name(), section(0), offset(0), args() { }
85 resource_id section; member in struct:clover::module::symbol
97 /// Look up a section by type. Throws module::noent_error if not
99 const section
[all...]
/external/okhttp/okio/src/main/java/okio/
H A DGzipSource.java34 /** The current section. Always progresses forward. */
35 private int section = SECTION_HEADER; field in class:GzipSource
67 if (section == SECTION_HEADER) {
69 section = SECTION_BODY;
73 if (section == SECTION_BODY) {
80 section = SECTION_TRAILER;
86 if (section == SECTION_TRAILER) {
88 section = SECTION_DONE;

Completed in 406 milliseconds

12345678