HomeSort by relevance Sort by last modified time
    Searched refs:stateVector (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.cpp 47 // (',' means strings around it are separated in stateVector.)
58 void FormControlState::serializeTo(Vector<String>& stateVector) const
61 stateVector.append(String::number(m_values.size()));
63 stateVector.append(m_values[i].isNull() ? emptyString() : m_values[i]);
66 FormControlState FormControlState::deserialize(const Vector<String>& stateVector, size_t& index)
68 if (index >= stateVector.size())
70 size_t valueSize = stateVector[index++].toUInt();
73 if (index + valueSize > stateVector.size())
78 state.append(stateVector[index++]);
207 PassOwnPtr<SavedFormState> SavedFormState::deserialize(const Vector<String>& stateVector, size_t& index
    [all...]
FormController.h 44 static FormControlState deserialize(const Vector<String>& stateVector, size_t& index);
52 void serializeTo(Vector<String>& stateVector) const;
114 static Vector<String> getReferencedFilePaths(const Vector<String>& stateVector);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]

Completed in 169 milliseconds