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/
FormController.cpp 46 // (',' means strings around it are separated in stateVector.)
57 void FormControlState::serializeTo(Vector<String>& stateVector) const
60 stateVector.append(String::number(m_values.size()));
62 stateVector.append(m_values[i].isNull() ? emptyString() : m_values[i]);
65 FormControlState FormControlState::deserialize(const Vector<String>& stateVector, size_t& index)
67 if (index >= stateVector.size())
69 size_t valueSize = stateVector[index++].toUInt();
72 if (index + valueSize > stateVector.size())
77 state.append(stateVector[index++]);
206 PassOwnPtr<SavedFormState> SavedFormState::deserialize(const Vector<String>& stateVector, size_t& index
    [all...]
FormController.h 43 static FormControlState deserialize(const Vector<String>& stateVector, size_t& index);
51 void serializeTo(Vector<String>& stateVector) const;
95 static Vector<String> getReferencedFilePaths(const Vector<String>& stateVector);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]

Completed in 142 milliseconds