HomeSort by relevance Sort by last modified time
    Searched full:getelement (Results 1 - 25 of 602) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 88 container.addAll(Collections.nCopies(a.getCount(), a.getElement()));
89 container.addAll(Collections.nCopies(c.getCount(), c.getElement()));
189 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry());
190 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry());
191 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry());
197 assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry());
198 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), CLOSED).lastEntry());
199 assertEquals(c, sortedMultiset.headMultiset(c.getElement(), CLOSED).lastEntry());
206 assertEquals(a, sortedMultiset.tailMultiset(a.getElement(), CLOSED).firstEntry());
207 assertEquals(c, sortedMultiset.tailMultiset(b.getElement(), CLOSED).firstEntry())
    [all...]
  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 49 if (ain->getType()->getElement()->isCompatible(mElement) == false ||
50 aout->getType()->getElement()->isCompatible(mElement) == false) {
58 if (!t->getElement()->isCompatible(mElement)) {
83 if (in->getType()->getElement()->isCompatible(mElement) == false ||
84 out->getType()->getElement()->isCompatible(mElement) == false) {
91 if (in->getType()->getElement()->isCompatible(mElement) == false ||
92 out->getType()->getElement()->isCompatible(mElement) == false) {
99 if (in->getType()->getElement()->isCompatible(mElement) == false ||
100 out->getType()->getElement()->isCompatible(mElement) == false) {
107 if (in->getType()->getElement()->isCompatible(mElement) == false |
    [all...]
Allocation.cpp 77 RsDataType dt = mType->getElement()->getDataType();
85 RsDataType dt = mType->getElement()->getDataType();
93 RsDataType dt = mType->getElement()->getDataType();
101 RsDataType dt = mType->getElement()->getDataType();
109 RsDataType dt = mType->getElement()->getDataType();
117 RsDataType dt = mType->getElement()->getDataType();
125 RsDataType dt = mType->getElement()->getDataType();
228 if (mAutoPadding && (mType->getElement()->getVectorSize() == 3)) {
229 size_t eSize = mType->getElement()->getSizeBytes();
233 count, ptr, count * mType->getElement()->getSizeBytes()))
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
DateTimeBox.java 10 getElement().setAttribute("type", "datetime-local");
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicHistogram.java 88 if (ain.getType().getElement().getVectorSize() <
89 mOut.getType().getElement().getVectorSize()) {
94 if (!ain.getType().getElement().isCompatible(Element.U8(mRS)) &&
95 !ain.getType().getElement().isCompatible(Element.U8_2(mRS)) &&
96 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
97 !ain.getType().getElement().isCompatible(Element.U8_4(mRS))) {
141 if (mOut.getType().getElement() != Element.U32(mRS) &&
142 mOut.getType().getElement() != Element.U32_2(mRS) &&
143 mOut.getType().getElement() != Element.U32_3(mRS) &&
144 mOut.getType().getElement() != Element.U32_4(mRS) &
    [all...]
ScriptIntrinsicColorMatrix.java 245 if (!ain.getElement().isCompatible(Element.U8(mRS)) &&
246 !ain.getElement().isCompatible(Element.U8_2(mRS)) &&
247 !ain.getElement().isCompatible(Element.U8_3(mRS)) &&
248 !ain.getElement().isCompatible(Element.U8_4(mRS)) &&
249 !ain.getElement().isCompatible(Element.F32(mRS)) &&
250 !ain.getElement().isCompatible(Element.F32_2(mRS)) &&
251 !ain.getElement().isCompatible(Element.F32_3(mRS)) &&
252 !ain.getElement().isCompatible(Element.F32_4(mRS))) {
257 if (!aout.getElement().isCompatible(Element.U8(mRS)) &&
258 !aout.getElement().isCompatible(Element.U8_2(mRS)) &
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicHistogram.java 98 if (ain.getType().getElement().getVectorSize() <
99 mOut.getType().getElement().getVectorSize()) {
104 if (!ain.getType().getElement().isCompatible(Element.U8(mRS)) &&
105 !ain.getType().getElement().isCompatible(Element.U8_2(mRS)) &&
106 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
107 !ain.getType().getElement().isCompatible(Element.U8_4(mRS))) {
151 if (mOut.getType().getElement() != Element.U32(mRS) &&
152 mOut.getType().getElement() != Element.U32_2(mRS) &&
153 mOut.getType().getElement() != Element.U32_3(mRS) &&
154 mOut.getType().getElement() != Element.U32_4(mRS) &
    [all...]
ScriptIntrinsicColorMatrix.java 225 if (!ain.getElement().isCompatible(Element.U8(mRS)) &&
226 !ain.getElement().isCompatible(Element.U8_2(mRS)) &&
227 !ain.getElement().isCompatible(Element.U8_3(mRS)) &&
228 !ain.getElement().isCompatible(Element.U8_4(mRS)) &&
229 !ain.getElement().isCompatible(Element.F32(mRS)) &&
230 !ain.getElement().isCompatible(Element.F32_2(mRS)) &&
231 !ain.getElement().isCompatible(Element.F32_3(mRS)) &&
232 !ain.getElement().isCompatible(Element.F32_4(mRS))) {
237 if (!aout.getElement().isCompatible(Element.U8(mRS)) &&
238 !aout.getElement().isCompatible(Element.U8_2(mRS)) &
    [all...]
  /external/autotest/frontend/client/src/autotest/common/
CommonClassFactory.java 26 RootPanel.get("motd").getElement().setInnerHTML(motd);
34 RootPanel.get("motd").getElement().setInnerHTML(motd);
  /external/autotest/frontend/client/src/autotest/common/table/
FragmentedTable.java 17 * handling, getRowCount(), getCellCount(), and getCellFormatter().getElement(). getElement()
23 public Element getElement(int row, int column) {
57 Element tbody = DOM.getFirstChild(getElement());
67 DomUtils.clearDomChildren(getElement());
87 int fragmentIndex = DOM.getChildIndex(getElement(), body);
108 if (tableElem == getElement()) {
113 if (td == getElement()) {
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
ClassReferenceTest.java 60 Assert.assertNotNull(resolveResult.getElement());
61 Assert.assertEquals("java.lang.Object", ((PsiClass)resolveResult.getElement()).getQualifiedName());
65 Assert.assertNotNull(resolveResults[0].getElement());
66 Assert.assertEquals("java.lang.Object", ((PsiClass)resolveResults[0].getElement()).getQualifiedName());
85 Assert.assertNotNull(resolveResult.getElement());
86 Assert.assertEquals("blarg", ((PsiClass)resolveResult.getElement()).getQualifiedName());
90 Assert.assertNotNull(resolveResults[0].getElement());
91 Assert.assertEquals("blarg", ((PsiClass)resolveResults[0].getElement()).getQualifiedName());
  /external/pdfium/fpdfsdk/src/
fpdfeditpage.cpp 103 !pPage->m_pFormDict->GetElement("Type")->GetDirect() ||
104 pPage->m_pFormDict->GetElement("Type")->GetDirect()->GetString().Compare(
114 CPDF_Object* pRotateObj = pDict->GetElement("Rotate")->GetDirect();
120 pDict = ToDictionary(pDict->GetElement("Parent")->GetDirect());
130 !pPage->m_pFormDict->GetElement("Type")->GetDirect() ||
131 pPage->m_pFormDict->GetElement("Type")->GetDirect()->GetString().Compare(
175 !pPage->m_pFormDict->GetElement("Type")->GetDirect() ||
176 pPage->m_pFormDict->GetElement("Type")->GetDirect()->GetString().Compare(
187 pPage->m_pFormDict->GetElement("Type")->GetDirect()->GetString().Compare(
240 !pPage->m_pFormDict->GetElement("Type")->GetDirect() |
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/base/
DroidDriverContext.java 48 public E getElement(R rawElement, E parent) {
59 return getElement(rawRoot, null /* parent */);
  /frameworks/rs/
rsApiType.cpp 41 (*typeData++) = (uintptr_t)t->getElement();
42 t->getElement()->incUserRef();
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptYuvMeans2dTo1d.java 44 return AllocationInfo.newInstance(inputInfo.getElement(),
57 + inputInfo.getElement());
74 + mInputInfo.getElement());
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicBlur.java 62 if (mAllocSrc.getType().getElement().isCompatible(Element.U8(mRS))) {
66 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) {
74 if (mAllocSrc.getType().getElement().isCompatible(Element.U8(mRS))) {
78 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) {
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestFrexp.java 49 Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE);
50 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
58 Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE);
59 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
137 Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE);
138 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
146 Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE);
147 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
225 Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE);
226 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE)
    [all...]
TestModf.java 49 Allocation outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
50 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
58 Allocation outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
59 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
137 Allocation outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
138 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
146 Allocation outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
147 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
225 Allocation outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE);
226 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE)
    [all...]
TestRemquo.java 51 Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE);
52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
61 Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE);
62 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
134 Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE);
135 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
144 Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE);
145 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
217 Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE);
218 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE)
    [all...]
TestNativeSincos.java 49 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
50 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
58 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
59 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
137 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
138 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
146 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
147 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
225 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE);
226 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE)
    [all...]
TestSincos.java 49 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
50 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
58 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
59 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
137 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
138 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
146 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
147 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
225 Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE);
226 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE)
    [all...]
TestLgamma.java 48 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
117 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
124 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE);
186 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE);
193 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE);
255 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE);
262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE);
330 Allocation outSignOfGamma = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE);
331 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE)
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_xml.h 140 CXML_Element* GetElement(FX_DWORD index) const;
142 CXML_Element* GetElement(const CFX_ByteStringC& space,
144 return GetElement(space, tag, 0);
150 CXML_Element* GetElement(const CFX_ByteStringC& space,
  /frameworks/compile/slang/tests/P_reduce_general_accumulator/
ScriptC_reduce_general_accumulator.java.expect 104 if (!ain1.getType().getElement().isCompatible(__I32)) {
137 if (!ain1.getType().getElement().isCompatible(__I32)) {
170 if (!ain1.getType().getElement().isCompatible(__I32)) {
203 if (!ain1.getType().getElement().isCompatible(__I32)) {
236 if (!ain1.getType().getElement().isCompatible(__I32)) {
269 if (!ain1.getType().getElement().isCompatible(__I32)) {
302 if (!ain1.getType().getElement().isCompatible(__I32)) {
335 if (!ain1.getType().getElement().isCompatible(__I32)) {
368 if (!ain1.getType().getElement().isCompatible(__I32)) {
401 if (!ain1.getType().getElement().isCompatible(__I32))
    [all...]
  /system/update_engine/payload_generator/
extent_utils.h 37 Extent GetElement(const std::vector<Extent>& collection, size_t index);
38 Extent GetElement(
48 ret += GetElement(collection, i).num_blocks();
59 const Extent extent = GetElement(extents, i);

Completed in 1548 milliseconds

1 2 3 4 5 6 7 8 91011>>