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

1 2

  /external/chromium_org/chrome/test/chromedriver/
element_util.h 23 base::DictionaryValue* CreateElement(const std::string& element_id);
45 const std::string& element_id,
51 const std::string& element_id,
58 const std::string& element_id,
66 const std::string& element_id,
72 const std::string& element_id,
79 const std::string& element_id,
85 const std::string& element_id,
91 const std::string& element_id,
97 const std::string& element_id,
    [all...]
element_commands.cc 37 const std::string& element_id,
44 session, web_view, element_id, true, &is_displayed);
49 status = IsElementFocused(session, web_view, element_id, &is_focused);
61 Status status = IsElementEnabled(session, web_view, element_id, &is_enabled);
69 args.Append(CreateElement(element_id));
83 const std::string& element_id,
87 args.Append(CreateElement(element_id));
113 const std::string& element_id,
117 interval_ms, true, &element_id, session, web_view, params, value);
124 const std::string& element_id,
    [all...]
element_commands.h 42 const std::string& element_id,
51 const std::string& element_id,
59 const std::string& element_id,
67 const std::string& element_id,
75 const std::string& element_id,
83 const std::string& element_id,
91 const std::string& element_id,
99 const std::string& element_id,
107 const std::string& element_id,
115 const std::string& element_id,
    [all...]
element_util.cc 96 const std::string& element_id,
99 args.Append(CreateElement(element_id));
127 const std::string& element_id,
134 args.Append(CreateElement(element_id));
162 const std::string& element_id,
166 args.Append(CreateElement(element_id));
184 const std::string& element_id,
189 frame, web_view, element_id, "border-left-width", &border_left_str);
194 frame, web_view, element_id, "border-top-width", &border_top_str);
210 base::DictionaryValue* CreateElement(const std::string& element_id) {
    [all...]
commands_unittest.cc 414 std::string element_id = "1"; local
419 1, &session, &web_view, element_id, params, &result).code());
423 root_element_param.SetString("ELEMENT", element_id);
436 std::string element_id = "1"; local
441 1, &session, &web_view, element_id, params, &result).code());
452 std::string element_id = "1"; local
457 1, &session, &web_view, element_id, params, &result).code());
461 root_element_param.SetString("ELEMENT", element_id);
474 std::string element_id = "1"; local
479 1, &session, &web_view, element_id, params, &result).code())
539 std::string element_id = "1"; local
    [all...]
window_commands.cc 464 std::string element_id; local
465 bool has_element = params.GetString("element", &element_id);
476 session, web_view, element_id, &location);
487 Status status = GetElementSize(session, web_view, element_id, &size);
  /external/chromium_org/media/formats/webm/
