HomeSort by relevance Sort by last modified time
    Searched refs:mElement (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsic3DLUT.java 31 private Element mElement;
35 mElement = e;
72 if (!t.getElement().isCompatible(mElement)) {
Type.java 60 Element mElement;
88 return mElement;
200 // mDimLOD; mDimFaces; mElement;
212 mElement = new Element(elementID, mRS);
213 mElement.updateFromNative();
231 Element mElement;
242 mElement = e;
339 int id = mRS.nTypeCreate(mElement.getID(mRS),
342 t.mElement = mElement;
    [all...]
Allocation.java 294 if ((mType.mElement.mType == Element.DataType.SIGNED_32) ||
295 (mType.mElement.mType == Element.DataType.UNSIGNED_32)) {
299 "32 bit integer source does not match allocation type " + mType.mElement.mType);
303 if ((mType.mElement.mType == Element.DataType.SIGNED_16) ||
304 (mType.mElement.mType == Element.DataType.UNSIGNED_16)) {
308 "16 bit integer source does not match allocation type " + mType.mElement.mType);
312 if ((mType.mElement.mType == Element.DataType.SIGNED_8) ||
313 (mType.mElement.mType == Element.DataType.UNSIGNED_8)) {
317 "8 bit integer source does not match allocation type " + mType.mElement.mType);
321 if (mType.mElement.mType == Element.DataType.FLOAT_32)
    [all...]
Script.java 313 protected Element mElement;
317 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT);
321 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages);
328 return mElement;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
ListElementAddTransform.java 28 private final IGLProperty mElement;
32 mElement = element;
39 list.add(mElement);
47 list.remove(mElement);
  /external/doclava/src/com/google/doclava/
AnnotationValueInfo.java 23 private MethodInfo mElement;
28 mElement = null;
34 mElement = element;
42 return mElement;
46 mElement = element;
124 mElement = m;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Type.java 62 Element mElement;
84 return mElement;
207 Element mElement;
218 mElement = e;
317 t = TypeThunker.create(rst, mElement, mDimX, mDimY, mDimZ,
320 int id = mRS.nTypeCreate(mElement.getID(mRS),
324 t.mElement = mElement;
ScriptIntrinsic3DLUT.java 32 private Element mElement;
36 mElement = e;
79 if (!t.getElement().isCompatible(mElement)) {
Allocation.java 264 if ((mType.mElement.mType == Element.DataType.SIGNED_32) ||
265 (mType.mElement.mType == Element.DataType.UNSIGNED_32)) {
269 "32 bit integer source does not match allocation type " + mType.mElement.mType);
273 if ((mType.mElement.mType == Element.DataType.SIGNED_16) ||
274 (mType.mElement.mType == Element.DataType.UNSIGNED_16)) {
278 "16 bit integer source does not match allocation type " + mType.mElement.mType);
282 if ((mType.mElement.mType == Element.DataType.SIGNED_8) ||
283 (mType.mElement.mType == Element.DataType.UNSIGNED_8)) {
287 "8 bit integer source does not match allocation type " + mType.mElement.mType);
291 if (mType.mElement.mType == Element.DataType.FLOAT_32)
    [all...]
Script.java 435 protected Element mElement;
439 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT);
443 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages);
450 return mElement;
TypeThunker.java 47 mElement = new ElementThunker(rs, t.getElement());
  /frameworks/rs/cpp/
Type.cpp 75 mElement = NULL;
81 // mDimLOD; mDimFaces; mElement;
95 mElement = new Element(elementID, mRS);
96 mElement.updateFromNative();
106 t->mElement = e;
120 mElement = e;
150 if (format != RS_YUV_NONE && !(mElement->isCompatible(Element::YUV(mRS)))) {
203 void * id = RS::dispatch->TypeCreate(mRS->getContext(), mElement->getID(), mDimX, mDimY, mDimZ,
206 t->mElement = mElement;
    [all...]
ScriptIntrinsics.cpp 28 mElement = e;
48 if (ain->getType()->getElement()->isCompatible(mElement) == false ||
49 aout->getType()->getElement()->isCompatible(mElement) == false) {
57 if (!t->getElement()->isCompatible(mElement)) {
82 if (in->getType()->getElement()->isCompatible(mElement) == false ||
83 out->getType()->getElement()->isCompatible(mElement) == false) {
90 if (in->getType()->getElement()->isCompatible(mElement) == false ||
91 out->getType()->getElement()->isCompatible(mElement) == false) {
98 if (in->getType()->getElement()->isCompatible(mElement) == false ||
99 out->getType()->getElement()->isCompatible(mElement) == false)
    [all...]
Script.cpp 58 mAllocation = Allocation::createSized(rs, mElement, dimx, RS_ALLOCATION_USAGE_SCRIPT | usages);
  /external/chromium_org/media/audio/mac/
audio_device_listener_mac.cc 38 addresses[i].mElement == kDeviceChangePropertyAddress.mElement &&
audio_unified_mac.cc 66 pa.mElement = kAudioObjectPropertyElementMaster;
89 pa.mElement = kAudioObjectPropertyElementMaster;
110 pa.mElement = kAudioObjectPropertyElementMaster;
147 pa.mElement = kAudioObjectPropertyElementMaster;
193 pa.mElement = kAudioObjectPropertyElementMaster;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 254 Document document = ((TestXmlNode) node).mElement.getOwnerDocument();
332 private final Element mElement;
336 mElement = element;
343 NamedNodeMap attributes = mElement.getAttributes();
354 mElement.removeAttributeNS(uri, localName);
356 mElement.setAttributeNS(uri, localName, value);
363 Element child = mElement.getOwnerDocument().createElement(getTagName(viewFqcn));
364 mElement.appendChild(child);
373 Element child = mElement.getOwnerDocument().createElement(getTagName(viewFqcn));
374 List<Element> children = DomUtilities.getChildren(mElement);
    [all...]
  /frameworks/rs/
rsScriptIntrinsic.h 31 ObjectBaseRef<const Element> mElement;
rsType.h 62 size_t getElementSizeBytes() const {return mElement->getSizeBytes();}
63 size_t getPackedSizeBytes() const {return mCellCount * mElement->getSizeBytes();}
64 const Element * getElement() const {return mElement.get();}
125 ObjectBaseRef<const Element> mElement;
rsType.cpp 54 mElement.clear();
131 mHal.state.element = mElement.get();
144 mElement->dumpLOGV(buf);
152 mElement->serialize(rsc, stream);
233 nt->mElement.set(e);
249 return getTypeRef(rsc, mElement.get(), dimX,
256 return getTypeRef(rsc, mElement.get(), dimX, dimY,
310 // mHal.state.lodCount; mHal.state.faces; mElement; into typeData
rsScriptIntrinsic.cpp 36 mElement.set(e);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic.h 63 ObjectBaseRef<const Element> mElement;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoringTest.java 50 List<Element> selectedElements = getElements(info.mElement, ids);
UnwrapRefactoringTest.java 47 List<Element> selectedElements = getElements(info.mElement, id);
WrapInRefactoringTest.java 51 List<Element> selectedElements = getElements(info.mElement, ids);

Completed in 270 milliseconds

1 2