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

<<41424344454647484950>>

  /development/ndk/platforms/android-23/include/android/
multinetwork.h 95 * - either |node| or |service| may be NULL, but not both
104 const char *node, const char *service,
  /development/ndk/platforms/android-3/include/linux/
cpu.h 16 #include <linux/node.h>
  /device/huawei/angler/camera/QCamera2/stack/common/
cam_list.h 66 struct cam_list *node)
68 item->next = node;
69 item->prev = node->prev;
71 node->prev = item;
  /device/lge/bullhead/camera/QCamera2/stack/common/
cam_list.h 66 struct cam_list *node)
68 item->next = node;
69 item->prev = node->prev;
71 node->prev = item;
  /device/moto/shamu/camera/QCamera2/stack/common/
cam_list.h 64 struct cam_list *node)
66 item->next = node;
67 item->prev = node->prev;
69 node->prev = item;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisIterator.java 24 * This class iterates over a single XPath Axis, and returns node handles.
33 * Get the next node in the iteration.
35 * @return The next node handle in the iteration, or END.
41 * Resets the iterator to the last start node.
55 * @return The position of the current node in the set, as defined by XPath.
60 * Remembers the current node for the next call to gotoMark().
65 * Restores the current node remembered by setMark().
73 * @param node Sets the root of the iteration.
77 public DTMAxisIterator setStartNode(int node);
83 * @return The root node of the iteration
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncNormalizeSpace.java 72 int node = getArg0AsNode(xctxt); local
73 if(DTM.NULL != node)
75 DTM dtm = xctxt.getDTM(node);
76 dtm.dispatchCharactersEvents(node, handler, true);
  /external/bison/src/
symlist.h 33 * Whether this node contains a symbol, a semantic type, a \c <*>, or a
98 \pre For every node \c n in the list, <tt>n->content_type =
102 /** Prepend \c node to \c list. */
103 symbol_list *symbol_list_prepend (symbol_list *list, symbol_list *node);
118 /* Check whether the node is a border element of a rule. */
119 bool symbol_list_null (symbol_list *node);
121 /** Set the \c \%destructor for \c node as \c code at \c loc. */
122 void symbol_list_destructor_set (symbol_list *node,
125 /** Set the \c \%printer for \c node as \c code at \c loc. */
126 void symbol_list_printer_set (symbol_list *node,
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 29 ExplodedNode *node; member in class:clang::ento::WorkListUnit
37 : node(N),
43 : node(N),
48 /// Returns the node associated with the worklist unit.
49 ExplodedNode *getNode() const { return node; }
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.h 49 // Builds a proc path for a certain pid for a node (/proc/<pid>/<node>).
51 // result. |node| is the final node without any slashes. Returns true on
53 virtual bool BuildProcPath(char* path, pid_t pid, const char* node) const;
  /external/icu/icu4c/source/common/
ucharstrieiterator.cpp 64 // Pending linear-match node, append remaining UChars to str_.
109 // the branch node.
126 // We only get here if we started in a pending linear-match node
131 int32_t node=*pos++; local
132 if(node>=kMinValueLead) {
134 pos=skipNodeValue(pos, node);
135 node&=kNodeTypeMask;
139 UBool isFinal=(UBool)(node>>15);
141 value_=readValue(pos, node&0x7fff);
143 value_=readNodeValue(pos, node);
197 int32_t node=*pos++; local
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
BodyDeclarationLocator.java 27 boolean matches(BodyDeclaration node);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
ModifyStringLiterals.java 46 public boolean visit(StringLiteral node) {
47 String literalValue = node.getLiteralValue();
51 StringLiteral newLiteral = node.getAST().newStringLiteral();
53 rewrite.replace(node, newLiteral, null /* editGorup */);
  /external/iproute2/lib/
dnet_pton.c 43 u_int16_t node = 0; local
49 pos = dnet_num(src + pos + 1, &node);
50 if ((pos == 0) || (node > 1023))
53 addr = dn_htons((area << 10) | node);
ipx_pton.c 46 static int ipx_getnode(u_int8_t *node, const char *str)
54 node[i] = (u_int8_t)tmp;
55 node[i] <<= 4;
58 node[i] |= (u_int8_t)tmp;
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
ParserException.java 5 import com.google.clearsilver.jsilver.syntax.node.*;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
XTagXmlResourceLoader.java 9 import org.w3c.dom.Node;
46 Node node = items.item( i ); local
47 String name = node.getAttributes().getNamedItem( "name" ).getNodeValue();
48 processNode( node, name, isSystem );
69 protected abstract void processNode( Node node, String name, boolean isSystem );
XpathResourceXmlLoader.java 4 import org.w3c.dom.Node;
25 Node node = nodes.item(i); local
26 String name = node.getAttributes().getNamedItem("name").getNodeValue();
27 processNode(node, name, isSystem);
31 protected abstract void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructor.java 32 import org.yaml.snakeyaml.nodes.Node;
48 protected Object constructCompactFormat(ScalarNode node, CompactData data) {
50 Object obj = createInstance(node, data);
59 protected Object createInstance(ScalarNode node, CompactData data) throws Exception {
135 protected Construct getConstructor(Node node) {
136 if (node instanceof MappingNode) {
137 MappingNode mnode = (MappingNode) node;
141 Node key = tuple.getKeyNode();
149 } else if (node instanceof ScalarNode)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/serializer/
AnchorGeneratorTest.java 21 import org.yaml.snakeyaml.nodes.Node;
61 public String nextAnchor(Node node) {
62 if (node.getTag() == Tag.SEQ)
63 return "list-" + super.nextAnchor(node);
65 return super.nextAnchor(node);
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.h 48 #define DECLARE_VISIT(type) void Visit##type(type* node) override;
65 void VisitIfNotNull(AstNode* node) {
66 if (node != nullptr) Visit(node);
js-global-object-specialization.h 44 Reduction Reduce(Node* node) final;
47 Reduction ReduceJSLoadGlobal(Node* node);
48 Reduction ReduceJSStoreGlobal(Node* node);
50 // Retrieve the global object from the given {node} if known.
51 MaybeHandle<JSGlobalObject> GetGlobalObject(Node* node);
source-position.cc 7 #include "src/compiler/node-aux-data.h"
18 void Decorate(Node* node) final {
19 source_positions_->table_.Set(node, source_positions_->current_position_);
48 SourcePosition SourcePositionTable::GetSourcePosition(Node* node) const {
49 return table_.Get(node);
  /frameworks/base/libs/hwui/tests/unit/
LeakCheckTests.cpp 33 auto node = TestUtils::createNode(0, 0, 100, 100, local
47 frameBuilder.deferRenderNode(*TestUtils::getSyncedNode(node));
53 auto node = TestUtils::createNode(0, 0, 200, 200, local
64 frameBuilder.deferRenderNode(*TestUtils::getSyncedNode(node));
  /frameworks/base/tools/aapt2/
public_attr_map.py 31 for node in tree.iter('public'):
32 if node.get('type') == 'attr':
33 sdkLevel = findSdkLevelForAttribute(node.get('id', '0'))
35 attrs.append("{{ u\"{}\", {} }}".format(node.get('name'), sdkLevel))

Completed in 1276 milliseconds

<<41424344454647484950>>