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

<<21222324252627282930>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
InstructionWriter.java 457 for (Number element: elements) {
458 writer.write(element.byteValue());
462 for (Number element: elements) {
463 writer.writeShort(element.shortValue());
467 for (Number element: elements) {
468 writer.writeInt(element.intValue());
472 for (Number element: elements) {
473 writer.writeLong(element.longValue());
492 for (SwitchElement element: elements) {
493 writer.writeInt(element.getKey())
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MapKeys.java 31 import javax.lang.model.element.AnnotationMirror;
32 import javax.lang.model.element.AnnotationValue;
33 import javax.lang.model.element.Element;
34 import javax.lang.model.element.ElementKind;
35 import javax.lang.model.element.ExecutableElement;
36 import javax.lang.model.element.TypeElement;
37 import javax.lang.model.element.VariableElement;
62 * @throws IllegalArgumentException if the element is annotated with more than one {@code MapKey}
65 static Optional<? extends AnnotationMirror> getMapKey(Element bindingElement)
    [all...]
ProvisionBinding.java 26 import javax.lang.model.element.Element;
27 import javax.lang.model.element.ElementKind;
28 import javax.lang.model.element.ExecutableElement;
29 import javax.lang.model.element.TypeElement;
44 import static javax.lang.model.element.ElementKind.CONSTRUCTOR;
45 import static javax.lang.model.element.ElementKind.FIELD;
46 import static javax.lang.model.element.ElementKind.METHOD;
88 * Returns a ProvisionBinding for the given element. If {@code resolvedType} is present, this
90 * {@link Types#asMemberOf(DeclaredType, Element)})
    [all...]
  /external/javapoet/src/main/java/com/squareup/javapoet/
AnnotationSpec.java 31 import javax.lang.model.element.AnnotationMirror;
32 import javax.lang.model.element.AnnotationValue;
33 import javax.lang.model.element.ExecutableElement;
34 import javax.lang.model.element.TypeElement;
35 import javax.lang.model.element.VariableElement;
143 TypeElement element = (TypeElement) annotation.getAnnotationType().asElement(); local
144 AnnotationSpec.Builder builder = AnnotationSpec.builder(ClassName.get(element));
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_vbuf.c 231 hw_key.element[i].type = TRANSLATE_ELEMENT_NORMAL;
232 hw_key.element[i].input_format = PIPE_FORMAT_R32G32B32A32_FLOAT;
233 hw_key.element[i].input_buffer = src_buffer;
234 hw_key.element[i].input_offset = src_offset;
235 hw_key.element[i].instance_divisor = 0;
236 hw_key.element[i].output_format = output_format;
237 hw_key.element[i].output_offset = dst_offset;
draw_pt_fetch_emit.c 47 * - draw vertex element/buffer state
137 key.element[i].type = TRANSLATE_ELEMENT_NORMAL;
138 key.element[i].input_format = input_format;
139 key.element[i].input_buffer = input_buffer;
140 key.element[i].input_offset = input_offset;
141 key.element[i].instance_divisor = src->instance_divisor;
142 key.element[i].output_format = output_format;
143 key.element[i].output_offset = dst_offset;
  /external/guice/core/test/com/google/inject/internal/
SpiUtils.java 69 import com.google.inject.spi.Element;
322 Set<Element> elements = ImmutableSet.copyOf(Elements.getElements(modules));
326 for (Element element : elements) {
327 if (element instanceof Binding) {
328 Binding<?> binding = (Binding<?>) element;
396 List<Element> otherMatches = Lists.newArrayList();
397 List<Element> otherElements = Lists.newArrayList();
402 for (Element element : elements)
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_D_T_.py 160 for element in content:
161 if not isinstance(element, tuple):
163 name, attrs, content = element
196 for element in content:
197 if not isinstance(element, tuple):
199 name, attrs, content = element
292 for element in content:
293 if not isinstance(element, tuple):
295 name, attr, content = element
333 for element in content
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
chatroommoduleimpl.cc 275 XmlElement element(QN_PRESENCE);
276 element.AddAttr(QN_TO, member_jid().Str());
279 element.AddElement(muc_x);
295 XmppReturnStatus status = engine()->SendStanza(&element);
308 XmlElement element(QN_PRESENCE);
309 element.AddAttr(QN_TO, member_jid().Str());
310 element.AddAttr(QN_TYPE, "unavailable");
311 XmppReturnStatus status = engine()->SendStanza(&element);
335 XmlElement element(QN_PRESENCE);
336 element.AddAttr(QN_TO, member_jid().Str())
    [all...]
  /external/desugar/java/com/google/devtools/common/options/processor/
OptionProcessor.java 39 import javax.lang.model.element.AnnotationMirror;
40 import javax.lang.model.element.Element;
41 import javax.lang.model.element.ElementKind;
42 import javax.lang.model.element.ExecutableElement;
43 import javax.lang.model.element.Modifier;
44 import javax.lang.model.element.TypeElement;
45 import javax.lang.model.element.VariableElement;
114 // Check that we can get a type mirror, either through the type element or the primitive type.
284 .filter(element -> element.getKind() == ElementKind.METHOD
    [all...]
  /external/libchrome/base/json/
json_value_converter.h 249 template <typename Element>
251 : public ValueConverter<std::vector<std::unique_ptr<Element>>> {
256 std::vector<std::unique_ptr<Element>>* field) const override {
265 const base::Value* element = NULL; variable
266 if (!list->Get(i, &element))
269 std::unique_ptr<Element> e(new Element);
270 if (basic_converter_.Convert(*element, e.get())) {
273 DVLOG(1) << "failure at " << i << "-th element";
281 BasicValueConverter<Element> basic_converter_
299 const base::Value* element = NULL; variable
336 const base::Value* element = NULL; variable
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
priority_queue.cc 92 "Expected the priority element to be a scalar, but "
167 "Expected the priority element to be a scalar, but "
174 PersistentTensor element;
176 tuple, index, i, attempt->context, &element));
178 queues_[i].emplace(priority, element);
268 // what is going to happen to the element read out of the
276 Tensor element; local
278 ManyOutShape(i, 0), &element);
284 tuple.emplace_back(element);
349 Tensor element;
    [all...]
  /external/vulkan-validation-layers/scripts/
thread_safety_generator.py 195 // of only containing a single element. The "first" element's use is stored
197 // TODO: Consider generalizing this from one element to N elements (where N
691 """Generate C function pointer typedef for <command> Element"""
715 element = member.replace('[]','[index]',1)
716 if '[]' in element:
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
HeapTable.java 36 DocString render(T element);
44 long getSize(T element, AhatHeap heap);
153 for (T element : elements) {
154 if (config.getSize(element, heap) > 0 ||
155 config.getSize(element.getBaseline(), baseheap) > 0) {
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 66 * user attempts to add an element to the multiset that violates this constraint (for example,
67 * the user attempts to add a string element to a set whose elements are integers), the
82 * the multiset. If the user attempts to add an element to the multiset that violates this
228 public int count(@Nullable Object element) {
231 E e = (E) element;
245 public int add(@Nullable E element, int occurrences) {
248 return count(element);
250 checkArgument(range.contains(element));
253 comparator().compare(element, element);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 62 * user attempts to add an element to the multiset that violates this constraint (for example,
63 * the user attempts to add a string element to a set whose elements are integers), the
78 * the multiset. If the user attempts to add an element to the multiset that violates this
224 public int count(@Nullable Object element) {
227 E e = (E) element;
241 public int add(@Nullable E element, int occurrences) {
244 return count(element);
246 checkArgument(range.contains(element));
249 comparator().compare(element, element);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultisetsCollectionTest.java 142 String element = elements[i];
143 if (multiset1.contains(element) ||
144 multiset2.contains(element)) {
146 multiset1.add(element);
147 multiset2.add(element);
217 // add 1 more copy of each element to multiset1 than multiset2
SynchronizedDequeTest.java 68 public E element() { method in class:SynchronizedDequeTest.TestDeque
70 return delegate.element();
105 public boolean add(E element) {
107 return delegate.add(element);
258 create().element();
  /external/iperf3/src/
cjson.h 258 #define cJSON_ArrayForEach(element, array) for(element = (array != NULL) ? (array)->child : NULL; element != NULL; element = element->next)
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
LexicalDifferenceCalculatorTest.java 35 CsmElement element = ConcreteSyntaxModel.forClass(cu.getClass()); local
36 LexicalDifferenceCalculator.CalculatedSyntaxModel csmOriginal = new LexicalDifferenceCalculator().calculatedSyntaxModelForNode(element, cu);
45 CsmElement element = ConcreteSyntaxModel.forClass(cu.getClass()); local
47 LexicalDifferenceCalculator.CalculatedSyntaxModel csmChanged = new LexicalDifferenceCalculator().calculatedSyntaxModelAfterPropertyChange(element, cu, ObservableProperty.PACKAGE_DECLARATION, null, packageDeclaration);
58 CsmElement element = ConcreteSyntaxModel.forClass(annotationDeclaration.getClass()); local
59 LexicalDifferenceCalculator.CalculatedSyntaxModel csm = new LexicalDifferenceCalculator().calculatedSyntaxModelForNode(element, annotationDeclaration);
89 CsmElement element = ConcreteSyntaxModel.forClass(annotationDeclaration.getClass()); local
90 LexicalDifferenceCalculator.CalculatedSyntaxModel csm = new LexicalDifferenceCalculator().calculatedSyntaxModelAfterPropertyChange(element, annotationDeclaration, ObservableProperty.MODIFIERS, EnumSet.noneOf(Modifier.class), EnumSet.of(Modifier.PUBLIC));
122 CsmElement element = ConcreteSyntaxModel.forClass(annotationDeclaration.getClass()); local
124 LexicalDifferenceCalculator.CalculatedSyntaxModel csm = new LexicalDifferenceCalculator().calculatedSyntaxModelAfterPropertyChange(element, annotationDeclaration, ObservableProperty.NAME
155 CsmElement element = ConcreteSyntaxModel.forClass(annotationDeclaration.getClass()); local
188 CsmElement element = ConcreteSyntaxModel.forClass(annotationDeclaration.getClass()); local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GameRenderer.java 218 RenderElement element = (RenderElement)objectArray[i]; local
219 float x = element.x;
220 float y = element.y;
221 if (element.cameraRelative) {
225 element.mDrawable.draw(x, y, scaleX, scaleY);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DexPool.java 183 for (AnnotationElement element: annotationEncodedValue.getElements()) {
184 stringSection.intern(element.getName());
185 internEncodedValue(element.getValue());
189 for (EncodedValue element: ((ArrayEncodedValue)encodedValue).getValue()) {
190 internEncodedValue(element);
  /external/v8/src/zone/
zone.h 184 // Returns a reference to the element at index i. This reference is not safe
218 // Adds a copy of the given 'element' to the end of the list,
220 void Add(const T& element, Zone* zone);
225 // Inserts the element at the specific index.
226 void InsertAt(int index, const T& element, Zone* zone);
233 // Overwrites the element at the specific index.
234 void Set(int index, const T& element);
236 // Removes the i'th element without deleting it even if T is a
238 // removed element. This function's complexity is linear in the
242 // Removes the last element without deleting it even if T is
    [all...]
  /external/bcc/src/lua/bcc/vendor/
argparse.lua 701 for _, element in ipairs(elements) do
702 table.insert(buf, make_two_columns(element:_get_label(), element:_get_description()))
771 function ElementState:__call(state, element)
774 self.element = element
775 self.target = element._target or element:_get_default_target()
776 self.action, self.result[self.target] = element:_get_action()
785 local converter = self.element._conver
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 14 * 2005-01-12 fl split element object into base and extras
63 /* An element can hold this many children without extra memory
69 to minimize the size of the element structure itself (this only
214 /* the element type */
235 /* element tag (a string). */
246 /* text after this element, in parent. note that this is a tagged
259 /* element constructor and destructor */
334 ALLOC(sizeof(ElementObject), "create element");
391 element_add_subelement(ElementObject* self, PyObject* element)
393 /* add a child element to a parent */
467 element(PyObject* self, PyObject* args, PyObject* kw) function
553 PyObject* element; local
589 ElementObject* element; local
631 ElementObject* element; local
776 PyObject* element = PySequence_Fast_GET_ITEM(seq, i); local
1037 PyObject* element; local
1151 PyObject* element; local
1421 PyObject* element = PySequence_Fast_GET_ITEM(seq, i); local
    [all...]

Completed in 879 milliseconds

<<21222324252627282930>>