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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/annotation/
AnnotationTypeMismatchException.java 30 * Thrown to indicate that a program has attempted to access an element of
45 * The <tt>Method</tt> object for the annotation element.
47 private final Method element; field in class:AnnotationTypeMismatchException
58 * annotation type element and found data type.
60 * @param element the <tt>Method</tt> object for the annotation element
65 public AnnotationTypeMismatchException(Method element, String foundType) {
66 super("Incorrectly typed data found for annotation element " + element
68 this.element = element
77 public Method element() { method in class:AnnotationTypeMismatchException
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
ElementTest.java 29 * Unit tests of {@link Element}.
36 Element element = A.field("privateField"); local
37 assertTrue(element.isPrivate());
38 assertFalse(element.isAbstract());
39 assertFalse(element.isPackagePrivate());
40 assertFalse(element.isProtected());
41 assertFalse(element.isPublic());
42 assertFalse(element.isFinal());
43 assertFalse(element.isStatic())
48 Element element = A.field("packagePrivateField"); local
59 Element element = A.field("protectedField"); local
70 Element element = A.field("publicField"); local
81 Element element = A.field("finalField"); local
88 Element element = A.field("staticField"); local
94 Element element = A.field("volatileField"); local
99 Element element = A.field("transientField"); local
104 Element element = A.constructor(); local
113 Element element = A.method("abstractMethod"); local
121 Element element = A.method("overridableMethod"); local
129 Element element = A.method("privateMethod"); local
139 Element element = A.method("protectedMethod"); local
150 Element element = A.method("publicFinalMethod"); local
159 Element element = A.method("nativeMethod"); local
165 Element element = A.method("synchronizedMethod"); local
170 Element element = A.method("notAnnotatedMethod"); local
219 Element element = new Element(A.class.getDeclaredField(name)); local
227 Element element = new Element(constructor); local
234 Element element = new Element(A.class.getDeclaredMethod(name, parameterTypes)); local
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/validators/
DefaultAccessibilityValidator.java 33 public boolean isApplicable(UiElement element, Action action) {
38 public String validate(UiElement element, Action action) {
39 return isSpeakingNode(element) ? null : "TalkBack cannot speak about it";
43 private static boolean isAccessibilityFocusable(UiElement element) {
44 return isActionableForAccessibility(element)
45 || (isTopLevelScrollItem(element) && isSpeakingNode(element));
48 private static boolean isTopLevelScrollItem(UiElement element) {
49 UiElement parent = element.getParent();
54 private static boolean isActionableForAccessibility(UiElement element) {
    [all...]
ExemptRootValidator.java 27 public boolean isApplicable(UiElement element, Action action) {
28 return element.getParent() == null; // don't check root
32 public String validate(UiElement element, Action action) {
VisibilityValidator.java 27 public boolean isApplicable(UiElement element, Action action) {
32 public String validate(UiElement element, Action action) {
33 return element.isVisible() ? null : "invisible";
  /external/smali/smalidea/src/main/java/org/jf/smalidea/util/
PsiUtil.java 38 public static PsiElement searchBackward(PsiElement element, PsiMatcherExpression matcher,
40 while (!matcher.match(element)) {
41 if (until.match(element)) {
44 PsiElement prev = element.getPrevSibling();
46 prev = element.getParent();
51 element = prev;
53 return element;
56 public static PsiElement searchForward(PsiElement element, PsiMatcherExpression matcher,
58 while (!matcher.match(element)) {
59 if (until.match(element)) {
    [all...]
  /external/parameter-framework/upstream/parameter/include/
ParameterHandle.h 48 CParameterHandle(CConfigurableElement &element, CParameterMgr &parameterMgr)
49 : ElementHandle(element, parameterMgr)
  /external/droiddriver/src/io/appium/droiddriver/actions/
EventAction.java 32 public final boolean perform(UiElement element) {
33 return perform(element.getInjector(), element);
40 * @param element the UiElement to perform the action on
45 protected abstract boolean perform(InputInjector injector, UiElement element);
KeyAction.java 33 protected void maybeCheckFocused(UiElement element) {
34 if (checkFocused && element != null && !element.isFocused()) {
35 throw new ActionException(element + " is not focused");
  /external/autotest/frontend/client/src/autotest/common/ui/
ElementWidget.java 4 import com.google.gwt.user.client.Element;
8 * A simple widget that wraps an HTML element. This allows the element to be
12 protected Element element; field in class:ElementWidget
15 * @param element the HTML element to wrap
17 public ElementWidget(Element element) {
18 this.element = element
20 DOM.removeChild(DOM.getParent(element), element); local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetSetCountUnconditionallyTester.java 31 @Override void setCountCheckReturnValue(E element, int count) {
33 getMultiset().count(element), setCount(element, count));
36 @Override void setCountNoCheckReturnValue(E element, int count) {
37 setCount(element, count);
40 private int setCount(E element, int count) {
41 return getMultiset().setCount(element, count);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SingletonImmutableList.java 35 E element; field in class:SingletonImmutableList
37 SingletonImmutableList(E element) {
38 this.delegate = singletonList(checkNotNull(element));
39 this.element = element;
SingletonImmutableSet.java 36 E element; field in class:SingletonImmutableSet
38 SingletonImmutableSet(E element) {
39 this.element = checkNotNull(element);
49 return Iterators.singletonIterator(element);
54 return element.equals(object);
  /frameworks/rs/driver/runtime/
rs_element.c 5 * Element
9 Element_t *element = (Element_t *)e.p; local
10 if (element == NULL) {
13 return element->mHal.state.fieldsCount;
18 Element_t *element = (Element_t *)e.p; local
19 if (element == NULL || index >= element->mHal.state.fieldsCount) {
24 element->mHal.state.fields[index]
36 Element_t *element = (Element_t *)e.p; local
37 if (element == NULL || index >= element->mHal.state.fieldsCount)
45 Element_t *element = (Element_t *)e.p; local
67 Element_t *element = (Element_t *)e.p; local
76 Element_t *element = (Element_t *)e.p; local
85 Element_t *element = (Element_t *)e.p; local
94 Element_t *element = (Element_t *)e.p; local
103 Element_t *element = (Element_t *)e.p; local
112 Element_t *element = (Element_t *)e.p; local
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
DeletionMethod.kt 18 import javax.lang.model.element.ExecutableElement
21 element: ExecutableElement,
25 ) : ShortcutMethod(element, name, entities, returnCount, parameters)
DaoMethod.kt 19 import javax.lang.model.element.Element
24 data class DaoMethod(val element: Element, val name: String, val dao: Dao)
  /external/adhd/cras/src/common/
array.h 39 /* Define a type for the array given the element type */
44 element_type *element; \
57 (a)->element = (__typeof((a)->element)) \
58 realloc((a)->element, \
60 sizeof((a)->element[0])); \
62 &(a)->element[((a)->count)++]; \
65 /* Append an element with the given value to the array a */
71 /* Append a zero element to the array a and return the pointer to the element */
    [all...]
  /external/guava/guava/src/com/google/common/collect/
SingletonImmutableSet.java 27 * Implementation of {@link ImmutableSet} with exactly one element.
36 final transient E element; field in class:SingletonImmutableSet
46 SingletonImmutableSet(E element) {
47 this.element = Preconditions.checkNotNull(element);
50 SingletonImmutableSet(E element, int hashCode) {
52 this.element = element;
66 return element.equals(target);
70 return Iterators.singletonIterator(element);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitPropertyTester.java 54 String.format("Element must be of type IAdaptable, is %s", //$NON-NLS-1$
58 IJavaElement element; local
60 element = (IJavaElement) receiver;
62 element = JavaCore.create((IResource) receiver);
63 if (element == null) {
67 element= (IJavaElement) ((IAdaptable) receiver).getAdapter(IJavaElement.class);
68 if (element == null) {
71 element = JavaCore.create(resource);
72 if (element == null) {
78 return isJUnitTest(element);
    [all...]
  /external/curl/lib/
fileinfo.c 36 void Curl_fileinfo_dtor(void *user, void *element)
38 struct fileinfo *finfo = element;
  /external/droiddriver/src/io/appium/droiddriver/actions/view/
ViewAction.java 35 public final boolean perform(UiElement element) {
36 return perform(((ViewElement) element).getRawElement(), element);
43 * @param element the UiElement to perform the action on
47 protected abstract boolean perform(View view, UiElement element);
  /external/tensorflow/tensorflow/core/kernels/
batch_util.h 24 // Copies element into the index^th slice of parent (in the 0th dimension).
26 // NOTE(mrry): The `element` argument is taken by value. Use `std::move()`
27 // to move the `element` argument into this function, and the implementation
30 Status CopyElementToSlice(Tensor element, Tensor* parent, int64 index);
32 // Copies the index^th slice of parent (in the 0th dimension) into element.
33 Status CopySliceToElement(const Tensor& parent, Tensor* element, int64 index);
35 // Zero-initializes the tensor `element` using the scalar stored in `padding`.
36 // Both `element` and `padding` must have matching `dtype`.
37 Status SetElementZero(Tensor* element, const Tensor& padding);
39 // Copies `element` into a (0th dimension) slice of `parent`, assumin
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceLabelProvider.java 65 public Image getImage(Object element) {
74 public String getText(Object element) {
75 return getColumnText(element, 0);
89 public boolean isLabelProperty(Object element, String property) {
99 public Image getColumnImage(Object element, int columnIndex) {
101 if (element instanceof ResourceItem) {
102 ResourceItem item = (ResourceItem)element;
112 public String getColumnText(Object element, int columnIndex) {
115 if (element instanceof ResourceType) {
116 return ((ResourceType)element).getDisplayName()
    [all...]
  /external/libmicrohttpd/src/microhttpd/
internal.h 1280 * Insert an element at the head of a DLL. Assumes that head, tail and
1281 * element are structs with prev and next fields.
1285 * @param element element to insert
1287 #define DLL_insert(head,tail,element) do { \
1288 EXTRA_CHECK (NULL == (element)->next); \
1289 EXTRA_CHECK (NULL == (element)->prev); \
1290 (element)->next = (head); \
1291 (element)->prev = NULL; \
1293 (tail) = element; \
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
ListHashCodeTester.java 30 for (E element : getOrderedElements()) {
32 ((element == null) ? 0 : element.hashCode());

Completed in 707 milliseconds

1 2 3 4 5 6 7 8 91011>>