HomeSort by relevance Sort by last modified time
    Searched refs:multiple (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/webkit/WebCore/html/
HTMLDataGridElement.idl 37 attribute boolean multiple; // Whether or not the datagrid supports multiple selection.
HTMLDataGridElement.h 54 bool multiple() const;
HTMLDataGridElement.cpp 85 bool HTMLDataGridElement::multiple() const function in class:WebCore::HTMLDataGridElement
90 void HTMLDataGridElement::setMultiple(bool multiple)
92 setAttribute(multipleAttr, multiple ? "" : 0);
HTMLSelectElement.h 49 virtual bool multiple() const { return m_data.multiple(); } function in class:WebCore::HTMLSelectElement
HTMLSelectElement.idl 52 attribute boolean multiple;
HTMLSelectElement.cpp 68 DEFINE_STATIC_LOCAL(const AtomicString, selectMultiple, ("select-multiple"));
70 return m_data.multiple() ? selectMultiple : selectOne;
353 void HTMLSelectElement::setMultiple(bool multiple)
355 setAttribute(multipleAttr, multiple ? "" : 0);
392 setSelectedIndex(index, !m_data.multiple());
ValidityState.cpp 87 if (!input->multiple())
HTMLInputElement.idl 43 attribute boolean multiple;
  /external/e2fsprogs/lib/ext2fs/
icount.c 52 ext2fs_inode_bitmap multiple; member in struct:ext2_icount
73 if (icount->multiple)
74 ext2fs_free_inode_bitmap(icount->multiple);
103 &icount->multiple);
107 icount->multiple = 0;
495 if (icount->multiple &&
496 !ext2fs_test_inode_bitmap(icount->multiple, ino)) {
523 } else if (icount->multiple) {
526 * inode is set in icount->multiple, then there should
529 if (ext2fs_test_inode_bitmap(icount->multiple, ino))
    [all...]
  /external/webkit/WebCore/wml/
WMLSelectElement.h 55 virtual bool multiple() const { return m_data.multiple(); } function in class:WebCore::WMLSelectElement
WMLOptionElement.cpp 134 if (select->multiple() || selected)
WMLSelectElement.cpp 58 DEFINE_STATIC_LOCAL(const AtomicString, selectMultiple, ("select-multiple"));
60 return m_data.multiple() ? selectMultiple : selectOne;
312 m_defaultOptionIndices.append((unsigned) !m_data.multiple());
319 if (!m_data.multiple()) {
350 if (m_data.multiple()) {
351 // Spec: If the 'name' attribute is specified and the select is a multiple-choice element,
  /external/webkit/LayoutTests/fast/js/resources/
codegen-temporaries-multiple-global-blocks-2.js 2 'Tests whether bytecode codegen properly handles temporaries across multiple global blocks.'
  /bootable/diskinstaller/libdiskconfig/
diskconfig.c 42 uint32_t multiple = 1; local
55 multiple <<= 10;
58 multiple <<= 10;
72 if (multiple > 1) {
78 if (multiple > 1024)
79 multiple >>= 10;
80 *plen *= multiple;
  /system/core/libdiskconfig/
diskconfig.c 42 uint32_t multiple = 1; local
55 multiple <<= 10;
58 multiple <<= 10;
72 if (multiple > 1) {
78 if (multiple > 1024)
79 multiple >>= 10;
80 *plen *= multiple;
  /external/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 24 // Take care not to place multiple adjacent dots,
  /external/webkit/WebCore/dom/
SelectElement.h 40 virtual bool multiple() const = 0;
111 bool multiple() const { return m_multiple; } function in class:WebCore::SelectElementData
SelectElement.cpp 76 if (!element->renderer() || !data.multiple())
274 if (!foundSelected && (data.usesMenuList() || (!data.multiple() && optionElement->selected()))) {
277 } else if (foundSelected && !data.multiple() && optionElement->selected()) {
318 if (!data.multiple())
481 if (!successful && !data.multiple() && data.size() <= 1 && items.size()) {
508 if (selectedOption && !data.multiple())
691 bool shiftSelect = data.multiple() && mouseEvent->shiftKey();
692 bool multiSelect = data.multiple() && multiSelectKeyPressed && !mouseEvent->shiftKey();
705 // If we're not in any special multiple selection mode, then deselect all other items, excluding the clicked option.
719 // If we're doing a single selection, or a multiple selection (using cmd or ctrl), then initialize the anchor index to the listIndex that just got cli (…)
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/reader/
perf_reader.c 70 U32 sending, multiple, frame, size; local
87 /* we support having multiple log files concatenated into one log file */
171 multiple = (ulData1 & PERF_LOG_Multiple) ? PERF_FlagMultiple : PERF_FlagSingle;
174 /* read 2nd address if logged multiple buffers */
175 ulData2 = PERF_IsMultiple(multiple) ? read_U32(fLog) : 0;
179 multiple,
  /external/openssl/android.testssl/
testssl 139 echo test tls1 with 1024bit anonymous DH, multiple handshakes
146 echo test tls1 with 1024bit RSA, no DHE, multiple handshakes
152 echo test tls1 with 1024bit RSA, 1024bit DHE, multiple handshakes
  /external/webkit/WebCore/css/
wml.css 178 select[multiple],
179 select[size][multiple] {
  /ndk/build/core/
setup-abi.mk 16 # this file is included multiple times by build/core/setup-app.mk
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_print.c 311 int multiple = PERF_IsMultiple((unsigned long) eModule); local
336 if (multiple)
346 print_print_location(perf, fOut, 6 + (multiple ? 1 : 0));
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 308 * Thread to insert share info to db. In multiple files (say 100 files)
311 * multiple instances to support below case: User select multiple files to
328 public InsertShareInfoThread(BluetoothDevice device, boolean multiple,
332 this.mIsMultiple = multiple;
363 * Insert multiple sending sessions to db, only used by Opp application.
  /external/libpng/
pngtest.c 1456 int multiple = 0; local
    [all...]

Completed in 873 milliseconds

1 2 3 4