/frameworks/compile/slang/tests/P_reduce_general_struct/ |
ScriptC_reduce_general_struct.java.expect | 39 __I32 = Element.I32(rs); 43 private Element __I32; 44 private Element __ScriptField_MyStruct;
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HTML.java | 24 * HTML class defines Element and Attribute classes. 31 * Html element 33 public static final class Element { 60 * Construct an Element. 63 * Flow refers to whether the element is inherently character or block level. Breaks flow 68 public Element(String name, int type, boolean empty, 70 Preconditions.checkNotNull(name, "Element name can not be null"); 71 Preconditions.checkNotNull(flow, "Element flow can not be null"); 81 * Construct an Element with inline=true. 83 public Element(String name, int type, boolean empty [all...] |
HtmlTreeBuilder.java | 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */ 39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>(); 72 HTML.Element element = t.getElement(); local 73 if (element.isEmpty()) { 82 tree.addStartTag(HtmlDocument.createTag(element, 85 EndTag end = HtmlDocument.createEndTag(element); 90 push(element); // Track the open tags 98 HTML.Element element = t.getElement() local 144 HTML.Element element = pop(); local 196 HTML.Element element = tag.getElement(); local 232 HTML.Element element= endTag.getElement(); local [all...] |
/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/ |
ConfigGenerator.java | 37 import org.w3c.dom.Element; 70 * The "devices" element is the root element of this schema. 78 * A "device" element contains a "hardware" element, a "software" element 79 * for each API version it supports, and a "state" element for each possible 85 * The "hardware" element contains all of the hardware information for a 91 * The "software" element contains all of the software information for an 97 * The "state" element contains all of the parameters for a given state o [all...] |
/frameworks/base/rs/java/android/renderscript/ |
ProgramVertexFixedFunction.java | 57 public InternalBuilder addInput(Element e) throws IllegalStateException { 136 Element.Builder b = new Element.Builder(rs); 137 b.add(Element.MATRIX4X4(rs), "MV"); 138 b.add(Element.MATRIX4X4(rs), "P"); 139 b.add(Element.MATRIX4X4(rs), "TexMatrix"); 140 b.add(Element.MATRIX4X4(rs), "MVP"); 180 Element.Builder b = new Element.Builder(mRS); 181 b.add(Element.F32_4(mRS), "position") [all...] |
Allocation.java | 47 * more complex Element types, the {@link #copyFromUnchecked} methods can be 91 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { 106 return Element.DataType.SIGNED_64; 114 return Element.DataType.SIGNED_32; 122 return Element.DataType.SIGNED_16; 130 return Element.DataType.SIGNED_8; 137 return Element.DataType.FLOAT_32; 144 return Element.DataType.FLOAT_64; 268 * Get the {@link android.renderscript.Element} of the {@link 271 * @return Element [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ForEachTest.java | 29 import android.renderscript.Element; 59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); 66 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create(); 78 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create(); 80 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create(); 92 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create(); 94 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create(); 106 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create(); 108 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); 120 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create() [all...] |
KernelTest.java | 29 import android.renderscript.Element; 59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); 66 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create(); 78 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create(); 80 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create(); 92 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create(); 94 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create(); 106 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create(); 108 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); 120 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create() [all...] |
GetAllocationTest.java | 20 import android.renderscript.Element; 35 Allocation mTemp = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE);
|
/cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/ |
LeakTest.java | 21 import android.renderscript.Element; 62 Type t = new Type.Builder(mRS, Element.I32(mRS)).setX(x).create();
|
/external/clang/lib/Tooling/ |
FileMatchTrie.cpp | 69 StringRef Element(llvm::sys::path::filename( 71 Children[Element].Path = Path; 73 StringRef Element(llvm::sys::path::filename( 75 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1); 108 StringRef Element(llvm::sys::path::filename(FileName.drop_back( 111 Children.find(Element); 115 ConsumedLength + Element.size() + 1);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
documentcreateelementcasesensitive.java | 36 * Each call should create a distinct Element node. The 66 Element newElement1; 67 Element newElement2;
|
elementaddnewattribute.java | 32 * to the Element 67 Element testEmployee; 71 testEmployee = (Element) elementList.item(4);
|
elementchangeattributevalue.java | 32 * to the Element. If the "name" is already present, then 40 * element, then its value should be changed to the new one 70 Element testEmployee; 74 testEmployee = (Element) elementList.item(3);
|
elementgetattributenode.java | 66 Element testEmployee; 71 testEmployee = (Element) elementList.item(0);
|
elementgetattributenodenull.java | 67 Element testEmployee; 71 testEmployee = (Element) elementList.item(0);
|
elementgetelementempty.java | 71 Element testEmployee; 77 testEmployee = (Element) elementList.item(3);
|
elementinvalidcharacterexception.java | 69 Element testAddress; 72 testAddress = (Element) elementList.item(0);
|
elementnotfounderr.java | 33 * is not an attribute of the element. 72 Element testAddress; 76 testAddress = (Element) addressElementList.item(4);
|
elementremoveattributenode.java | 65 Element testEmployee; 71 testEmployee = (Element) elementList.item(2);
|
elementreplaceattributewithself.java | 32 * Since the node is not an attribute of another Element, it would 64 Element testEmployee; 69 testEmployee = (Element) elementList.item(2);
|
elementreplaceexistingattribute.java | 32 * attribute to the Element. If the "newAttr" Attr node is 33 * already present in this element, it should replace the 39 * "street", which is already present in this element. The 70 Element testEmployee; 76 testEmployee = (Element) elementList.item(2);
|
elementreplaceexistingattributegevalue.java | 36 * which is already present in this Element. The method 68 Element testEmployee; 74 testEmployee = (Element) elementList.item(2);
|
elementretrieveattrvalue.java | 34 * Retrieve the second address element, then 65 Element testAddress; 69 testAddress = (Element) elementList.item(2);
|
elementsetattributenodenull.java | 37 * "district", which is not part of this Element. The 69 Element testEmployee; 74 testEmployee = (Element) elementList.item(2);
|