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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/cloudwatch/
listelement.py 25 def startElement(self, name, attrs, connection):
dimension.py 26 def startElement(self, name, attrs, connection):
datapoint.py 31 def startElement(self, name, attrs, connection):
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/elb/
listelement.py 31 def startElement(self, name, attrs, connection):
  /external/skia/src/animator/
SkXMLAnimatorWriter.cpp 56 w.startElement("screenplay");
57 w.startElement("animateField");
64 w.startElement("event");
66 w.startElement("line");
73 w.startElement("apply");
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/fps/
response.py 57 def startElement(self, name, attrs, connection):
69 def startElement(self, name, attrs, connection):
75 return super(Response, self).startElement(name, attrs, connection)
89 def startElement(self, name, attrs, connection):
93 return super(ComplexAmount, self).startElement(name, attrs, connection)
102 def startElement(self, name, attrs, connection):
108 def startElement(self, name, attrs, connection):
112 return super(AccountBalance, self).startElement(name, attrs, connection)
116 def startElement(self, name, attrs, connection):
120 return super(GetAccountBalanceResult, self).startElement(name, attrs
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/
dhcpoptions.py 30 def startElement(self, name, attrs, connection):
39 def startElement(self, name, attrs, connection):
59 def startElement(self, name, attrs, connection):
60 retval = super(DhcpOptions, self).startElement(name, attrs, connection)
internetgateway.py 38 def startElement(self, name, attrs, connection):
39 result = super(InternetGateway, self).startElement(name, attrs, connection)
65 def startElement(self, name, attrs, connection):
networkacl.py 41 def startElement(self, name, attrs, connection):
63 def startElement(self, name, attrs, connection):
64 result = super(NetworkAcl, self).startElement(name, attrs, connection)
100 def startElement(self, name, attrs, connection):
131 def startElement(self, name, attrs, connection):
154 def startElement(self, name, attrs, connection):
vpngateway.py 34 def startElement(self, name, attrs, connection):
58 def startElement(self, name, attrs, connection):
59 retval = super(VpnGateway, self).startElement(name, attrs, connection)
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSParserFilter.java 49 // Constants returned by startElement and acceptNode
73 * only element nodes are passed to the <code>startElement</code>
75 * <br>The element node passed to <code>startElement</code> for filtering
79 * <br>A <code>startElement</code> filter function may access or change
111 public short startElement(Element elementArg);
  /external/expat/examples/
elements.c 26 startElement(void *userData, const char *name, const char **atts)
51 XML_SetElementHandler(parser, startElement, endElement);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
logging.py 28 def startElement(self, name, attrs, connection):
signers.py 27 def startElement(self, name, attrs, connection):
40 def startElement(self, name, attrs, connection):
51 def startElement(self, name, attrs, connection):
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/
request.py 31 def startElement(self, name, attrs, connection):
policy.py 36 def startElement(self, name, attrs, connection):
56 def startElement(self, name, attrs, connection):
76 def startElement(self, name, attrs, connection):
97 def startElement(self, name, attrs, connection):
147 def startElement(self, name, attrs, connection):
176 def startElement(self, name, attrs, connection):
limits.py 33 def startElement(self, name, attrs, connection):
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
group.py 29 def startElement(self, name, attrs, connection):
attributes.py 29 def startElement(self, name, attrs, connection):
40 def startElement(self, name, attrs, connection):
56 def startElement(self, name, attrs, connection):
instancestatus.py 32 def startElement(self, name, attrs, connection):
66 def startElement(self, name, attrs, connection):
100 def startElement(self, name, attrs, connection):
114 def startElement(self, name, attrs, connection):
159 def startElement(self, name, attrs, connection):
201 def startElement(self, name, attrs, connection):
volumestatus.py 51 def startElement(self, name, attrs, connection):
71 def startElement(self, name, attrs, connection):
102 def startElement(self, name, attrs, connection):
120 def startElement(self, name, attrs, connection):
155 def startElement(self, name, attrs, connection):
194 def startElement(self, name, attrs, connection):
  /libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java 28 * the startElement event and the corresponding endElement event.</p>
114 * endElement() event for every startElement() event (even when the
131 public abstract void startElement (String name, AttributeList atts)
140 * startElement() event for every endElement() event (even when the
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/emr/
emrobject.py 37 def startElement(self, name, attrs, connection):
76 def startElement(self, name, attrs, connection):
92 def startElement(self, name, attrs, connection):
122 def startElement(self, name, attrs, connection):
187 def startElement(self, name, attrs, connection):
228 def startElement(self, name, attrs, connection):
279 def startElement(self, name, attrs, connection):
307 def startElement(self, name, attrs, connection):
324 def startElement(self, name, attrs, connection):
343 def startElement(self, name, attrs, connection)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_volume.py 36 @mock.patch("boto.ec2.volume.TaggedEC2Object.startElement")
37 def test_startElement_calls_TaggedEC2Object_startElement_with_correct_args(self, startElement):
39 volume.startElement("some name", "some attrs", None)
40 startElement.assert_called_with(
46 @mock.patch("boto.ec2.volume.TaggedEC2Object.startElement")
47 def test_startElement_retval_not_None_returns_correct_thing(self, startElement):
49 startElement.return_value = tag_set
51 retval = volume.startElement(None, None, None)
54 @mock.patch("boto.ec2.volume.TaggedEC2Object.startElement")
56 def test_startElement_with_name_tagSet_calls_ResultSet(self, ResultSet, startElement)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
tagging.py 10 def startElement(self, name, attrs, connection):
28 def startElement(self, name, attrs, connection):
53 def startElement(self, name, attrs, connection):

Completed in 246 milliseconds

1 2 3 4 5 6 7 8 91011>>