HomeSort by relevance Sort by last modified time
    Searched refs:element (Results 426 - 450 of 1844) sorted by null

<<11121314151617181920>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
EncodedValueWriter.java 80 for (AnnotationElement element: sortedElements) {
81 writer.writeUleb128(stringSection.getItemIndex(annotationSection.getElementName(element)));
82 writeEncodedValue(annotationSection.getElementValue(element));
89 for (EncodedValue element: elements) {
90 writeEncodedValue(element);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
PsiBuilderTokenStream.java 94 IElementType element = psiBuilder.getTokenType(); local
95 if (element != null) {
96 if (element instanceof SmaliLexicalElementType) {
97 SmaliLexicalElementType elementType = (SmaliLexicalElementType)element;
99 } else if (element == TokenType.BAD_CHARACTER) {
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
AnnotationEntryGen.java 55 * entries across. We need to copy the type and the element name value pairs
89 for (final ElementValuePairGen element : evs) {
90 a.addElementNameValuePair(element.getElementNameValuePair());
284 for (final AnnotationEntryGen element : vec[i]) {
285 if (element.isRuntimeVisible()) {
302 for (final AnnotationEntryGen element : vec[i]) {
303 if (element.isRuntimeVisible()) {
304 element.dump(rvaDos);
317 for (final AnnotationEntryGen element : vec[i]) {
318 if (!element.isRuntimeVisible())
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestPathsModule.java 186 * <li>If an element is ordered, then its children must be.</li>
189 * element.
208 String element = fullParts.getElement(i); local
212 element, attribute);
215 element, attribute);
225 * Get the first ordered element, AND make a number of consistency
236 String element = fullParts.getElement(i); local
237 boolean hasq = CLDRFile.isOrdered(element, dtdType);
256 // find the first ordered element AND check that its children
264 R2<DtdType, String> row = Row.of(dtdType, element);
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
VerifyAttributeValues.java 25 import org.unicode.cldr.util.DtdData.Element;
50 public void put(String file, DtdType dtdType, String element, String attribute, String attributeValue, String problem) {
51 file_element_attribute.put(file, new AttributeValueSpec(dtdType, element, attribute, attributeValue), problem);
59 private DtdData dtdData; // set from first element read
108 String element = parts.getElement(i); local
109 if (element.equals("attributeValues")) {
112 Element elementInfo = dtdData.getElementFromName().get(element);
121 if (dtdData.isDeprecated(element, attribute, attributeValue)) {
122 file_element_attribute.put(file, dtdData.dtdType, element, attribute, attributeValue, "deprecated")
    [all...]
ChartDtdDelta.java 19 import org.unicode.cldr.util.DtdData.Element;
61 + "Element attributes are abbreviated as ? if where is no change to them, but the element is newly the child of another. "
78 .addColumn("Element", "class='target'", null, "class='target'", true)
151 Map<String, Element> oldNameToElement = dtdLast == null ? Collections.emptyMap() : dtdLast.getElementFromName();
152 checkNames(prefix, dtdCurrent, dtdLast, oldNameToElement, "/", dtdCurrent.ROOT, new HashSet<Element>(), false);
160 private void checkNames(String version, DtdData dtdCurrent, DtdData dtdLast, Map<String, Element> oldNameToElement, String path, Element element,
161 HashSet<Element> seen, boolean showAnyway)
    [all...]
GenerateAttributeList.java 69 * String element = parts.getElement(i);
70 * allElements.add(element);
75 * add(element, attribute, value, false);
167 void add(String element, String attribute, String attributeValue, boolean dtd) {
169 if (element.equals("generation") && attribute.equals("date"))
171 else if (element.equals("version") && attribute.equals("number"))
177 element = "[common]";
182 element = "[common]";
185 Map<String, Set<String>[]> attribute_valueSet = element_attribute_valueSet.get(element);
186 if (attribute_valueSet == null) element_attribute_valueSet.put(element, attribute_valueSet = new TreeMap<String, Set<String>[]>())
223 String element = it.next(); local
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.Core/Utils/
AsyncStreamExtensions.cs 31 /// Reads the entire stream and executes an async action for each element.
63 foreach (var element in elements)
65 await streamWriter.WriteAsync(element).ConfigureAwait(false);
79 foreach (var element in elements)
81 await streamWriter.WriteAsync(element).ConfigureAwait(false);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
LazyStringArrayList.java 43 * element is one of String, ByteString, or byte[]. It caches the last one
52 * resizes the backing array; merely setting the value of an element is not
59 * same element and the modifications were not visible to each other, but this
148 public void add(int index, String element) {
150 list.add(index, element);
154 private void add(int index, ByteString element) {
156 list.add(index, element);
160 private void add(int index, byte[] element) {
162 list.add(index, element);
179 // elements rather than forcing each element to be decoded to a String
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
ElementTree.py 61 "Element", "ElementTree",
78 # The <b>Element</b> type is a flexible container object, designed to
82 # Each element has a number of properties associated with it:
85 # this element represents (the element type, in other words).</li>
92 # To create an element instance, use the {@link #Element} constructor
95 # The {@link #ElementTree} class can be used to wrap an element
106 def find(self, element, tag, namespaces=None):
107 for elem in element:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
ElementTree.py 61 "Element", "ElementTree",
78 # The <b>Element</b> type is a flexible container object, designed to
82 # Each element has a number of properties associated with it:
85 # this element represents (the element type, in other words).</li>
92 # To create an element instance, use the {@link #Element} constructor
95 # The {@link #ElementTree} class can be used to wrap an element
106 def find(self, element, tag, namespaces=None):
107 for elem in element:
    [all...]
  /external/python/cpython2/Lib/xml/etree/
ElementTree.py 61 "Element", "ElementTree",
78 # The <b>Element</b> type is a flexible container object, designed to
82 # Each element has a number of properties associated with it:
85 # this element represents (the element type, in other words).</li>
92 # To create an element instance, use the {@link #Element} constructor
95 # The {@link #ElementTree} class can be used to wrap an element
106 def find(self, element, tag, namespaces=None):
107 for elem in element
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
tuple_points_to_analysis_test.cc 67 points_to_analysis_->GetPointsToSet(instruction).element(index);
135 points_to_analysis_->GetPointsToSet(constant1).element({}), {constant1});
142 points_to_analysis_->GetPointsToSet(constant2).element({}), {constant2});
155 points_to_analysis_->GetPointsToSet(tuple).element({}), {tuple});
157 points_to_analysis_->GetPointsToSet(tuple).element({0}), {constant1});
159 points_to_analysis_->GetPointsToSet(tuple).element({1}), {constant2});
192 points_to_analysis_->GetPointsToSet(constant1).element({}), {constant1});
194 points_to_analysis_->GetPointsToSet(constant2).element({}), {constant2});
196 points_to_analysis_->GetPointsToSet(constant3).element({}), {constant3});
205 points_to_analysis_->GetPointsToSet(inner_tuple).element({}),
    [all...]
  /external/skia/src/gpu/
GrClipStackClip.cpp 32 typedef SkClipStack::Element Element;
88 // Does the path in 'element' require SW rendering? If so, return true (and,
96 const Element* element,
99 if (Element::DeviceSpaceType::kRect == element->getDeviceSpaceType()) {
107 // We shouldn't get here with an empty clip element.
108 SkASSERT(Element::DeviceSpaceType::kEmpty != element->getDeviceSpaceType())
175 const Element* element = iter.get(); local
426 const Element* element = iter.get(); local
    [all...]
  /external/skqp/src/gpu/
GrClipStackClip.cpp 31 typedef SkClipStack::Element Element;
87 // Does the path in 'element' require SW rendering? If so, return true (and,
95 const Element* element,
98 if (Element::DeviceSpaceType::kRect == element->getDeviceSpaceType()) {
106 // We shouldn't get here with an empty clip element.
107 SkASSERT(Element::DeviceSpaceType::kEmpty != element->getDeviceSpaceType())
174 const Element* element = iter.get(); local
424 const Element* element = iter.get(); local
    [all...]
  /build/soong/scripts/
manifest_fixer.py 37 def find_child_with_attribute(element, tag_name, namespace_uri,
39 for child in get_children_with_tag(element, tag_name):
78 """Get the manifest element."""
136 def get_indent(element, default_level):
138 if element is not None and element.nodeType == minidom.Node.TEXT_NODE:
139 text = element.nodeValue
160 # Get or insert the uses-sdk element
165 element = uses_sdk[0]
167 element = doc.createElement('uses-sdk'
    [all...]
  /external/fonttools/Lib/fontTools/misc/
etree.py 24 "Element",
75 if isinstance(Element, type):
76 _Element = Element
78 # in py27, cElementTree.Element cannot be subclassed, so
80 from xml.etree.ElementTree import Element as _Element
82 class Element(_Element):
83 """Element subclass that keeps the order of attributes."""
86 super(Element, self).__init__(tag)
95 fails if 'parent' is a subclass of Element object.
97 element = parent.__class__(tag, attrib, **extra
    [all...]
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
ImplementsValidator.java 16 import javax.lang.model.element.AnnotationMirror;
17 import javax.lang.model.element.AnnotationValue;
18 import javax.lang.model.element.Element;
19 import javax.lang.model.element.ElementKind;
20 import javax.lang.model.element.ExecutableElement;
21 import javax.lang.model.element.Modifier;
22 import javax.lang.model.element.TypeElement;
23 import javax.lang.model.element.TypeParameterElement;
24 import javax.lang.model.element.VariableElement
    [all...]
  /external/kotlinc/lib/
kotlin-stdlib.jar 
  /external/curl/packages/vms/
build_gnv_curl_pcsi_text.com 56 $ producer = f$element(0, "-", kit_name)
57 $ base = f$element(1, "-", kit_name)
58 $ product = f$element(2, "-", kit_name)
59 $ mmversion = f$element(3, "-", kit_name)
62 $ updatepatch = f$element(4, "-", kit_name)
172 $ majver = f$element(0, ".", vernum)
173 $ minverdash = f$element(1, ".", vernum)
174 $ minver = f$element(0, "-", minverdash)
175 $ dashver = f$element(1, "-", minverdash)
  /art/libartbase/base/
hash_set.h 358 // If an element in between doesn't rehash to the range from the current empty slot to the
362 // element to its actual location/index.
363 // Note that since erase shuffles back elements, it may result in the same element being visited
364 // twice during HashSet iteration. This happens when an element already visited during iteration
375 // If the next element is empty, we are done. Make sure to clear the current empty index.
380 // Otherwise try to see if the next element can fill the current empty index.
412 // Find an element, returns end() if not found.
436 // Insert an element with hint, allows duplicates.
439 iterator insert(const_iterator hint ATTRIBUTE_UNUSED, const T& element) {
440 return insert(element);
509 const T& element = ElementForIndex(i); local
531 T& element = data_[i]; variable
680 T& element = old_data[i]; local
    [all...]
  /development/tools/checkcolor/src/main/java/com/google/checkcolor/lint/
HardcodedColorDetector.java 39 import org.w3c.dom.Element;
135 public void visitElement(@NonNull XmlContext context, @NonNull Element element) {
145 final String tagName = element.getTagName();
147 final List<Element> itemNodes = LintUtils.getChildren(element);
148 for (Element childElement : itemNodes) {
172 final String name = element.getAttribute(SdkConstants.ATTR_NAME);
173 final String value = element.getFirstChild().getNodeValue();
175 context.report(ISSUE, element, context.getLocation(element)
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DateTest.java 132 for (long element : init1) {
133 Date theDate = new Date(element);
303 for (String element : SQL_DATEARRAY) {
304 theDate = Date.valueOf(element);
305 assertEquals(element, theDate.toString());
308 for (String element : SQL_INVALIDARRAY) {
310 theDate = Date.valueOf(element);
  /external/cldr/tools/java/org/unicode/cldr/util/
Tabber.java 160 private String element = "td"; field in class:Tabber.HTMLTabber
176 return element;
179 public HTMLTabber setElement(String element) {
180 this.element = element;
185 output.append("<" + element);
197 output.append("</" + element + ">");
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BuilderValidator.java 28 import javax.lang.model.element.Element;
29 import javax.lang.model.element.ExecutableElement;
30 import javax.lang.model.element.Modifier;
31 import javax.lang.model.element.TypeElement;
42 import static javax.lang.model.element.Modifier.ABSTRACT;
43 import static javax.lang.model.element.Modifier.PRIVATE;
44 import static javax.lang.model.element.Modifier.STATIC;
65 Element componentElement = subject.getEnclosingElement();
77 List<? extends Element> allElements = subject.getEnclosedElements()
    [all...]

Completed in 988 milliseconds

<<11121314151617181920>>