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

<<31323334353637383940>>

  /prebuilts/tools/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 84 public boolean visit(StringLiteral node) {
85 if (node.getLiteralValue().equals(mOldString)) {
91 useGetResource = examineVariableDeclaration(node) ||
92 examineMethodInvocation(node) ||
93 examineAssignment(node);
102 Expression context = methodHasContextArgument(node);
103 if (context == null && !isClassDerivedFromContext(node)) {
107 context = findContextFieldOrMethod(node);
129 mRewriter.replace(node, newNode, editGroup);
131 return super.visit(node);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 48 * The debug listener has to deal with tree node IDs for which it did
49 * not see a createNode event. A single &lt;unknown&gt; node is sufficient even
71 object node = adaptor.Create( payload );
72 dbg.CreateNode( node, payload );
73 return node;
79 object node = adaptor.ErrorNode( input, start, stop, e );
80 if ( node != null )
82 dbg.ErrorNode( node );
84 return node;
140 object node = adaptor.Nil()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 31 import org.w3c.dom.Node;
132 * @param pos Node in the tree where to start traversal
136 public void traverse(Node pos) throws org.xml.sax.SAXException
141 Node top = pos;
147 Node nextNode = pos.getFirstChild();
187 * @param pos Node in the tree where to start traversal
188 * @param top Node in the tree where to end traversal
192 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException
201 Node nextNode = pos.getFirstChild()
    [all...]
  /external/skia/src/views/
SkViewPriv.cpp 18 void SkView::Artist::inflate(const SkDOM& dom, const SkDOM::Node* node)
20 SkASSERT(node);
21 this->onInflate(dom, node);
24 void SkView::Artist::onInflate(const SkDOM&, const SkDOM::Node*)
64 void SkView::Layout::inflate(const SkDOM& dom, const SkDOM::Node* node)
66 SkASSERT(node);
67 this->onInflate(dom, node);
70 void SkView::Layout::onInflate(const SkDOM&, const SkDOM::Node*)
    [all...]
  /external/snakeyaml/src/test/java/examples/
CustomBeanResolverTest.java 25 import org.yaml.snakeyaml.nodes.Node;
59 public Object construct(Node node) {
60 if (node.getType().equals(BigDecimal.class)) {
61 String val = (String) constructScalar((ScalarNode) node);
66 } else if (node.getType().isAssignableFrom(double.class)) {
67 String val = (String) constructScalar((ScalarNode) node);
72 return super.construct(node);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ImplicitResolverTest.java 29 import org.yaml.snakeyaml.nodes.Node;
50 public Object construct(Node node) {
51 String val = (String) constructScalar((ScalarNode) node);
57 protected Construct getConstructor(Node node) {
58 if (CFG.equals(node.getTag())) {
59 node.setUseClassConstructor(false);
61 return super.getConstructor(node);
  /external/toybox/toys/other/
makedevs.c 56 char type=0, user[64], group[64], *node, *ptr = line; local
66 node = ptr;
84 while (*node == '/') node++; // using relative path
88 snprintf(toybuf, sizeof(toybuf), "%.999s%u", node, st_val + i);
90 } else ptr = node;
103 perror_msg("line %d: can't create node '%s'", line_no, ptr);
  /external/v8/src/compiler/
change-lowering.h 27 Reduction Reduce(Node* node) final;
30 Node* HeapNumberValueIndexConstant();
31 Node* SmiMaxValueConstant();
32 Node* SmiShiftBitsConstant();
34 Node* AllocateHeapNumberWithValue(Node* value, Node* control);
35 Node* ChangeInt32ToFloat64(Node* value)
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
RenderNodeTests.cpp 39 EXPECT_TRUE(child->hasParents()) << "Child node has no parent";
40 EXPECT_FALSE(parent->hasParents()) << "Root node shouldn't have any parents";
47 EXPECT_FALSE(parent->hasParents()) << "Root node shouldn't have any parents";
52 EXPECT_FALSE(parent->hasParents()) << "Root node shouldn't have any parents";
70 auto node = TestUtils::createNode(0, 0, 200, 400, local
75 TestUtils::syncHierarchyPropertiesAndDisplayList(node);
78 TestUtils::recordNode(*node, [&](TestCanvas& canvas) {
84 TestUtils::syncHierarchyPropertiesAndDisplayList(node);
87 TestUtils::recordNode(*node, [](TestCanvas& canvas) {});
89 TestUtils::syncHierarchyPropertiesAndDisplayList(node);
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ExploreByTouchHelper.java 56 /** Virtual node identifier value for invalid nodes. */
77 /** Node provider that handles creating nodes and performing actions. */
105 * @return The accessibility node provider for this helper.
263 * Constructs and returns an {@link android.view.accessibility.AccessibilityEvent} for the host node.
312 * construct a node.
329 * @return An {@link android.view.accessibility.AccessibilityNodeInfo} for the parent node.
332 final AccessibilityNodeInfo node = AccessibilityNodeInfo.obtain(mView); local
333 mView.onInitializeAccessibilityNodeInfo(node);
340 node.addChild(mView, childVirtualViewId);
343 return node;
375 final AccessibilityNodeInfo node = AccessibilityNodeInfo.obtain(); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node):
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
122 def transform(self, node, results):
137 results = self.match(node)
139 self.transform(node, results)
fix_itertools_imports.py 14 def transform(self, node, results):
35 node.changed()
54 p = node.prefix
55 node = BlankLine()
56 node.prefix = p
57 return node
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node):
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
122 def transform(self, node, results):
137 results = self.match(node)
139 self.transform(node, results)
fix_itertools_imports.py 14 def transform(self, node, results):
35 node.changed()
54 p = node.prefix
55 node = BlankLine()
56 node.prefix = p
57 return node
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node):
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
122 def transform(self, node, results):
137 results = self.match(node)
139 self.transform(node, results)
fix_itertools_imports.py 14 def transform(self, node, results):
35 node.changed()
54 p = node.prefix
55 node = BlankLine()
56 node.prefix = p
57 return node
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node):
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
122 def transform(self, node, results):
137 results = self.match(node)
139 self.transform(node, results)
fix_itertools_imports.py 14 def transform(self, node, results):
35 node.changed()
54 p = node.prefix
55 node = BlankLine()
56 node.prefix = p
57 return node
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeContentProvider.java 46 * Returns all the UI node children of the given element or null if not the right kind
51 UiElementNode node = (UiElementNode) parentElement; local
52 return node.getUiChildren().toArray();
58 * Returns the parent of a given UI node or null if it's a root node or it's not the
59 * right kind of node. */
63 UiElementNode node = (UiElementNode) element; local
64 return node.getUiParent();
70 * Returns true if the UI node has any UI children nodes. */
74 UiElementNode node = (UiElementNode) element local
    [all...]
  /external/jemalloc/src/
chunk.c 142 chunk_register(const void *chunk, const extent_node_t *node)
145 assert(extent_node_addr_get(node) == chunk);
147 if (rtree_set(&chunks_rtree, (uintptr_t)chunk, node))
150 size_t size = extent_node_size_get(node);
169 chunk_deregister(const void *chunk, const extent_node_t *node)
176 size_t size = extent_node_size_get(node);
206 extent_node_t *node; local
212 * Cached chunks use the node linkage embedded in their headers, in
228 node = extent_tree_ad_search(chunks_ad, &key);
230 node = chunk_first_best_fit(arena, chunks_szad, chunks_ad
481 extent_node_t *node, *prev; local
    [all...]
  /developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/common/logger/
LogWrapper.java 26 // For piping: The next node to receive Log data after this one has done its work.
39 public void setNext(LogNode node) {
40 mNext = node;
70 // If this isn't the last node in the chain, move things along.
  /developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/java/com/example/android/common/logger/
LogWrapper.java 26 // For piping: The next node to receive Log data after this one has done its work.
39 public void setNext(LogNode node) {
40 mNext = node;
70 // If this isn't the last node in the chain, move things along.
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/common/logger/
LogWrapper.java 26 // For piping: The next node to receive Log data after this one has done its work.
39 public void setNext(LogNode node) {
40 mNext = node;
70 // If this isn't the last node in the chain, move things along.
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/Application/src/main/java/com/example/android/common/logger/
LogWrapper.java 26 // For piping: The next node to receive Log data after this one has done its work.
39 public void setNext(LogNode node) {
40 mNext = node;
70 // If this isn't the last node in the chain, move things along.

Completed in 1559 milliseconds

<<31323334353637383940>>