HomeSort by relevance Sort by last modified time
    Searched defs:section (Results 26 - 50 of 72) sorted by null

12 3

  /external/webkit/WebCore/rendering/
FixedTableLayout.cpp 144 RenderTableSection* section = m_table->header(); local
145 if (!section)
146 section = m_table->firstBody();
147 if (!section)
148 section = m_table->footer();
149 if (section && !section->numRows())
150 section = m_table->sectionBelow(section, true);
151 if (section) {
    [all...]
RenderTableCell.h 51 RenderTableSection* section() const { return toRenderTableSection(parent()->parent()); } function in class:WebCore::RenderTableCell
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
coretypes.h 16 Under Section 7 of GPL version 3, you are granted additional
59 union section;
60 typedef union section section; typedef in typeref:union:section
output.h 271 extern void assemble_addr_to_section (rtx, section *);
382 /* Decide whether DECL needs to be in a writable section.
399 /* Flags controlling properties of a section. */
400 #define SECTION_ENTSIZE 0x000ff /* entity size in section */
407 #define SECTION_FORGET 0x04000 /* forget that we've entered the section */
414 #define SECTION_DECLARED 0x100000 /* section has been used */
424 to using a general section directive. */
428 all. The choice of section is implied by the directive that we use
448 of data section:
472 /* Information that is provided by all instances of the section type. *
529 union section GTY ((desc ("SECTION_STYLE (&(%h))"))) function
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
coretypes.h 16 Under Section 7 of GPL version 3, you are granted additional
59 union section;
60 typedef union section section; typedef in typeref:union:section
output.h 271 extern void assemble_addr_to_section (rtx, section *);
382 /* Decide whether DECL needs to be in a writable section.
399 /* Flags controlling properties of a section. */
400 #define SECTION_ENTSIZE 0x000ff /* entity size in section */
407 #define SECTION_FORGET 0x04000 /* forget that we've entered the section */
414 #define SECTION_DECLARED 0x100000 /* section has been used */
424 to using a general section directive. */
428 all. The choice of section is implied by the directive that we use
448 of data section:
472 /* Information that is provided by all instances of the section type. *
529 union section GTY ((desc ("SECTION_STYLE (&(%h))"))) function
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/widget/
ContactEditorView.java 143 * <p>If the source is read-only and there's no secondary fields, the entire secondary section
244 // Otherwise use generic section-based editors
247 final KindSectionView section = (KindSectionView)mInflater.inflate( local
249 section.setState(kind, state, mIsSourceReadOnly, vig);
250 if (kind.secondary && section.isAnyEditorFilledOut()) {
253 parent.addView(section);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 69 import org.eclipse.ui.forms.widgets.Section;
153 * @param title Title for the section
154 * @param description Description for the section
202 Section section = mMasterPart.getSection(); local
203 section.setText(mTitle);
204 section.setDescription(mDescription);
205 section.setLayout(new GridLayout());
206 section.setLayoutData(new GridData(GridData.FILL_BOTH));
208 Composite grid = SectionHelper.createGridLayout(section, toolkit, 2)
    [all...]
  /external/dbus/bus/
desktop-file.c 59 int current_section; /**< The current section being parsed */
109 bus_desktop_file_section_free (BusDesktopFileSection *section)
113 for (i = 0; i < section->n_lines; i++)
114 bus_desktop_file_line_free (&section->lines[i]);
116 dbus_free (section->lines);
117 dbus_free (section->section_name);
133 grow_lines_in_section (BusDesktopFileSection *section)
139 if (section->n_allocated_lines == 0)
142 new_n_lines = section->n_allocated_lines*2;
144 lines = dbus_realloc (section->lines
305 BusDesktopFileSection *section; local
320 BusDesktopFileSection *section; local
707 BusDesktopFileSection *section; local
749 BusDesktopFileSection *section; local
    [all...]
  /external/elfcopy/
dwarf.h 34 /* A structure containing the name of a debug section
38 struct dwarf_section section; member in struct:dwarf_section_display
67 we extract from the.debug_info section. */
fixdwarf.c 106 idx_debug_<xxx> variable. If a section is not
121 else INFO(", but the section is being removed."); \
187 struct dwarf_section *section = &debug_displays [debug].section; local
190 INFO("Could not load section %s: it is not in the file.\n",
191 debug_displays[debug].section.name);
196 INFO("Loading DWARF section type %s index %d (type %d)\n",
202 if (section->start != NULL) {
203 INFO("\tAlready loaded DWARF section type %s (type %d)\n", s_shdr_info[shdr_idx].name, debug);
209 section->address = s_shdr_info[shdr_idx].shdr.sh_addr
224 struct dwarf_section *section = &debug_displays [debug].section; local
    [all...]
  /external/libvpx/build/make/
obj_int_extract.c 96 struct section s;
104 memcpy(&s, seg_buf + (j * sizeof(struct section)), sizeof(struct section));
309 log_msg("Failed to parse ELF string table: section %d, index %d\n",
362 log_msg("found section: %s\n", strtsb_name);
554 char **sectionlist; //this array holds all section names in their correct order.
555 //it is used to check if the symbol is in .bss or .data section.
570 The size of optional header is always zero for an obj file. So, the section header
574 ptr = buf + 20; //section header
580 //log_msg("COFF: Parsing section %s\n",sectionname)
623 __int16 section = get_le16(ptr + 12); \/\/section number local
    [all...]
  /external/openssl/crypto/conf/
conf_def.c 75 static int str_copy(CONF *conf,char *section,char **to, char *from);
221 char *section=NULL,*buf; local
232 section=(char *)OPENSSL_malloc(10);
233 if (section == NULL)
238 BUF_strlcpy(section,"default",10);
246 sv=_CONF_new_section(conf,section);
337 if (!str_copy(conf,NULL,&section,start)) goto err;
338 if ((sv=_CONF_get_section(conf,section)) == NULL)
339 sv=_CONF_new_section(conf,section);
386 if (psection == NULL) psection=section;
    [all...]
conf.h 76 char *section; member in struct:__anon5313
131 const char *section); variable
167 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,const char *section);
  /packages/apps/Contacts/src/com/android/contacts/
ContactEntryAdapter.java 88 * Resets the section data.
90 * @param sections the section data
99 * Resets the section data and returns the position of the given entry.
101 * @param sections the section data
112 ArrayList<E> section = mSections.get(i); local
113 int sectionSize = section.size();
115 E e = section.get(j);
152 ArrayList<E> section = mSections.get(i); local
153 int sectionSize = section.size();
155 // The section only contains a separator and nothing else, skip i
185 ArrayList<T> section = sections.get(i); local
210 ArrayList<T> section = sections.get(i); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/
dis-asm.h 85 /* Some targets need information about the current section to accurately
88 asection *section; member in struct:disassemble_info
171 /* The number of zeroes we want to see at the end of a section before we
175 /* The number of zeroes to skip at the end of a section. If the number
179 attempt to avoid disassembling zeroes inserted by section
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 32 import org.eclipse.ui.forms.widgets.Section;
35 * Generic page's section part that displays all attributes of a given {@link UiElementNode}.
104 * Setup the section that contains this part.
106 * This is called by the constructor to set the section's title and description
112 * @param sectionTitle The section part's title
113 * @param sectionDescription The section part's description
116 Section section = getSection(); local
117 section.setText(sectionTitle);
118 section.setDescription(sectionDescription)
    [all...]
  /external/webkit/WebCore/inspector/front-end/
StylesSidebarPane.js 132 var section = this.sections[i];
133 if (section instanceof WebInspector.BlankStylePropertiesSection)
135 if (section.computedStyle)
136 section.styleRule.style = node.ownerDocument.defaultView.getComputedStyle(node);
137 var styleRule = { section: section, style: section.styleRule.style, computedStyle: section.computedStyle, rule: section.rule };
196 if (styleRule.section && styleRule.section.noAffect
    [all...]
  /external/chromium/base/
pe_image.cc 63 PIMAGE_SECTION_HEADER PEImage::GetSectionHeader(UINT section) const {
67 if (section < nt_headers->FileHeader.NumberOfSections)
68 return first_section + section;
92 PIMAGE_SECTION_HEADER section; local
94 for (UINT i = 0; NULL != (section = GetSectionHeader(i)); i++) {
97 PEImage::RVAToAddr(section->VirtualAddress));
99 DWORD size = section->Misc.VirtualSize;
102 return section;
117 PIMAGE_SECTION_HEADER section = GetSectionHeader(i); local
118 if (0 == _strnicmp(reinterpret_cast<LPCSTR>(section->Name), section_name
217 PIMAGE_SECTION_HEADER section = GetSectionHeader(0); local
    [all...]
  /external/chromium/net/url_request/
url_request_view_net_internals_job.cc 724 SubSection* section = all; local
728 section = all->FindSubSectionByName(details);
730 if (section) {
731 section->OutputRecursive(context, url_format_, data);
  /external/openssl/include/openssl/
conf.h 76 char *section; member in struct:__anon5460
131 const char *section); variable
167 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,const char *section);
  /libcore/luni/src/main/java/org/apache/xml/utils/
DOMBuilder.java 561 * section 2.10): non-validating parsers may also use this method
607 * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
636 /** Flag indicating that we are processing a CData section */
640 * Report the start of a CDATA section.
651 * Report the end of a CDATA section.
691 CDATASection section =(CDATASection) m_currentNode.getLastChild(); local
692 section.appendData(s);
  /external/chromium/third_party/icu/source/tools/makeconv/
gencnvex.c 394 * One function invocation generates one section table.
399 * 2. Allocate the section table with possible optimization for linear access.
400 * 3. Write temporary version of the section table with start indexes of
403 * 0: write 0 as a result value (unused byte in linear-access section table)
421 uint32_t *section; local
444 /* step 2: allocate the section; set count, section */
460 fprintf(stderr, "error: toUnicode extension table section overflow: %ld section entries\n", (long)count);
464 /* allocate the section: 1 entry for the header + count for the items *
    [all...]
  /external/grub/stage2/
char_io.c 277 A command-line consists of ``section''s. A section is a part of the
278 line which may be displayed on the screen, but a section is never
279 displayed with another section simultaneously.
281 Each section is basically 77 or less characters, but the exception
282 is the first section, which is 78 or less characters, because the
285 The first section contains a prompt and a command-line (or the
287 screen). So, in the first section, the number of command-line
294 is absolutely a section before each section. If there is a sectio
311 int xpos, lpos, c, section; local
    [all...]
  /external/icu4c/tools/makeconv/
gencnvex.c 394 * One function invocation generates one section table.
399 * 2. Allocate the section table with possible optimization for linear access.
400 * 3. Write temporary version of the section table with start indexes of
403 * 0: write 0 as a result value (unused byte in linear-access section table)
421 uint32_t *section; local
444 /* step 2: allocate the section; set count, section */
460 fprintf(stderr, "error: toUnicode extension table section overflow: %ld section entries\n", (long)count);
464 /* allocate the section: 1 entry for the header + count for the items *
    [all...]

Completed in 1158 milliseconds

12 3