HomeSort by relevance Sort by last modified time
    Searched refs:section (Results 251 - 275 of 1434) sorted by null

<<11121314151617181920>>

  /external/chromium_org/base/
ini_parser.cc 33 // It is a section header.
54 void DictionaryValueINIParser::HandleTriplet(const std::string& section,
58 // Checks whether the section and key contain a '.' character.
61 if (section.find('.') == std::string::npos &&
63 root_.SetString(section + "." + key, value);
  /external/chromium_org/chrome/browser/ui/webui/options/
settings_app_browsertest.js 23 // Test opening Settings App, and do some checks on section visibility.
33 assertTrue(isVisible('sync-users-section'));
34 assertTrue(isVisible('sync-section'));
37 assertFalse(isVisible('change-home-page-section'));
39 assertFalse(isVisible('privacy-section'));
40 assertFalse(isVisible('startup-section'));
  /external/chromium_org/chrome/utility/media_galleries/
picasa_albums_indexer.cc 30 virtual void HandleTriplet(const std::string& section,
37 if (section.find(kAlbumSectionHeader) == 0)
52 folder_path_.Append(base::FilePath::FromUTF8Unsafe(section)));
  /external/chromium_org/components/autofill/core/browser/
autofill_field.h 33 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; }
72 // The unique identifier for the section (e.g. billing vs. shipping address)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
PropertiesSidebarPane.js 97 var section = new WebInspector.ObjectPropertiesSection(prototype, title);
98 this.sections.push(section);
99 body.appendChild(section.element);
ShortcutsScreen.js 44 section: function(name)
46 var section = this._sections[name];
47 if (!section)
48 this._sections[name] = section = new WebInspector.ShortcutsSection(name);
49 return section;
58 for (var section in this._sections)
59 orderedSections.push(this._sections[section]);
151 headLine.createChild("div", "help-section-title help-cell").textContent = this.name;
WatchExpressionsSidebarPane.js 39 this.section = new WebInspector.WatchExpressionsSection();
40 this.bodyElement.appendChild(this.section.element);
76 this.section.addExpression(expression);
83 this.section.update();
93 this.section.addNewExpressionAndEdit();
212 // note this is setting the expansion of the tree, not the section;
351 this.treeOutline.section._expandedExpressions[this._expression()] = true;
357 delete this.treeOutline.section._expandedExpressions[this._expression()];
363 if (this.treeOutline.section._expandedExpressions[this._expression()])
399 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add watch expression" : "Add Watch Expression"), this.treeOutline.section.addNewExpressionAndEdit.bind(this.treeOutline.section))
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syscall-ppc64-linux.S 78 .section ".opd","aw"
148 .section .rodata
166 .section .note.GNU-stack,"",@progbits
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactEntryAdapter.java 86 * Resets the section data.
88 * @param sections the section data
97 * Resets the section data and returns the position of the given entry.
99 * @param sections the section data
110 ArrayList<E> section = mSections.get(i); local
111 int sectionSize = section.size();
113 E e = section.get(j);
150 ArrayList<E> section = mSections.get(i); local
151 int sectionSize = section.size();
153 // The section only contains a separator and nothing else, skip i
183 ArrayList<T> section = sections.get(i); local
208 ArrayList<T> section = sections.get(i); local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
coretypes.h 17 Under Section 7 of GPL version 3, you are granted additional
65 union section;
66 typedef union section section; typedef in typeref:union:section
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
coretypes.h 17 Under Section 7 of GPL version 3, you are granted additional
65 union section;
66 typedef union section section; typedef in typeref:union:section
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
coretypes.h 17 Under Section 7 of GPL version 3, you are granted additional
65 union section;
66 typedef union section section; typedef in typeref:union:section
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
coretypes.h 17 Under Section 7 of GPL version 3, you are granted additional
65 union section;
66 typedef union section section; typedef in typeref:union:section
  /external/oprofile/libutil++/
bfd_support.cpp 83 cverb << vbfd << "fetching .gnu_debuglink section" << endl;
92 << ".gnu_debuglink section has size " << debuglink_size << endl;
226 void fixup_linenr(bfd * abfd, asection * section, asymbol ** syms,
242 size_t section_size = bfd_section_size(abfd, section);
247 bool ret = bfd_find_nearest_line(abfd, section, syms, pc + i,
336 if (!sym->section) {
343 if (!(sym->section->flags & SEC_CODE))
370 if (!(sym->section->flags & SEC_LOAD))
445 * function filters out symbols whose section's flag value does not include
448 * section flag does NOT include SEC_LOAD. To solve this problem, th
618 asection * section; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
preferences.h 68 // |section| (e.g. "general") and |name| (e.g. "use_global_engine") should
70 void SetLanguageConfigBoolean(const char* section,
75 // |section| and |name| should not be NULL.
76 void SetLanguageConfigInteger(const char* section,
81 // |section| and |name| should not be NULL.
82 void SetLanguageConfigString(const char* section,
87 // |section| and |name| should not be NULL.
88 void SetLanguageConfigStringList(const char* section,
94 void SetLanguageConfigStringListAsCSV(const char* section,
  /external/chromium_org/chrome/browser/resources/
policy_android.css 32 body.uber-frame section {
37 body.uber-frame section > h3 {
96 section.reload-show-unset-section {
101 section.status-box-section {
127 section.empty > table {
131 section:not(.empty) > div.no-policies-set {
135 body.uber-frame * section.policy-table-section {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTableColumn.cpp 100 // try the <thead> section first. this doesn't require th tags
112 AccessibilityObject* AccessibilityTableColumn::headerObjectForSection(RenderTableSection* section, bool thTagRequired)
114 if (!section)
117 unsigned numCols = section->numColumns();
121 if (!section->numRows())
127 RenderTableCell* testCell = section->primaryCellAt(0, testCol);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DexFile.java 72 * are added to it incrementally by calling the {@link org.jf.dexlib.Section#intern intern} method of
105 * A mapping from ItemType to the section that contains items of the given type
107 private final Section[] sectionsByType;
179 * A private constructor containing common code to initialize the section maps and lists
189 sectionsByType = new Section[] {
399 Section sections[] = new Section[] {
418 for (Section section: sections) {
419 if (section == null)
654 Section section = sections[sectionsPosition]; local
667 Section section = sections[sectionsPosition]; local
    [all...]
  /external/llvm/test/MC/ARM/
eh-directive-text-section-multiple-func.s 4 @ Check whether the section is switched back or not.
6 @ The assembler should emit the machine code of "func2" in .text section.
8 @ Besides, there should be two entries in .ARM.exidx section.
31 @ Check the .text section. There should be two "bx lr" instructions.
34 @ CHECK: Section {
43 @ Check the .ARM.exidx section.
46 @ CHECK: Section {
60 @ The first word of each entry should be relocated to .text section.
70 @ Check the symbols "func1" and "func2". They should belong to .text section.
75 @ CHECK: Section: .text (0x1
    [all...]
  /hardware/ti/wlan/mac80211/ti-utils/
calibrator.h 62 __attribute__((used)) __attribute__((section("__cmd"))) = { \
73 #define COMMAND(section, name, args, cmd, flags, idby, handler, help) \
74 __COMMAND(&(__section ## _ ## section), name, #name, args, cmd, flags, 0, idby, handler, help)
75 #define HIDDEN(section, name, args, cmd, flags, idby, handler) \
76 __COMMAND(&(__section ## _ ## section), name, #name, args, cmd, flags, 1, idby, handler, NULL)
81 __attribute__((used)) __attribute__((section("__cmd"))) = { \
90 #define SECTION(_name) \
92 __attribute__((used)) __attribute__((section("__cmd"))) = { \
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 53 * encrypted metadata section, followed by an encrypted content section. The
54 * content section always starts at a specific offset {@link #CONTENT_OFFSET} to
57 * Each section is encrypted using AES-128 with a random IV, and authenticated
71 * Offset in file at which content section starts. Magic and metadata
72 * section must fully fit before this offset.
129 * Decrypt and return parsed metadata section from this document.
140 // Only interested in metadata section
166 * Decrypt and read content section of this document, writing it into the
188 // Skip over metadata section
274 final Section section = new Section(); local
312 final Section section = new Section(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_impl.cc 206 // useful when you only need the value of 1 input from a section of view inputs.
220 std::string SectionToPrefString(DialogSection section) {
221 switch (section) {
229 // The SECTION_CC_BILLING section isn't active when using Autofill.
544 // Test whether we need to show the shipping section. If filling that section
827 bool AutofillDialogControllerImpl::SectionIsActive(DialogSection section)
830 return section == SECTION_CC_BILLING;
832 if (!FormStructureCaresAboutSection(section))
836 return section == SECTION_CC_BILLING || section == SECTION_SHIPPING
941 DialogSection section = SectionFromLocation(it->location()); local
1047 DialogSection section = static_cast<DialogSection>(i); local
1074 DialogSection section = static_cast<DialogSection>(i); local
2020 DialogSection section = static_cast<DialogSection>(i); local
2086 DialogSection section = SectionForSuggestionsMenuModel(*model); local
2625 DialogSection section = static_cast<DialogSection>(i); local
2651 DialogSection section = static_cast<DialogSection>(i); local
3179 DialogSection section = static_cast<DialogSection>(i); local
3333 DialogSection section = SectionForSuggestionsMenuModel(model); local
    [all...]
  /external/llvm/test/DebugInfo/SystemZ/
variable-loc.s 19 .section .debug_info,"",@progbits
21 .section .debug_abbrev,"",@progbits
23 .section .debug_aranges,"",@progbits
24 .section .debug_macinfo,"",@progbits
25 .section .debug_line,"",@progbits
27 .section .debug_loc,"",@progbits
28 .section .debug_pubtypes,"",@progbits
29 .section .debug_str,"MS",@progbits,1
31 .section .debug_ranges,"",@progbits
33 .section .debug_loc,"",@progbit
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/include/
bfdlink.h 82 asection *section; /* Symbol section. */
130 asection *section; /* Symbol section. */
145 symbols: the size, the alignment, and the section in
148 section and the alignment. The alignment is stored as a
298 /* TRUE if non-PLT relocs should be merged into one reloc section
302 /* TRUE if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment
338 /* TRUE if .hash section should be created. */
341 /* TRUE if .gnu.hash section should be created. *
81 asection *section; \/* Symbol section. *\/ member in struct:bfd_link_hash_common_entry
129 asection *section; \/* Symbol section. *\/ member in struct:bfd_link_hash_entry::__anon35236::__anon35238
643 asection *section; member in struct:bfd_link_order::__anon35241::__anon35242
687 asection *section; member in union:bfd_link_order_reloc::__anon35245
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/include/
bfdlink.h 83 asection *section; /* Symbol section. */
132 asection *section; /* Symbol section. */
147 symbols: the size, the alignment, and the section in
150 section and the alignment. The alignment is stored as a
231 /* A section flag list. */
240 /* Section flag info. */
335 /* TRUE if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment
345 /* TRUE if .hash section should be created. *
82 asection *section; \/* Symbol section. *\/ member in struct:bfd_link_hash_common_entry
131 asection *section; \/* Symbol section. *\/ member in struct:bfd_link_hash_entry::__anon35629::__anon35631
676 asection *section; member in struct:bfd_link_order::__anon35635::__anon35636
720 asection *section; member in union:bfd_link_order_reloc::__anon35639
    [all...]

Completed in 1178 milliseconds

<<11121314151617181920>>