Searched defs:Element (Results 1 - 25 of 115) sorted by relevance

12345

/external/swiftshader/third_party/subzero/crosstest/
H A Dinsertelement.h23 setElement(VectorType &Value, size_t Index, ElementType Element) { argument
24 Value[Index] = Element;
/external/guice/core/src/com/google/inject/spi/
H A DElement.java36 public interface Element { interface
/external/libmojo/mojo/public/cpp/bindings/
H A Dbinding_set.h33 auto binding = new Element(impl, std::move(request));
60 class Element { class in class:mojo::BindingSet
62 Element(Interface* impl, InterfaceRequest<Interface> request) function in class:mojo::BindingSet::Element
65 base::Bind(&Element::OnConnectionError, base::Unretained(this)));
68 ~Element() {}
74 base::WeakPtr<Element> GetWeakPtr() {
90 base::WeakPtrFactory<Element> weak_ptr_factory_;
92 DISALLOW_COPY_AND_ASSIGN(Element);
98 [](const base::WeakPtr<Element>& p) {
108 std::vector<base::WeakPtr<Element>> bindings
[all...]
H A Dinterface_ptr_set.h26 auto weak_interface_ptr = new Element(std::move(ptr));
49 class Element { class in class:mojo::internal::PtrSet
51 explicit Element(Ptr<Interface> ptr) function in class:mojo::internal::PtrSet::Element
56 ~Element() {}
62 base::WeakPtr<Element> GetWeakPtr() {
67 static void DeleteElement(Element* element) { delete element; }
70 base::WeakPtrFactory<Element> weak_ptr_factory_;
72 DISALLOW_COPY_AND_ASSIGN(Element);
77 [](const base::WeakPtr<Element>& p) {
83 std::vector<base::WeakPtr<Element>> ptrs
[all...]
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
H A DElement.java34 @interface Element { interface
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DRangeValueIterator.java39 * RangeValueIterator.Element result = new RangeValueIterator.Element();
59 public class Element class in interface:RangeValueIterator
83 public Element() method in class:RangeValueIterator.Element
97 * @see Element
99 public boolean next(Element element);
H A DValueIterator.java27 * ValueIterator.Element result = new ValueIterator.Element();
45 public static final class Element class in interface:ValueIterator
63 public Element() method in class:ValueIterator.Element
77 * @see Element
79 public boolean next(Element element);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRangeValueIterator.java38 * RangeValueIterator.Element result = new RangeValueIterator.Element();
60 public class Element class in interface:RangeValueIterator
88 public Element() method in class:RangeValueIterator.Element
102 * @see Element
105 public boolean next(Element element);
H A DValueIterator.java26 * ValueIterator.Element result = new ValueIterator.Element();
46 public static final class Element class in interface:ValueIterator
67 public Element() method in class:ValueIterator.Element
81 * @see Element
84 public boolean next(Element element);
/external/caliper/examples/src/main/java/examples/
H A DListModificationBenchmark.java33 private enum Element { enum in class:ListModificationBenchmark
38 @Override List<Element> create() {
39 return new ArrayList<Element>();
43 @Override List<Element> create() {
44 return new LinkedList<Element>();
48 abstract List<Element> create();
57 private List<Element> list;
62 list.add(Element.INSTANCE);
68 List<Element> list = implementation.create();
70 list.add(Element
[all...]
/external/llvm/include/llvm/Support/
H A DRecycler.h97 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { argument
98 push(reinterpret_cast<FreeNode *>(Element));
/external/pdfium/core/fpdfdoc/
H A Dtagged_int.h25 enum { Invalid, Element, PageContent, StreamContent, Object } m_Type; enumerator in enum:CPDF_StructKid::__anon16419
27 CFX_RetainPtr<CPDF_StructElement> m_pElement; // For Element.
28 CPDF_Dictionary* m_pDict; // For Element.
/external/guava/guava/src/com/google/common/reflect/
H A DElement.java37 class Element extends AccessibleObject implements Member { class in inherits:AccessibleObject,Member
42 <M extends AccessibleObject & Member> Element(M member) { method in class:Element
154 if (obj instanceof Element) {
155 Element that = (Element) obj;
/external/guava/guava-tests/test/com/google/common/collect/
H A DCollectionBenchmarkSampleData.java38 private final Set<Element> valuesInSet;
39 private final Element[] queries;
59 Set<Element> getValuesInSet() {
63 Element[] getQueries() {
67 private Element[] createQueries(Set<Element> elementsInSet, int numQueries) {
68 List<Element> queryList = Lists.newArrayListWithCapacity(numQueries);
81 List<Element> tmp = Lists.newArrayList(elementsInSet);
88 Element candidate = newElement();
94 return queryList.toArray(new Element[
112 static class Element implements Comparable<Element> { class in class:CollectionBenchmarkSampleData
114 Element(int hash) { method in class:CollectionBenchmarkSampleData.Element
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DElement.java33 public class Element extends Node { class in inherits:Node
41 public Element() { method in class:Element
64 public Element createElement(
112 Element current = this;
115 if (!(current.parent instanceof Element))
117 current = (Element) current.parent;
147 return parent instanceof Element ? ((Element) parent).getNamespaceUri(prefix) : null;
176 public Element getParentElement() {
177 return (parent instanceof Element)
[all...]
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h45 struct Element { struct in class:llvm::orc::CtorDtorIterator
46 Element(unsigned Priority, const Function *Func, const Value *Data) function in struct:llvm::orc::CtorDtorIterator::Element
72 Element operator*() const;
/external/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp77 uint64_t Element = APElt.getLoBits(8).getZExtValue(); local
81 if (Element & (1 << 7))
85 int Index = Base + (Element & 0xf);
148 uint64_t Element = cast<ConstantInt>(COp)->getZExtValue(); local
150 Index += (Element >> 1) & 0x1;
152 Index += Element & 0x3;
316 APInt Element = cast<ConstantInt>(COp)->getValue(); local
317 Element = Element.getLoBits(EltMaskSize);
318 ShuffleMask.push_back(Element
349 APInt Element = cast<ConstantInt>(COp)->getValue(); local
[all...]
/external/pdfium/core/fxcrt/
H A Dfx_xml.h55 enum ChildType { Invalid, Element, Content }; enumerator in enum:CXML_Element::ChildType
/external/protobuf/src/google/protobuf/util/internal/
H A Djson_objectwriter.h92 : element_(new Element(NULL)),
120 class LIBPROTOBUF_EXPORT Element : public BaseElement { class in class:google::protobuf::util::converter::JsonObjectWriter
122 explicit Element(Element* parent) : BaseElement(parent), is_first_(true) {} function in class:google::protobuf::util::converter::JsonObjectWriter::Element
124 // Called before each field of the Element is to be processed.
137 GOOGLE_DISALLOW_IMPLICIT_CONSTRUCTORS(Element);
140 virtual Element* element() { return element_.get(); }
170 void Push() { element_.reset(new Element(element_.release())); }
175 element_.reset(element_->pop<Element>());
198 google::protobuf::scoped_ptr<Element> element
[all...]
/external/skia/src/core/
H A DSkColorSpace_A2B.h70 class Element { class in class:SkColorSpace_A2B
72 Element(SkGammaNamed gammaNamed, int channelCount) function in class:SkColorSpace_A2B::Element
81 explicit Element(sk_sp<SkGammas> gammas) function in class:SkColorSpace_A2B::Element
94 explicit Element(sk_sp<SkColorLookUpTable> colorLUT) function in class:SkColorSpace_A2B::Element
102 explicit Element(const SkMatrix44& matrix) function in class:SkColorSpace_A2B::Element
151 const Element& element(int i) const { return fElements[i]; }
166 SkColorSpace_A2B(ICCTypeFlag iccType, std::vector<Element> elements, PCS pcs,
171 std::vector<Element> fElements;
H A DSkClipStack.h44 class Element { class in class:SkClipStack
60 Element() { function in class:SkClipStack::Element
65 Element(const Element&);
67 Element(const SkRect& rect, SkClipOp op, bool doAA) { function in class:SkClipStack::Element
71 Element(const SkRRect& rrect, SkClipOp op, bool doAA) { function in class:SkClipStack::Element
75 Element(const SkPath& path, SkClipOp op, bool doAA) { function in class:SkClipStack::Element
79 ~Element() {
87 bool operator== (const Element& element) const;
88 bool operator!= (const Element
248 Element(int saveCount) { function in class:SkClipStack::Element
253 Element(int saveCount, const SkRRect& rrect, SkClipOp op, bool doAA) { function in class:SkClipStack::Element
257 Element(int saveCount, const SkRect& rect, SkClipOp op, bool doAA) { function in class:SkClipStack::Element
261 Element(int saveCount, const SkPath& path, SkClipOp op, bool doAA) { function in class:SkClipStack::Element
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DRecycler.h106 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { argument
107 FreeList.push_front(reinterpret_cast<RecyclerStruct *>(Element));
/external/swiftshader/third_party/LLVM/lib/Target/
H A DTarget.cpp101 unsigned Element) {
103 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
100 LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy, unsigned Element) argument
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DElement.java18 An Element has an element type, attributes, and a successor Element
23 public class Element { class
28 private Element theNext; // successor of element
32 Return an Element from a specified ElementType.
37 public Element(ElementType type, boolean defaultAttributes) { method in class:Element
65 public Element next() { return theNext; }
72 public void setNext(Element next) { theNext = next; }
137 public boolean canContain(Element other) {
/external/clang/test/Analysis/
H A Dinitializer.cpp88 class Element { class in namespace:DefaultConstructorWithCleanups
96 Element(Helper h = Helper());
100 Element arr[2];

Completed in 1011 milliseconds

12345