tracks_builder.cc 50 static int MasterElementSize(int element_id, int payload_size) {
51 return GetUIntSize(element_id) + GetUIntMkvSize(payload_size) + payload_size;
54 static int UIntElementSize(int element_id, uint64 value) {
55 return GetUIntSize(element_id) + 1 + GetUIntSize(value);
58 static int DoubleElementSize(int element_id) {
59 return GetUIntSize(element_id) + 1 + 8;
62 static int StringElementSize(int element_id, const std::string& value) {
63 return GetUIntSize(element_id) +
92 static void WriteElementId(uint8** buf, int* buf_size, int element_id) {
93 SerializeInt(buf, buf_size, element_id, GetUIntSize(element_id))
    [all...]
webm_parser.cc 717 int element_id = 0; local
719 int result = WebMParseElementHeader(cur, cur_size, &element_id,
730 if (element_id != root_id_) {
737 (element_id != kWebMIdSegment) &&
738 (element_id != kWebMIdCluster)) {
758 result = ParseListElement(header_size, element_id, element_size,
  /external/openfst/src/include/fst/
partition.h 104 // Add element_id to class_id. The Add method is used to initialize
107 void Add(T element_id, T class_id) {
108 Element* element = elements_[element_id];
116 class_index_[element_id] = class_id;
120 // Move and element_id to class_id. Disconnects (removes) element
122 void Move(T element_id, T class_id) {
123 T old_class_id = class_index_[element_id];
125 Element* element = elements_[element_id];
130 Add(element_id, class_id);
134 // split class on the element_id
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvwriter.hpp 31 virtual void ElementStartNotify(uint64 element_id, int64 position);
  /external/libvpx/libvpx/third_party/libwebm/
mkvwriter.hpp 31 virtual void ElementStartNotify(uint64 element_id, int64 position);
  /external/chromium_org/chrome/browser/ui/webui/options/
language_options_interactive_uitest.cc 51 std::string element_id; local
55 &element_id));
56 return element_id;
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_dropdown_handler.h 46 void HandleNetworkDropdownShow(const std::string& element_id,
network_dropdown_handler.cc 76 const std::string& element_id,
supervised_user_creation_screen_handler.h 131 void UpdateText(const std::string& element_id, const base::string16& text);
  /external/chromium_org/content/public/test/
render_view_test.h 100 // |element_id|. Returns an empty rect if such an element was not found.
101 gfx::Rect GetElementBounds(const std::string& element_id);
103 // Sends a left mouse click in the middle of the element with id |element_id|.
106 bool SimulateElementClick(const std::string& element_id);
render_view_test.cc 286 gfx::Rect RenderViewTest::GetElementBounds(const std::string& element_id) {
288 params.push_back(element_id);
313 bool RenderViewTest::SimulateElementClick(const std::string& element_id) {
314 gfx::Rect bounds = GetElementBounds(element_id);
  /external/chromium_org/components/autofill/core/common/
save_password_progress_logger.cc 190 std::string ScrubElementID(std::string element_id) {
192 element_id.begin(), element_id.end(), IsUnwantedInElementID, ' ');
193 return base::StringToLowerASCII(element_id);
196 std::string ScrubElementID(const base::string16& element_id) {
197 return ScrubElementID(base::UTF16ToUTF8(element_id));
  /external/chromium_org/chrome/renderer/autofill/
page_click_tracker_browsertest.cc 80 void SendElementClick(const std::string& element_id) {
81 EXPECT_TRUE(SimulateElementClick(element_id));
password_generation_agent_browsertest.cc 55 void ExpectPasswordGenerationAvailable(const char* element_id,
59 document.getElementById(WebString::fromUTF8(element_id));
63 element_id).c_str());
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 76 function lookupEventMachine(element_id) {
77 var event_machine = window.event_machines[element_id];
81 window.event_machines[element_id] = event_machine;
96 var element_id = target_element.id;
98 var event_machine = lookupEventMachine(element_id);
  /external/chromium_org/chrome/browser/password_manager/
password_manager_browsertest.cc 305 // Waits until the "value" attribute of the HTML element with |element_id| is
310 void WaitForElementValue(const std::string& element_id,
313 // |element_id| is equal to |expected_value|.
314 void CheckElementValue(const std::string& element_id,
322 const std::string& element_id,
335 element_id.c_str(),
357 element_id.c_str(),
365 << "element_id = " << element_id
370 const std::string& element_id,
    [all...]
  /external/chromium_org/remoting/client/plugin/
media_source_video_renderer.cc 35 virtual void ElementStartNotify(mkvmuxer::uint64 element_id,
127 mkvmuxer::uint64 element_id,
  /external/chromium_org/chrome/test/remoting/
remote_desktop_browsertest.cc 519 std::string element_id = "host_" + host_id; local
523 "document.getElementById('" + element_id + "').parentNode.className");
526 ClickOnControl(element_id);
  /external/chromium_org/chrome/test/chromedriver/chrome/
web_view_impl.cc 695 std::string element_id; local
697 client, context_id, expression, &got_object, &element_id);
708 params.SetString("objectId", element_id);
715 params.SetString("objectId", element_id);

Completed in 4338 milliseconds

1 2