Searched defs:section (Results 126 - 150 of 186) sorted by relevance

12345678

/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_controller_browsertest.cc154 DialogSection section,
160 section, type, value);
164 DialogSection section,
168 return AutofillDialogControllerImpl::InputsAreValid(section, inputs);
324 bool SectionHasField(DialogSection section, ServerFieldType type) { argument
326 controller()->RequestedFieldsForSection(section);
705 // Inputs from the other section (billing) should be left alone.
1336 // Add the card and check that there's a menu for that section.
1349 // Select "New X..." from the suggestion menu to clear the section's inputs.
H A Dautofill_dialog_controller_unittest.cc191 virtual void UpdateSection(DialogSection section) OVERRIDE {
192 section_updates_[section]++;
200 virtual void FillSection(DialogSection section,
202 virtual void GetUserInput(DialogSection section, FieldValueMap* output)
204 *output = outputs_[section];
224 void SetUserInput(DialogSection section, const FieldValueMap& map) { argument
225 outputs_[section] = map;
508 // Activates the 'Add new foo' option from the |section|'s suggestions
509 // dropdown and fills the |section|'s inputs with the data from the
510 // |data_model|. If |section| i
511 FillInputs(DialogSection section, const AutofillDataModel& data_model) argument
562 ValidateCCNumber(DialogSection section, const std::string& cc_number, bool should_pass) argument
585 SectionContainsField(DialogSection section, ServerFieldType type) argument
596 GetMenuModelForSection(DialogSection section) argument
733 DialogSection section = static_cast<DialogSection>(i); local
753 DialogSection section = i == 0 ? SECTION_SHIPPING : SECTION_BILLING; local
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_manager.cc103 // logical form. Returns true if any field in the given |section| within |form|
107 const std::string& section) {
110 if (form_structure.field(i)->section() == section &&
506 autofill_field->section());
508 // If the relevant section is auto-filled and the renderer is querying
579 // If the relevant section is auto-filled, we should fill |field| but not the
581 if (SectionIsAutofilled(*form_structure, form, autofill_field->section())) {
616 if (form_structure->field(i)->section() != autofill_field->section())
105 SectionIsAutofilled(const FormStructure& form_structure, const FormData& form, const std::string& section) argument
[all...]
H A Dform_structure.cc152 // specified in the implementation section of http://is.gd/whatwg_autocomplete
160 // given |field_type|, as specified in the implementation section of
1006 // To prevent potential section name collisions, add a default suffix for
1008 // "section--shipping street-address" and "shipping street-address" would be
1009 // parsed identically, given the section handling code below. We do this
1011 // in the default section. These default section names will be overridden
1013 // section names.
1066 // section name suffixes.
1067 DCHECK_EQ(kDefaultSection, field->section());
1068 std::string section = field->section(); local
[all...]
/external/chromium_org/media/base/
H A Dcontainer_names.cc342 int section = ReadBits(&reader, 3); local
343 RCHECK(section < 5);
361 if (section == 0) { // Header.
381 RCHECK(block_number > last_block_number[section]);
382 last_block_number[section] = block_number;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Ddefines.h163 int16_t section; member in struct:iLBC_Enc_Inst_t_
/external/openssl/apps/
H A Dx509.c146 " -extensions - section from config file with X509V3 extensions to add\n",
158 CONF *conf, char *section);
163 CONF *conf, char *section, ASN1_INTEGER *sno);
559 "Error Loading extension section %s\n",
1151 int days, int clrext, CONF *conf, char *section,
1208 if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x)) goto end;
1255 CONF *conf, char *section)
1286 if (!X509V3_EXT_add_nconf(conf, &ctx, section, x)) goto err;
1147 x509_certify(X509_STORE *ctx, char *CAfile, const EVP_MD *digest, X509 *x, X509 *xca, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *sigopts, char *serialfile, int create, int days, int clrext, CONF *conf, char *section, ASN1_INTEGER *sno) argument
1254 sign(X509 *x, EVP_PKEY *pkey, int days, int clrext, const EVP_MD *digest, CONF *conf, char *section) argument
H A Dca.c181 " -extensions .. - Extension section (override value in config file)\n",
183 " -crlexts .. - CRL extension section (override value in config file)\n",
238 static char *section=NULL; variable
339 section = NULL;
361 section= *(++argv);
629 /* Lets get the config section we are using */
630 if (section == NULL)
632 section=NCONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_CA);
633 if (section == NULL)
676 f = NCONF_get_string(conf, section, STRING_MAS
[all...]
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_EditCtrl.cpp519 CPVT_Section section; local
526 if (pIterator->GetSection(section))
528 nFontIndex = section.WordProps.nFontIndex;
547 CPVT_Section section; local
554 if (pIterator->GetSection(section))
556 fFontSize = section.WordProps.fFontSize;
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp97 const char* sn; //current section name
112 static int parse_sections(const char* section_name, const XMLElement* section);
113 static void enum_config(void* user_data, const char* section, const char* key, const char* name,
210 const XMLElement* section; local
211 for(section = root->FirstChildElement(); section; section = section->NextSiblingElement())
213 //debug("section tag:%s", section
226 parse_sections(const char* section_name, const XMLElement* section) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTable.cpp122 // wrapped in a table section box.
186 RenderObject* section = beforeChild->previousSibling(); local
187 if (section && section->isTableSection() && section->isAnonymous()) {
188 section->addChild(child);
206 RenderTableSection* section = RenderTableSection::createAnonymousWithParentRenderer(this); local
207 addChild(section, beforeChild);
208 section->addChild(child);
382 if (RenderTableSection* section
449 RenderTableSection* section = toRenderTableSection(child); local
520 RenderTableSection* section = topSection(); local
702 RenderTableSection* section = topSection(); local
721 RenderTableSection* section = toRenderTableSection(child); local
746 RenderTableSection* section = toRenderTableSection(child); local
827 RenderTableSection* section = toRenderTableSection(child); local
837 RenderTableSection* section = toRenderTableSection(child); local
847 RenderTableSection* section = toRenderTableSection(child); local
862 RenderTableSection* section = toRenderTableSection(child); local
1102 sectionAbove(const RenderTableSection* section, SkipEmptySectionsValue skipEmptySections) const argument
1120 sectionBelow(const RenderTableSection* section, SkipEmptySectionsValue skipEmptySections) const argument
1159 RenderTableSection* section = 0; local
1188 RenderTableSection* section = 0; local
1213 RenderTableSection* section = cell->section(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
H A DConsoleView.js708 var section = WebInspector.shortcutsScreen.section(WebInspector.UIString("Console")); variable
718 section.addAlternateKeys(keys, WebInspector.UIString("Clear console"));
720 section.addKey(shortcut.makeDescriptor(shortcut.Keys.Tab), WebInspector.UIString("Autocomplete common prefix"));
721 section.addKey(shortcut.makeDescriptor(shortcut.Keys.Right), WebInspector.UIString("Accept suggestion"));
725 section.addAlternateKeys([shortcutU], WebInspector.UIString("Clear console prompt"));
731 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous line"));
738 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous command"));
741 section.addKey(shortcut.makeDescriptor(shortcut.Keys.Enter), WebInspector.UIString("Execute command"));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
H A DMain.js228 WebInspector.shortcutsScreen.section(WebInspector.UIString("Console"));
229 WebInspector.shortcutsScreen.section(WebInspector.UIString("Elements Panel"));
466 var section = WebInspector.shortcutsScreen.section(WebInspector.UIString("All Panels")); variable
471 section.addRelatedKeys(keys, WebInspector.UIString("Go to the panel to the left/right"));
477 section.addRelatedKeys(keys, WebInspector.UIString("Go back/forward in panel history"));
480 section.addKey(shortcut.makeDescriptor(shortcut.Keys.Tilde, shortcut.Modifiers.Ctrl), toggleConsoleLabel);
481 section.addKey(shortcut.makeDescriptor(shortcut.Keys.Esc), WebInspector.UIString("Toggle drawer"));
483 section.addKey(shortcut.makeDescriptor("M", shortcut.Modifiers.CtrlOrMeta | shortcut.Modifiers.Shift), WebInspector.UIString("Toggle device mode"));
484 section
[all...]
/external/chromium_org/third_party/codesighs/
H A Dmsmap2tsv.c99 ** Each section for a symbol has a list of sizes.
105 ** mName The section name.
106 ** mSizes The varoius sizes of the symbol in this section.
119 ** Each symbol has at least one section.
120 ** The section indicates what type of symbol a client may be looking for.
121 ** If there is no match on the section, then the client should not trust
316 ** Perform a lookup for the section of the symbol.
345 ** We have the section.
392 char* section = NULL; local
421 section
779 SymDB_Section* section = &symbol->mSections[secLoop]; local
1735 MSMap_Segment* section = NULL; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
H A Dbin-objfmt.c71 /* symrec data is used only for the special symbols section<sectname>.start,
72 * section<sectname>.vstart, and section<sectname>.length
75 yasm_section *section; /* referenced section */ member in struct:bin_symrec_data
119 yasm_section *section; member in struct:bin_group
123 * group's section.
128 /* Recursive function to find group containing named section. */
134 if (strcmp(yasm_section_get_name(group->section), name) == 0)
146 find_group_by_section(bin_groups *groups, yasm_section *section) argument
539 yasm_section *section; /* NULL for EQUs */ member in struct:map_output_info
[all...]
/external/e2fsprogs/e2fsck/
H A Dprofile.c188 (struct profile_node *section,
193 (struct profile_node *section,
1036 * Each node may represent either a relation or a section header.
1038 * A section header must have its value field set to 0, and may a one
1146 * Add a node to a particular section
1148 errcode_t profile_add_node(struct profile_node *section, const char *name, argument
1154 CHECK_MAGIC(section);
1156 if (section->value)
1164 for (p=section->first_child, last = 0; p; last = p, p = p->next) {
1173 new->group_level = section
1203 profile_find_node(struct profile_node *section, const char *name, const char *value, int section_flag, void **state, struct profile_node **node) argument
1338 struct profile_node *section, *p; local
[all...]
/external/e2fsprogs/misc/
H A Dmke2fs.c1024 static int profile_has_subsection(profile_t prof, const char *section, argument
1032 names[0] = section;
/external/elfutils/0.153/src/
H A Dunstrip.c90 N_("Apply relocations to section contents in ET_REL files"), 0 },
281 _("cannot copy section header: %s"));
284 ELF_CHECK (data != NULL, _("cannot get section data: %s"));
286 ELF_CHECK (newdata != NULL, _("cannot copy section data: %s"));
314 /* The binutils linker leaves gratuitous section symbols in .symtab
316 symbol for every section, even unallocated ones, in .dynsym.
320 version of the section header, so it can appear larger. */
335 /* See if this symbol table has a leading section symbol for every single
336 section, in order. The binutils linker produces this. While we're here,
337 update each section symbo
647 struct section struct
[all...]
/external/llvm/include/llvm/Object/
H A DELF.h244 const Elf_Shdr *dot_symtab_sec; // Symbol table section.
304 const char *getString(uint32_t section, uint32_t offset) const;
305 const char *getString(const Elf_Shdr *section, uint32_t offset) const;
307 ErrorOr<StringRef> getSymbolVersion(const Elf_Shdr *section,
316 /// \brief Get the symbol table section and symbol for a given relocation.
345 /// the section size.
413 /// \param SymTab The symbol table section \p Symb is contained in.
437 unsigned vd_size = sec->sh_size; // Size of section in bytes
441 // The first Verdef entry is at the start of the section.
458 // Iterate through the versions needed section, an
866 getString(uint32_t section, ELF::Elf32_Word offset) const argument
872 getString(const Elf_Shdr *section, ELF::Elf32_Word offset) const argument
922 getSymbolVersion(const Elf_Shdr *section, const Elf_Sym *symb, bool &IsDefault) const argument
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_vt.cpp1835 FX_BOOL CPDF_VariableText_Iterator::GetSection(CPVT_Section & section) const
1838 section.secplace = CPVT_WordPlace(m_CurPos.nSecIndex, 0, -1);
1840 section.rcSection = m_pVT->InToOut(pSection->m_SecInfo.rcSection);
1842 section.SecProps = *pSection->m_SecInfo.pSecProps;
1845 section.WordProps = *pSection->m_SecInfo.pWordProps;
1851 FX_BOOL CPDF_VariableText_Iterator::SetSection(const CPVT_Section & section) argument
1856 *pSection->m_SecInfo.pSecProps = section.SecProps;
1859 *pSection->m_SecInfo.pWordProps = section.WordProps;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c173 static void zero_stats(FIRSTPASS_STATS *section) argument
175 section->frame = 0.0;
176 section->intra_error = 0.0;
177 section->coded_error = 0.0;
178 section->ssim_weighted_pred_err = 0.0;
179 section->pcnt_inter = 0.0;
180 section->pcnt_motion = 0.0;
181 section->pcnt_second_ref = 0.0;
182 section->pcnt_neutral = 0.0;
183 section
195 accumulate_stats(FIRSTPASS_STATS *section, FIRSTPASS_STATS *frame) argument
217 subtract_stats(FIRSTPASS_STATS *section, FIRSTPASS_STATS *frame) argument
239 avg_stats(FIRSTPASS_STATS *section) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_firstpass.c151 static void zero_stats(FIRSTPASS_STATS *section) { argument
152 section->frame = 0.0;
153 section->intra_error = 0.0;
154 section->coded_error = 0.0;
155 section->sr_coded_error = 0.0;
156 section->pcnt_inter = 0.0;
157 section->pcnt_motion = 0.0;
158 section->pcnt_second_ref = 0.0;
159 section->pcnt_neutral = 0.0;
160 section
173 accumulate_stats(FIRSTPASS_STATS *section, const FIRSTPASS_STATS *frame) argument
196 subtract_stats(FIRSTPASS_STATS *section, const FIRSTPASS_STATS *frame) argument
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c173 static void zero_stats(FIRSTPASS_STATS *section) argument
175 section->frame = 0.0;
176 section->intra_error = 0.0;
177 section->coded_error = 0.0;
178 section->ssim_weighted_pred_err = 0.0;
179 section->pcnt_inter = 0.0;
180 section->pcnt_motion = 0.0;
181 section->pcnt_second_ref = 0.0;
182 section->pcnt_neutral = 0.0;
183 section
195 accumulate_stats(FIRSTPASS_STATS *section, FIRSTPASS_STATS *frame) argument
217 subtract_stats(FIRSTPASS_STATS *section, FIRSTPASS_STATS *frame) argument
239 avg_stats(FIRSTPASS_STATS *section) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_firstpass.c164 static void zero_stats(FIRSTPASS_STATS *section) { argument
165 section->frame = 0.0;
166 section->intra_error = 0.0;
167 section->coded_error = 0.0;
168 section->sr_coded_error = 0.0;
169 section->ssim_weighted_pred_err = 0.0;
170 section->pcnt_inter = 0.0;
171 section->pcnt_motion = 0.0;
172 section->pcnt_second_ref = 0.0;
173 section
187 accumulate_stats(FIRSTPASS_STATS *section, const FIRSTPASS_STATS *frame) argument
211 subtract_stats(FIRSTPASS_STATS *section, const FIRSTPASS_STATS *frame) argument
234 avg_stats(FIRSTPASS_STATS *section) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dheader.c1658 static int process_tracing_data(struct perf_file_section *section __maybe_unused,
1666 static int process_build_id(struct perf_file_section *section, argument
1670 if (perf_header__read_build_ids(ph, fd, section->offset, section->size))
1675 static int process_hostname(struct perf_file_section *section __maybe_unused,
1683 static int process_osrelease(struct perf_file_section *section __maybe_unused,
1691 static int process_version(struct perf_file_section *section __maybe_unused,
1699 static int process_arch(struct perf_file_section *section __maybe_unused,
1707 static int process_nrcpus(struct perf_file_section *section __maybe_unused,
1734 static int process_cpudesc(struct perf_file_section *section __maybe_unuse
2161 perf_file_section__fprintf_info(struct perf_file_section *section, struct perf_header *ph, int feat, int fd, void *data) argument
2376 perf_header__process_sections(struct perf_header *header, int fd, void *data, int (*process)(struct perf_file_section *section, struct perf_header *ph, int feat, int fd, void *data)) argument
2603 perf_file_section__process(struct perf_file_section *section, struct perf_header *ph, int feat, int fd, void *data) argument
[all...]

Completed in 6486 milliseconds

12345678