HomeSort by relevance Sort by last modified time
    Searched refs:node (Results 676 - 700 of 5153) sorted by null

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridViewRule.java 34 public void onCreate(@NonNull INode node, @NonNull INode parent,
36 super.onCreate(node, parent, insertType);
38 node.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, getFillParentValueName());
39 node.setAttribute(ANDROID_URI, ATTR_NUM_COLUMNS, "3"); //$NON-NLS-1$
ImageButtonRule.java 33 public void onCreate(@NonNull INode node, @NonNull INode parent,
35 super.onCreate(node, parent, insertType);
41 node.editXml("Set Image",
50 node.setAttribute(ANDROID_URI, ATTR_SRC, getSampleImageSrc());
WebViewRule.java 36 public void onCreate(@NonNull INode node, @NonNull INode parent,
38 super.onCreate(node, parent, insertType);
42 node.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, matchParent);
43 node.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, matchParent);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 63 private static final String NO_NODE = "Node with given ID does not exist";
76 public MonkeyCommandReturn query(AccessibilityNodeInfo node, List<String> args);
163 AccessibilityNodeInfo node = sUiTestAutomationBridge.getRootInActiveWindow(); local
166 if (node == null) {
169 String packageName = node.getPackageName().toString();
201 AccessibilityNodeInfo node; local
206 node = getNodeByViewId(command.get(2));
214 node = getNodeByAccessibilityIds(command.get(2), command.get(3));
223 if (node == null) {
228 return getter.query(node, args)
244 AccessibilityNodeInfo node = sUiTestAutomationBridge.getRootInActiveWindow(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognitionException.as 76 /** If this is a tree parser exception, node is set to the node with
79 public var node:Object; variable
92 /** If you are parsing a tree node stream, you will encounter som
125 this.node = nodes.LT(1);
127 var payload:Token = adaptor.getToken(node);
131 // imaginary node; no line/pos info; scan backwards
147 else { // node created from real token
152 else if ( this.node is Tree) {
153 this.line = this.node.line
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognitionException.java 75 /** If this is a tree parser exception, node is set to the node with
78 public Object node; field in class:RecognitionException
91 /** If you are parsing a tree node stream, you will encounter som
125 this.node = nodes.LT(1);
127 Token payload = adaptor.getToken(node);
131 // imaginary node; no line/pos info; scan backwards
147 else { // node created from real token
152 else if ( this.node instanceof Tree) {
153 this.line = ((Tree)this.node).getLine()
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognitionException.js 77 /** If this is a tree parser exception, node is set to the node with
81 node: null,
105 /** If you are parsing a tree node stream, you will encounter som
124 this.node = nodes.LT(1);
126 payload = adaptor.getToken(this.node);
130 // imaginary node; no line/pos info; scan backwards
146 else { // node created from real token
151 else if ( this.node instanceof org.antlr.runtime.tree.Tree) {
152 this.line = this.node.getLine()
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_adapters/
default.js 3 //Node construction
95 exports.detachNode = function (node) {
96 if (node.parentNode) {
97 var idx = node.parentNode.childNodes.indexOf(node);
99 node.parentNode.childNodes.splice(idx, 1);
100 node.parentNode = null;
140 exports.getFirstChild = function (node) {
141 return node.childNodes[0];
144 exports.getChildNodes = function (node) {
    [all...]
  /external/google-breakpad/src/testing/gtest/samples/
sample3-inl.h 46 // QueueNode is a node in a Queue, which consists of an element of
47 // type E and a pointer to the next node.
53 // Gets the element in this node.
56 // Gets the next node in the queue.
61 // Creates a node with a given element value. The next pointer is
85 // 1. Deletes every node.
86 QueueNode<E>* node = head_; local
87 QueueNode<E>* next = node->next();
89 delete node;
90 node = next
    [all...]
  /external/opencv3/3rdparty/jinja2/
parser.py 110 nodes.Node.__init__(rv, 'fi%d' % self._last_identifier, lineno=lineno)
197 node = result = nodes.If(lineno=self.stream.expect('name:if').lineno)
199 node.test = self.parse_tuple(with_condexpr=False)
200 node.body = self.parse_statements(('name:elif', 'name:else',
205 node.else_ = [new_node]
206 node = new_node
209 node.else_ = self.parse_statements(('name:endif',),
212 node.else_ = []
217 node = nodes.Block(lineno=next(self.stream).lineno)
218 node.name = self.stream.expect('name').valu
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample3-inl.h 46 // QueueNode is a node in a Queue, which consists of an element of
47 // type E and a pointer to the next node.
53 // Gets the element in this node.
56 // Gets the next node in the queue.
61 // Creates a node with a given element value. The next pointer is
85 // 1. Deletes every node.
86 QueueNode<E>* node = head_; local
87 QueueNode<E>* next = node->next();
89 delete node;
90 node = next
    [all...]
  /ndk/sources/third_party/googletest/googletest/samples/
sample3-inl.h 46 // QueueNode is a node in a Queue, which consists of an element of
47 // type E and a pointer to the next node.
53 // Gets the element in this node.
56 // Gets the next node in the queue.
61 // Creates a node with a given element value. The next pointer is
85 // 1. Deletes every node.
86 QueueNode<E>* node = head_; local
87 QueueNode<E>* next = node->next();
89 delete node;
90 node = next
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
splay-tree.c 50 /* Deallocate NODE (a member of SP), and all its sub-trees. */
53 splay_tree_delete_helper (splay_tree sp, splay_tree_node node)
58 if (!node)
64 KDEL (node->key);
65 VDEL (node->value);
68 node->key = (splay_tree_key)pending;
69 pending = (splay_tree_node)node;
83 /* active points to a node which has its key and value
201 /* Call FN, passing it the DATA, for every node below NODE, all o
382 splay_tree_node node; local
503 splay_tree_node node; local
534 splay_tree_node node; local
    [all...]
  /developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/AppRestrictionSchema/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/BasicAccessibility/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/BasicGestureDetect/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/BasicImmersiveMode/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.java 56 public void setNext(LogNode node) {
57 mNext = node;

Completed in 1151 milliseconds

<<21222324252627282930>>