Searched defs:Element (Results 26 - 50 of 100) sorted by relevance

1234

/external/llvm/lib/Target/
H A DTarget.cpp129 unsigned Element) {
131 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
128 LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy, unsigned Element) argument
/external/openfst/src/include/fst/
H A Dpartition.h45 struct Element { struct in class:fst::Partition
46 Element() : value(0), next(0), prev(0) {} function in struct:fst::Partition::Element
47 Element(T v) : value(v), next(0), prev(0) {} function in struct:fst::Partition::Element
50 Element* next;
51 Element* prev;
82 elements_[i] = new Element(i);
108 Element* element = elements_[element_id];
125 Element* element = elements_[element_id];
170 Element* split_el = class_split_[class_id];
177 Element* split_e
258 typedef typename Partition<T>::Element Element; typedef in class:fst::PartitionIterator
[all...]
H A Dfactor-weight.h174 struct Element { struct in class:fst::FactorWeightFstImpl
175 Element() {} function in struct:fst::FactorWeightFstImpl::Element
177 Element(StateId s, Weight w) : state(s), weight(w) {} function in struct:fst::FactorWeightFstImpl::Element
224 StateId start = FindState(Element(fst_->Start(), Weight::One()));
232 const Element &e = elements_[s];
282 StateId FindState(const Element &e) {
298 element_map_.insert(pair<const Element, StateId>(e, s));
307 Element e = elements_[s];
316 StateId d = FindState(Element(arc.nextstate, Weight::One()));
321 StateId d = FindState(Element(ar
[all...]
H A Dsynchronize.h71 struct Element { struct in class:fst::SynchronizeFstImpl
72 Element() {} function in struct:fst::SynchronizeFstImpl::Element
74 Element(StateId s, const String *i, const String *o) function in struct:fst::SynchronizeFstImpl::Element
122 StateId start = FindState(Element(fst_->Start(), empty, empty));
130 const Element &e = elements_[s];
224 StateId FindState(const Element &e) {
231 element_map_.insert(pair<const Element, StateId>(e, s));
240 Element e = elements_[s];
250 StateId d = FindState(Element(arc.nextstate, istring, ostring));
256 StateId d = FindState(Element(ar
[all...]
H A Drmepsilon.h99 struct Element { struct in class:fst::RmEpsilonState
104 Element() {} function in struct:fst::RmEpsilonState::Element
106 Element(Label i, Label o, StateId s) function in struct:fst::RmEpsilonState::Element
112 size_t operator()(const Element& e) const {
123 bool operator()(const Element &e1, const Element &e2) const {
129 typedef unordered_map<Element, pair<StateId, size_t>,
189 Element element(arc.ilabel, arc.olabel, arc.nextstate);
193 pair<Element, pair<StateId, size_t> >
/external/openfst/src/test/
H A Dfst_test.cc61 typedef pair<Label, Weight> Element; typedef in class:fst::CustomCompactor
63 Element Compact(StateId s, const A &arc) const {
67 Arc Expand(StateId s, const Element &p, uint32 f = kArcValueFlags) const {
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dpartition.h40 struct Element { struct in class:fst::Partition
41 Element() : value(0), next(0), prev(0) {} function in struct:fst::Partition::Element
42 Element(T v) : value(v), next(0), prev(0) {} function in struct:fst::Partition::Element
45 Element* next;
46 Element* prev;
77 elements_[i] = new Element(i);
103 Element* element = elements_[element_id];
120 Element* element = elements_[element_id];
165 Element* split_el = class_split_[class_id];
172 Element* split_e
253 typedef typename Partition<T>::Element Element; typedef in class:fst::PartitionIterator
[all...]
H A Dfactor-weight.h151 struct Element { struct in class:fst::FactorWeightFstImpl
152 Element() {} function in struct:fst::FactorWeightFstImpl::Element
154 Element(StateId s, Weight w) : state(s), weight(w) {} function in struct:fst::FactorWeightFstImpl::Element
180 StateId start = FindState(Element(fst_->Start(), Weight::One()));
188 const Element &e = elements_[s];
229 StateId FindState(const Element &e) {
245 element_map_.insert(pair<const Element, StateId>(e, s));
254 Element e = elements_[s];
263 StateId d = FindState(Element(arc.nextstate, Weight::One()));
268 StateId d = FindState(Element(ar
[all...]
H A Dsynchronize.h58 struct Element { struct in class:fst::SynchronizeFstImpl
59 Element() {} function in struct:fst::SynchronizeFstImpl::Element
61 Element(StateId s, const String *i, const String *o) function in struct:fst::SynchronizeFstImpl::Element
100 StateId start = FindState(Element(fst_->Start(), empty, empty));
108 const Element &e = elements_[s];
193 StateId FindState(const Element &e) {
200 element_map_.insert(pair<const Element, StateId>(e, s));
209 Element e = elements_[s];
219 StateId d = FindState(Element(arc.nextstate, istring, ostring));
225 StateId d = FindState(Element(ar
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.cpp27 #include "core/dom/Element.h"
137 PassRefPtrWillBeRawPtr<Element> Element::create(const QualifiedName& tagName, Document* document)
139 return adoptRefWillBeNoop(new Element(tagName, document, CreateElement));
142 Element::Element(const QualifiedName& tagName, Document* document, ConstructionType type) function in class:blink::Element
148 Element::~Element()
162 // With Oilpan, either the Element has been removed from the Document
163 // or the Document is dead as well. If the Element ha
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkClipStack.h40 class Element { class in class:SkClipStack
56 Element() { function in class:SkClipStack::Element
61 Element(const Element&);
63 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
67 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
71 Element(const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
75 bool operator== (const Element& element) const;
76 bool operator!= (const Element& element) const { return !(*this == element); }
208 Element(in function in class:SkClipStack::Element
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
221 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-bch.cc27 class Element { class in class:v8::internal::BASE_EMBEDDED
67 Element() function in class:v8::internal::BASE_EMBEDDED::Element
85 Element* at(int index) const { return &(elements_.at(index)); }
86 Element* at(HBasicBlock* block) const { return at(block->block_id()); }
137 Element* successor = at(current->end()->SuccessorAt(i));
181 Element element;
367 ZoneList<Element> elements_;
/external/clang/lib/AST/
H A DCXXInheritance.cpp217 CXXBasePathElement Element; local
218 Element.Base = &BaseSpec;
219 Element.Class = Record;
221 Element.SubobjectNumber = 0;
223 Element.SubobjectNumber = Subobjects.second;
224 ScratchPath.push_back(Element);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-bind.cpp133 // Element access
137 typedef typename tuple_element<I-1, tuple<Values...> >::type Element; typedef in class:get_impl
138 typedef typename add_reference<Element>::type RJ;
139 typedef typename add_const_reference<Element>::type PJ;
/external/deqp/executor/
H A DxeXMLParser.hpp26 * - xml namespaces (<ns:Element>)
63 enum Element enum in namespace:xe::xml
66 ELEMENT_START, //!< Element start.
67 ELEMENT_END, //!< Element end.
150 Element getElement (void) const { return m_element; }
192 Element m_element;
/external/deqp/framework/common/
H A DtcuVector.hpp96 typedef T Element; typedef in class:tcu::Vector
H A DtcuMatrix.hpp54 typedef Vector<T, Rows> Element; typedef in class:tcu::Matrix
/external/deqp/modules/glshared/
H A DglsShaderLibraryCase.hpp80 union Element union in struct:deqp::gls::sl::ShaderCase::Value
91 std::vector<Element> elements; // Scalar values (length dataType.scalarSize * arrayLength).
/external/skia/include/core/
H A DSkClipStack.h40 class Element { class in class:SkClipStack
56 Element() { function in class:SkClipStack::Element
61 Element(const Element&);
63 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
67 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
71 Element(const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
75 bool operator== (const Element& element) const;
76 bool operator!= (const Element& element) const { return !(*this == element); }
208 Element(in function in class:SkClipStack::Element
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
221 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { function in class:SkClipStack::Element
[all...]
/external/smack/src/org/xbill/DNS/
H A DCache.java22 private interface Element { interface in class:Cache
38 private static class CacheRRset extends RRset implements Element {
80 private static class NegativeElement implements Element {
206 private synchronized Element []
211 return (Element []) typelist.toArray(new Element[size]);
213 Element set = (Element) types;
214 return new Element[] {set};
218 private synchronized Element
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMarkupAccumulator.cpp152 String MarkupAccumulator::resolveURLIfNeeded(const Element& element, const String& urlString) const
181 void MarkupAccumulator::appendEndTag(const Element& element)
205 void MarkupAccumulator::appendCustomAttributes(StringBuilder&, const Element&, Namespaces*) argument
209 void MarkupAccumulator::appendQuotedURLAttributeValue(StringBuilder& result, const Element& element, const Attribute& attribute)
235 bool MarkupAccumulator::shouldAddNamespaceElement(const Element& element, Namespaces& namespaces)
250 bool MarkupAccumulator::shouldAddNamespaceAttribute(const Attribute& attribute, const Element& element)
384 void MarkupAccumulator::appendElement(StringBuilder& result, Element& element, Namespaces* namespaces)
399 void MarkupAccumulator::appendOpenTag(StringBuilder& result, const Element& element, Namespaces* namespaces)
407 void MarkupAccumulator::appendCloseTag(StringBuilder& result, const Element& element)
424 void MarkupAccumulator::appendAttribute(StringBuilder& result, const Element
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkClipStack.cpp20 SkClipStack::Element::Element(const Element& that) { function in class:SkClipStack::Element
45 bool SkClipStack::Element::operator== (const Element& element) const {
70 void SkClipStack::Element::replay(SkCanvasClipVisitor* visitor) const {
89 void SkClipStack::Element::invertShapeFillType() {
112 void SkClipStack::Element::initPath(int saveCount, const SkPath& path, SkRegion::Op op,
132 void SkClipStack::Element::asPath(SkPath* path) const {
151 void SkClipStack::Element
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipMaskManager.cpp29 typedef SkClipStack::Element Element; typedef
96 const Element* element = iter.get();
99 if (Element::kRect_Type != element->getType()) {
172 case SkClipStack::Element::kPath_Type:
176 case SkClipStack::Element::kRRect_Type: {
182 case SkClipStack::Element::kRect_Type: {
390 const SkClipStack::Element* element,
398 case Element::kEmpty_Type:
401 case Element
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp98 ObjCDictionaryElement Element = E->getKeyValueElement(I); local
99 if (Element.isPackExpansion())
102 TraverseStmt(Element.Key);
103 TraverseStmt(Element.Value);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp815 int Element = cast<ConstantInt>(I->getOperand(2))->getLimitedValue(); local
817 // The insertelement was inserting at Element. Figure out which element
823 if (Mask[Index] == Element) {

Completed in 4121 milliseconds

1234