Searched defs:index (Results 226 - 250 of 4630) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableSectionElement.cpp56 // the index... but they aren't used during usual HTML parsing anyway
57 PassRefPtrWillBeRawPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionState& exceptionState) argument
61 if (index < -1 || index > numRows) {
62 exceptionState.throwDOMException(IndexSizeError, "The provided index (" + String::number(index) + " is outside the range [-1, " + String::number(numRows) + "].");
67 if (numRows == index || index == -1)
70 insertBefore(row, children->item(index), exceptionState);
74 void HTMLTableSectionElement::deleteRow(int index, ExceptionStat argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DDateTimeFieldsState.cpp36 static unsigned getNumberFromFormControlState(const FormControlState& state, size_t index) argument
38 if (index >= state.valueSize())
41 unsigned const value = state[index].toUInt(&parsed);
45 static DateTimeFieldsState::AMPMValue getAMPMFromFormControlState(const FormControlState& state, size_t index) argument
47 if (index >= state.valueSize())
49 const String value = state[index];
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTRegionList.cpp40 VTTRegion* VTTRegionList::item(unsigned index) const
42 if (index < m_list.size())
43 return m_list[index].get();
68 size_t index = m_list.find(region); local
69 if (index == kNotFound)
72 m_list.remove(index);
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DDOMMimeType.cpp30 DOMMimeType::DOMMimeType(PassRefPtr<PluginData> pluginData, LocalFrame* frame, unsigned index) argument
33 , m_index(index)
H A DDOMMimeType.h41 static PassRefPtrWillBeRawPtr<DOMMimeType> create(PassRefPtr<PluginData> pluginData, LocalFrame* frame, unsigned index) argument
43 return adoptRefWillBeNoop(new DOMMimeType(pluginData, frame, index));
57 DOMMimeType(PassRefPtr<PluginData>, LocalFrame*, unsigned index);
H A DDOMMimeTypeArray.cpp49 PassRefPtrWillBeRawPtr<DOMMimeType> DOMMimeTypeArray::item(unsigned index) argument
55 if (index >= mimes.size())
57 return DOMMimeType::create(data, m_frame, index).get();
H A DDOMPlugin.h40 static PassRefPtrWillBeRawPtr<DOMPlugin> create(PluginData* pluginData, LocalFrame* frame, unsigned index) argument
42 return adoptRefWillBeNoop(new DOMPlugin(pluginData, frame, index));
52 PassRefPtrWillBeRawPtr<DOMMimeType> item(unsigned index);
61 DOMPlugin(PluginData*, LocalFrame*, unsigned index);
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DLayerRectList.cpp49 LayerRect* LayerRectList::item(unsigned index) argument
51 if (index >= m_list.size())
54 return m_list[index].get();
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadDispatcher.cpp33 void GamepadDispatcher::didConnectGamepad(unsigned index, const WebGamepad& gamepad) argument
35 dispatchDidConnectOrDisconnectGamepad(index, gamepad, true);
38 void GamepadDispatcher::didDisconnectGamepad(unsigned index, const WebGamepad& gamepad) argument
40 dispatchDidConnectOrDisconnectGamepad(index, gamepad, false);
43 void GamepadDispatcher::dispatchDidConnectOrDisconnectGamepad(unsigned index, const WebGamepad& gamepad, bool connected) argument
45 ASSERT(index < WebGamepads::itemsLengthCap);
49 m_latestChange.index = index;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODRedBlackTreeTest.cpp189 int index = nextRandom(treeSize); local
190 int value = values[index];
196 values[index] = value;
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioFIFO.h52 // Update the FIFO index by the step, with appropriate wrapping around the endpoint.
53 int updateIndex(int index, int step) { return (index + step) % m_fifoLength; } argument
55 void findWrapLengths(size_t index, size_t providerSize, size_t& part1Length, size_t& part2Length);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebBlobData.cpp55 bool WebBlobData::itemAt(size_t index, Item& result) const argument
59 if (index >= m_private->items().size())
62 const BlobDataItem& item = m_private->items()[index];
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGlyphMetricsMap.h68 void setMetricsForIndex(unsigned index, const T& metrics) argument
70 ASSERT_WITH_SECURITY_IMPLICATION(index < size);
71 m_metrics[index] = metrics;
/external/chromium_org/third_party/WebKit/Source/web/
H A DExternalPopupMenuTest.cpp54 void setDisplayNoneIndex(unsigned index) { m_displayNoneIndexSet.insert(index); } argument
91 // Invalid index, methods should return -1.
H A DPopupMenuChromium.cpp56 void PopupMenuChromium::show(const FloatQuad& controlPosition, const IntSize& controlSize, int index) argument
62 m_popup->showInRect(controlPosition, controlSize, m_frameView.get(), index);
H A DWebIDBMetadata.cpp57 const IDBIndexMetadata& index = indexIterator->value; local
59 webIndex.id = index.id;
60 webIndex.name = index.name;
61 webIndex.keyPath = index.keyPath;
62 webIndex.unique = index.unique;
63 webIndex.multiEntry = index.multiEntry;
79 IDBIndexMetadata index(webIndex.name, webIndex.id, webIndex.keyPath, webIndex.unique, webIndex.multiEntry);
80 objectStore.indexes.set(index.id, index);
H A DWebOptionElement.cpp52 int WebOptionElement::index() const function in class:blink::WebOptionElement
54 return constUnwrap<HTMLOptionElement>()->index();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFloat32Array.h47 void set(unsigned index, double value) argument
49 if (index >= TypedArrayBase<float>::m_length)
51 TypedArrayBase<float>::data()[index] = static_cast<float>(value);
H A DFloat64Array.h47 void set(unsigned index, double value) argument
49 if (index >= TypedArrayBase<double>::m_length)
51 TypedArrayBase<double>::data()[index] = static_cast<double>(value);
/external/chromium_org/third_party/boringssl/src/crypto/
H A Ddirectory_win.c65 size_t index = 0, len_0 = strlen(directory) + 1; local
77 for (index = 0; index < len_0; index++) {
78 wdir[index] = (TCHAR)directory[index];
103 size_t index, len_0 = 0; local
113 for (index = 0; index < len_0; index
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparsepos.h37 * you can use the same <code>ParsePosition</code>, since the index parameter
50 * Default constructor, the index starts with 0 as default.
55 index(0),
60 * Create a new ParsePosition with the given initial index.
66 index(newIndex),
77 index(copy.index),
122 * is the index of the character at which parsing will begin; on output, it
123 * is the index of the character following the last character parsed.
124 * @return the current index
173 int32_t index; member in class:ParsePosition
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsrmbcs.h34 int32_t index; member in class:IteratedChar
H A Dremtrans.cpp57 void RemoveTransliterator::handleTransliterate(Replaceable& text, UTransPosition& index, argument
62 text.handleReplaceBetween(index.start, index.limit, empty);
63 int32_t len = index.limit - index.start;
64 index.contextLimit -= len;
65 index.limit -= len;
/external/chromium_org/third_party/icu/source/samples/translit/answers/
H A Dunaccent.cpp42 UTransPosition& index,
45 while (index.start < index.limit) {
46 UChar c = text.charAt(index.start);
50 text.handleReplaceBetween(index.start, index.start+1, str);
52 index.start++;
41 handleTransliterate(Replaceable& text, UTransPosition& index, UBool incremental) const argument
/external/chromium_org/third_party/icu/source/samples/translit/
H A Dunaccent.cpp44 UTransPosition& index,
47 while (index.start < index.limit) {
48 UChar c = text.charAt(index.start);
52 text.handleReplaceBetween(index.start, index.start+1, str);
54 index.start++;
43 handleTransliterate(Replaceable& text, UTransPosition& index, UBool incremental) const argument

Completed in 496 milliseconds

1234567891011>>