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

<<11121314151617181920>>

  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
XMLElement.java 21 * represents a single element in a XML document.
53 * Creates a new element for a XML document.
58 * element name
70 * other other methods are called on this element.
88 * Adds the given child to this element. This will close all previous child
92 * child element to add
98 throw new IOException(format("Element %s already closed.", name));
133 * Adds an attribute to this element. May only be called before an child
134 * element is added or this element has been closed. The attribute valu
233 public XMLElement element(final String name) throws IOException { method in class:XMLElement
234 final XMLElement element = new XMLElement(writer, name); local
    [all...]
  /external/libprotobuf-mutator/examples/xml/
xml_writer.cc 34 void ToXml(const Element& element);
69 if (content.has_element()) ToXml(content.element());
79 void XmlWriter::ToXml(const Element& element) {
82 tag += element.tag().name();
85 for (int i = 0; i < element.tag().attribute_size(); ++i) {
86 ToXml(element.tag().attribute(i).name(),
87 element.tag().attribute(i).value());
90 if (element.content_size() == 0)
    [all...]
  /external/perfetto/src/android_internal/
power_stats_hal.cc 96 RailEnergyData& element = rail_energy_array[i];
98 element.index = measurement.index;
99 element.timestamp = measurement.timestamp;
100 element.energy = measurement.energy;
  /external/selinux/checkpolicy/
queue.h 20 queue_element_t element; member in struct:queue_node
39 Applies the specified function f to each element in the
42 In addition to passing the element to f, queue_map
53 then the element will be removed from the queue and the g
54 function will be applied to the element.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderAnnotationPool.java 81 public BuilderStringReference getElementName(@Nonnull BuilderAnnotationElement element) {
82 return element.name;
86 public BuilderEncodedValue getElementValue(@Nonnull BuilderAnnotationElement element) {
87 return element.value;
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/
SmaliModifierListStub.java 37 import org.jf.smalidea.psi.stub.element.SmaliModifierListElementType;
  /external/swiftshader/src/Device/
Blitter.hpp 104 bool read(Float4 &color, Pointer<Byte> element, const State &state);
105 bool write(Float4 &color, Pointer<Byte> element, const State &state);
106 bool read(Int4 &color, Pointer<Byte> element, const State &state);
107 bool write(Int4 &color, Pointer<Byte> element, const State &state);
  /external/swiftshader/src/Renderer/
Blitter.hpp 104 bool read(Float4 &color, Pointer<Byte> element, const State &state);
105 bool write(Float4 &color, Pointer<Byte> element, const State &state);
106 bool read(Int4 &color, Pointer<Byte> element, const State &state);
107 bool write(Int4 &color, Pointer<Byte> element, const State &state);
Surface.cpp 51 byte *element = (byte*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; local
55 write(element, color);
56 element += sliceB;
65 byte *element = (byte*)buffer + (x + border) * bytes + (y + border) * pitchB; local
69 write(element, color);
70 element += sliceB;
74 inline void Surface::Buffer::write(void *element, const Color<float> &color)
91 *(unsigned char*)element = unorm<8>(a);
94 *(char*)element = snorm<8>(r);
97 *(unsigned char*)element = unorm<8>(r)
410 void *element = (unsigned char*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; local
420 void *element = (unsigned char*)buffer + (x + border) * bytes + (y + border) * pitchB; local
3563 unsigned char *element = row; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
infeed_thunk.cc 65 infeed_slices_.element(index);
91 infeed_slices_.element(index));
105 buffer_allocations.GetDeviceAddress(infeed_slices_.element({0}));
108 buffer_allocations.GetDeviceAddress(infeed_slices_.element({}));
  /external/tensorflow/tensorflow/compiler/xla/tests/
deallocation_test.cc 109 auto element = ConstantR0<float>(&builder, 42.0); local
111 Tuple(&builder, {ConstantR0<float>(&builder, 42.0), element});
112 Tuple(&builder, {element, inner_tuple, element});
  /external/webrtc/webrtc/libjingle/xmpp/
discoitemsquerytask.h 60 static bool ParseItem(const XmlElement* element, DiscoItem* item);
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1Choice.java 163 Asn1Object element = getValue(); local
174 element.decodeBerValue(buf);
178 element.decodeBer(buf);
275 Asn1Object element = createAndSetValue(extensionValued, selectionOrdinal); local
277 PerAlignedUtils.decodeOpenTypeField(reader, element);
279 PerUnalignedUtils.decodeOpenTypeField(reader, element);
282 Asn1Object element = createAndSetValue(extensionValued, selectionOrdinal); local
284 element.decodePerAligned(reader);
286 element.decodePerUnaligned(reader);
  /external/cldr/tools/java/org/unicode/cldr/tool/
FindAttributeValueDifferences.java 36 String element = parts.getElement(i); local
38 result.put(element, av.getKey(), av.getValue(), Boolean.TRUE);
69 for (String element : elements) {
70 M3<String, String, Boolean> newSubmap = CldrUtility.ifNull(newValues.get(element), emptyM3);
71 M3<String, String, Boolean> oldSubmap = CldrUtility.ifNull(oldValues.get(element), emptyM3);
83 showDiff(element, attribute, newAttValues, oldAttValues, "new");
84 showDiff(element, attribute, oldAttValues, newAttValues, "old");
89 private static TreeSet<String> showDiff(String element, String attribute, Set<String> newAttValues, Set<String> oldAttValues, String title) {
93 System.out.println(title + "\t" + element + "\t" + attribute + "\t" + attributeValue);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DependencyRequestFormatter.java 22 import javax.lang.model.element.AnnotationMirror;
23 import javax.lang.model.element.Element;
24 import javax.lang.model.element.ElementKind;
25 import javax.lang.model.element.ExecutableElement;
26 import javax.lang.model.element.TypeElement;
27 import javax.lang.model.element.VariableElement;
54 Element requestElement = request.requestElement();
133 @Override protected String defaultAction(Element element, Optional<AnnotationMirror> ignore)
    [all...]
  /external/javapoet/src/main/java/com/squareup/javapoet/
TypeVariableName.java 27 import javax.lang.model.element.TypeParameterElement;
117 TypeParameterElement element = (TypeParameterElement) mirror.asElement(); local
118 TypeVariableName typeVariableName = typeVariables.get(element);
124 typeVariableName = new TypeVariableName(element.getSimpleName().toString(), visibleBounds);
125 typeVariables.put(element, typeVariableName);
126 for (TypeMirror typeMirror : element.getBounds()) {
134 /** Returns type variable equivalent to {@code element}. */
135 public static TypeVariableName get(TypeParameterElement element) {
136 String name = element.getSimpleName().toString();
137 List<? extends TypeMirror> boundsMirrors = element.getBounds()
    [all...]
  /external/mesa3d/src/gallium/tests/unit/
translate_test.c 148 key.element[0].input_buffer = 0;
149 key.element[0].input_offset = 0;
150 key.element[0].output_offset = 0;
151 key.element[0].type = TRANSLATE_ELEMENT_NORMAL;
152 key.element[0].instance_divisor = 0;
230 key.element[0].input_format = input_format;
231 key.element[0].output_format = output_format;
237 key.element[0].input_format = output_format;
238 key.element[0].output_format = input_format;
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
Validator.java 5 import javax.lang.model.element.AnnotationMirror;
6 import javax.lang.model.element.AnnotationValue;
7 import javax.lang.model.element.Element;
8 import javax.lang.model.element.ElementVisitor;
9 import javax.lang.model.element.ExecutableElement;
10 import javax.lang.model.element.PackageElement;
11 import javax.lang.model.element.TypeElement;
12 import javax.lang.model.element.TypeParameterElement;
13 import javax.lang.model.element.VariableElement
    [all...]
  /external/v8/src/zone/
zone-list-inl.h 18 void ZoneList<T>::Add(const T& element, Zone* zone) {
20 data_[length_++] = element;
22 ZoneList<T>::ResizeAdd(element, ZoneAllocationPolicy(zone));
47 void ZoneList<T>::ResizeAdd(const T& element, ZoneAllocationPolicy alloc) {
48 ResizeAddInternal(element, alloc);
52 void ZoneList<T>::ResizeAddInternal(const T& element,
58 // Since the element reference could be an element of the list, copy
60 T temp = element;
100 T element = at(i) local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSBaseCompute.java 21 import android.renderscript.Element;
76 protected Element getElement(RenderScript rs, Element.DataType dataType, int size) {
77 Element element = null; local
79 if (dataType == Element.DataType.FLOAT_64) {
80 element = Element.F64(rs);
81 } else if (dataType == Element.DataType.FLOAT_32) {
82 element = Element.F32(rs)
113 Element element = getElement(rs, dataType, size); local
177 Element element = getElement(rs, dataType, size); local
202 Element element = getElement(rs, dataType, size); local
235 Element element = minAlloc.getElement(); local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableMultiset.java 37 * element among the items passed to the factory method or builder. When the
38 * multiset contains multiple instances of an element, those instances are
67 * Returns an immutable multiset containing a single element.
69 * @throws NullPointerException if {@code element} is null
73 public static <E> ImmutableMultiset<E> of(E element) {
74 return copyOfInternal(element);
80 * @throws NullPointerException if any element is null
91 * @throws NullPointerException if any element is null
102 * @throws NullPointerException if any element is null
113 * @throws NullPointerException if any element is nul
    [all...]
ImmutableSet.java 48 * correctly if an element is modified after being placed in the set. For this
88 * Returns an immutable set containing a single element. This set behaves and
90 * a null element. It is preferable mainly for consistency and
93 public static <E> ImmutableSet<E> of(E element) {
94 return new SingletonImmutableSet<E>(element);
99 * occurrences of an element (according to {@link Object#equals}) after the
102 * @throws NullPointerException if any element is null
110 * occurrences of an element (according to {@link Object#equals}) after the
113 * @throws NullPointerException if any element is null
121 * occurrences of an element (according to {@link Object#equals}) after th
195 Object element = checkElementNotNull(elements[i], i); local
215 E element = (E) elements[0]; local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultiset.java 36 * element among the items passed to the factory method or builder. When the
37 * multiset contains multiple instances of an element, those instances are
66 * Returns an immutable multiset containing a single element.
68 * @throws NullPointerException if {@code element} is null
72 public static <E> ImmutableMultiset<E> of(E element) {
73 return copyOfInternal(element);
79 * @throws NullPointerException if any element is null
90 * @throws NullPointerException if any element is null
101 * @throws NullPointerException if any element is null
112 * @throws NullPointerException if any element is nul
    [all...]
  /external/libxaac/decoder/drc_src/
impd_drc_eq.c 118 VOID impd_calc_filt_ele_response(ia_unique_td_filt_element* element,
124 if (element->eq_filter_format == FILTER_ELEMENT_FORMAT_POLE_ZERO) {
125 for (i = 0; i < element->bs_real_zero_radius_one_count; i++) {
129 (FLOAT32)cos(frequency_radian - (FLOAT32)element->zero_sign[i]);
132 for (i = 0; i < element->real_zero_count; i++) {
133 if (element->real_zero_radius[i] < 0.0f) {
134 radius = -element->real_zero_radius[i];
137 radius = element->real_zero_radius[i];
152 for (i = 0; i < element->generic_zero_count; i++) {
153 radius = element->generic_zero_radius[i]
    [all...]
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.cc 148 const XmlElement* element = FirstElement(); local
149 if (element == NULL)
151 return element->Name();
369 XmlElement* element = this; local
371 element = element->last_child_->AsElement();
373 element->AddAttr(name, value);
408 XmlElement* element = this; local
410 element = element->last_child_->AsElement()
426 XmlElement* element = this; local
    [all...]

Completed in 909 milliseconds

<<11121314151617181920>>