/libcore/luni/src/test/java/tests/org/w3c/dom/ |
GetAttributeNodeNS.java | 24 import org.w3c.dom.Element; 35 * Retrieve the first emp:address element node. The getAttributeNodeNS method 79 Element testAddr; 83 testAddr = (Element) elementList.item(0); 91 Element testAddr; 96 testAddr = (Element) elementList.item(0);
|
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
Element.java | 24 * <p>An Element represents one item within an {@link 25 * android.support.v8.renderscript.Allocation}. An Element is roughly 28 * (equivalent to a float in a kernel)</li> <li>A four-element float vector 31 * integer (equivalent to a char in a kernel)</li> </ul> <p>A complex element is 33 * Elements. From Java code, a complex element contains a list of sub-elements 40 * android.support.v8.renderscript.Element.DataType} and a {@link 41 * android.support.v8.renderscript.Element.DataKind}. The DataType encodes C 42 * type information of an Element, while the DataKind encodes how that Element 45 * DataKind {@link android.support.v8.renderscript.Element.DataKind#USER} canno [all...] |
/cts/tests/tests/rscpp/librscpptest/ |
rs_jni_foreach.cpp | 49 sp<const Type> t = Type::create(mRS, Element::I8(mRS), x, 0, 0); 53 t = Type::create(mRS, Element::U8(mRS), x, 0, 0); 59 t = Type::create(mRS, Element::I8_2(mRS), x, 0, 0); 61 t = Type::create(mRS, Element::U8_2(mRS), x, 0, 0); 67 t = Type::create(mRS, Element::I8_3(mRS), x, 0, 0); 69 t = Type::create(mRS, Element::U8_3(mRS), x, 0, 0); 75 t = Type::create(mRS, Element::I8_4(mRS), x, 0, 0); 77 t = Type::create(mRS, Element::U8_4(mRS), x, 0, 0); 83 t = Type::create(mRS, Element::I16(mRS), x, 0, 0); 85 t = Type::create(mRS, Element::U16(mRS), x, 0, 0) [all...] |
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
ValidationReport.java | 22 import javax.lang.model.element.AnnotationMirror; 23 import javax.lang.model.element.Element; 24 import javax.lang.model.element.ExecutableElement; 39 * <p>A report describes a subject {@link Element}. Callers may choose to add report items about 44 * a reference to the item's element in the message string. It is the responsibility of the caller 51 abstract class ValidationReport<T extends Element> { 75 if (isEnclosedIn(subject(), item.element())) { 78 item.kind(), item.message(), item.element(), item.annotation().get()); 80 messager.printMessage(item.kind(), item.message(), item.element()); [all...] |
SourceFileGenerationException.java | 23 import javax.lang.model.element.Element; 40 private final Optional<? extends Element> associatedElement; 43 Optional<? extends Element> associatedElement) { 50 this(generatedClassNames, cause, Optional.<Element>absent()); 54 Element associatedElement) { 62 public Optional<? extends Element> associatedElement() {
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
BaseObjTest.java | 20 import android.renderscript.Element; 27 Element E = Element.I32(mRS);
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
SetIterationBenchmark.java | 23 import com.google.common.collect.CollectionBenchmarkSampleData.Element; 46 private Set<Element> setToTest; 58 for (Element y : setToTest) {
|
/external/v8/tools/testrunner/local/ |
junit_output.py | 34 self.root = xml.Element("testsuite") 38 testCaseElement = xml.Element("testcase") 42 failureElement = xml.Element("failure")
|
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
InputSource.cpp | 27 status_t Element<audio_source_t>::setIdentifier(audio_source_t identifier) 47 status_t Element<audio_source_t>::set(audio_devices_t devices) 63 audio_devices_t Element<audio_source_t>::get<audio_devices_t>() const
|
Strategy.cpp | 28 status_t Element<routing_strategy>::setIdentifier(routing_strategy identifier) 47 status_t Element<routing_strategy>::set<audio_devices_t>(audio_devices_t devices) 60 audio_devices_t Element<routing_strategy>::get<audio_devices_t>() const
|
/frameworks/base/tools/aapt2/xml/ |
XmlActionExecutor.h | 37 // The actions defined must match and run. If an element is found that does 50 using ActionFuncWithDiag = std::function<bool(Element*, SourcePathDiagnostics*)>; 51 using ActionFunc = std::function<bool(Element*)>; 55 * element with the name `name`. 68 bool Execute(XmlActionExecutorPolicy policy, SourcePathDiagnostics* diag, Element* el) const; 85 * element with the name `name`.
|
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/ |
WhiteBalance.java | 22 import android.renderscript.Element; 32 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS)); 33 mSums = Allocation.createSized(mRS, Element.I32_3(mRS), 256);
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
WhiteBalance.java | 21 import android.support.v8.renderscript.Element; 31 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS)); 32 mSums = Allocation.createSized(mRS, Element.I32_4(mRS), 256);
|
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
WhiteBalance.java | 22 import android.renderscript.Element; 32 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS)); 33 mSums = Allocation.createSized(mRS, Element.I32_3(mRS), 256);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
elementnormalize.java | 32 * depth of the sub-tree underneath this element into a 66 Element root; 68 Element testName; 75 testName = (Element) elementList.item(2);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
nodehasattributes01.java | 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes. 35 * Retreive an element node without attributes. Verify if hasAttributes returns false. 36 * Retreive another element node with attributes. Verify if hasAttributes returns true. 64 Element element; local 69 element = (Element) elementList.item(0); 70 hasAttributes = element.hasAttributes(); 73 element = (Element) elementList.item(0) [all...] |
/prebuilts/go/darwin-x86/src/container/list/ |
list_test.go | 17 func checkListPointers(t *testing.T, l *List, es []*Element) { 36 Prev := (*Element)(nil) 49 Next := (*Element)(nil) 65 checkListPointers(t, l, []*Element{}) 67 // Single element list 69 checkListPointers(t, l, []*Element{e}) 71 checkListPointers(t, l, []*Element{e}) 73 checkListPointers(t, l, []*Element{e}) 75 checkListPointers(t, l, []*Element{}) 82 checkListPointers(t, l, []*Element{e1, e2, e3, e4} [all...] |
/prebuilts/go/linux-x86/src/container/list/ |
list_test.go | 17 func checkListPointers(t *testing.T, l *List, es []*Element) { 36 Prev := (*Element)(nil) 49 Next := (*Element)(nil) 65 checkListPointers(t, l, []*Element{}) 67 // Single element list 69 checkListPointers(t, l, []*Element{e}) 71 checkListPointers(t, l, []*Element{e}) 73 checkListPointers(t, l, []*Element{e}) 75 checkListPointers(t, l, []*Element{}) 82 checkListPointers(t, l, []*Element{e1, e2, e3, e4} [all...] |
/external/autotest/frontend/client/src/autotest/common/ui/ |
RightClickTable.java | 9 import com.google.gwt.user.client.Element; 45 final Element td = getEventTargetCell(Event.as(event.getNativeEvent())); 54 public Element getElement() { 60 protected RowColumn getCellPosition(Element td) { 61 Element tr = DOM.getParent(td); 62 Element body = DOM.getParent(tr);
|
RealHyperlink.java | 3 import com.google.gwt.dom.client.Element; 8 private Element link;
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Element.java | 17 The internal representation of an actual element (not an element type). 18 An Element has an element type, attributes, and a successor Element 23 public class Element { 26 private ElementType theType; // type of element 27 private AttributesImpl theAtts; // attributes of element 28 private Element theNext; // successor of element [all...] |
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
UT_element.java | 20 import android.renderscript.Element; 21 import android.renderscript.Element.DataKind; 22 import android.renderscript.Element.DataType; 26 Element simpleElem; 27 Element complexElem; 69 super("Element", ctx); 73 simpleElem = Element.F32_3(RS);
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
UT_element.java | 22 import android.support.v8.renderscript.Element; 23 import android.support.v8.renderscript.Element.DataKind; 24 import android.support.v8.renderscript.Element.DataType; 28 Element simpleElem; 29 Element complexElem; 71 super("Element", ctx); 75 simpleElem = Element.F32_3(RS);
|
/frameworks/support/lifecycle/compiler/src/main/kotlin/android/arch/lifecycle/ |
elements_ext.kt | 20 import javax.lang.model.element.Element 21 import javax.lang.model.element.ExecutableElement 22 import javax.lang.model.element.Modifier 23 import javax.lang.model.element.PackageElement 25 fun Element.getPackage(): PackageElement = MoreElements.getPackage(this) 27 fun Element.getPackageQName() = getPackage().qualifiedName.toString()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/ |
ImageBuffersForRenderScriptd1new.java | 21 import android.renderscript.Element; 75 renderScript, Element.F32_4(renderScript), 78 renderScript, Element.U8(renderScript), 81 renderScript, Element.U8(renderScript), 84 renderScript, Element.U8(renderScript), 87 renderScript, Element.U8(renderScript), 90 renderScript, Element.F32_4(renderScript), 93 renderScript, Element.F32_4(renderScript),
|