HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 176 - 200 of 515) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/bluetooth/glib/gio/xdgmime/
xdgmimeglob.c 173 XdgGlobHashNode *node; local
181 node = _xdg_glob_hash_node_new ();
182 node->character = character;
183 node->next = glob_hash_node;
184 glob_hash_node = node;
188 node = glob_hash_node;
198 node = prev_node->next;
200 while (node != NULL)
202 if (character < node->character)
204 node = _xdg_glob_hash_node_new ()
283 XdgGlobHashNode *node; local
308 XdgGlobHashNode *node; local
    [all...]
  /external/bluetooth/glib/glib/
gbsearcharray.h 75 /* provide uninitialized space at index for node insertion */
84 * otherwise replace the existing node's contents with key_node
94 * return NULL or exact match node
101 * exact match node, or, if there's no such node, return the
102 * node last visited, which is pretty close to an exact match
110 * return the node where key_node should be inserted (may be one
204 guint8 *node; local
217 node = G_BSEARCH_ARRAY_NODES (barray) + index_ * bconfig->sizeof_node;
218 g_memmove (node + bconfig->sizeof_node, node, (barray->n_nodes - index_) * bconfig->sizeof_node)
227 guint8 *node; local
256 guint8 *node = (guint8 *) g_bsearch_array_lookup (barray, bconfig, key_node); local
268 guint8 *node; local
    [all...]
glist.c 254 GList *node; local
256 node = _g_list_alloc ();
257 node->data = data;
258 node->prev = sibling->prev;
259 node->next = sibling;
260 sibling->prev = node;
261 if (node->prev)
263 node->prev->next = node;
268 g_return_val_if_fail (sibling == list, node);
    [all...]
gslist.c 229 * @sibling: node to insert @data before
230 * @data: data to put in the newly-inserted node
232 * Inserts a node before @sibling containing @data.
251 GSList *node, *last = NULL; local
253 for (node = slist; node; last = node, node = last->next)
254 if (node == sibling)
258 node = _g_slist_alloc ()
    [all...]
  /external/bluetooth/glib/gobject/
gboxed.c 288 BoxedNode key, *node; local
291 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
292 node->free (value->data[0].v_pointer);
302 BoxedNode key, *node; local
305 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
306 dest_value->data[0].v_pointer = node->copy (src_value->data[0].v_pointer);
324 BoxedNode key, *node; local
327 node = g_bsearch_array_lookup (boxed_bsa, &boxed_bconfig, &key);
339 value->data[0].v_pointer = node->copy (collect_values[0].v_pointer);
362 BoxedNode key, *node; local
461 BoxedNode key, *node; local
525 BoxedNode key, *node; local
585 BoxedNode key, *node; local
    [all...]
  /external/chromium/base/json/
json_reader.cc 185 scoped_ptr<Value> node; local
193 node.reset(Value::CreateNullValue());
197 node.reset(Value::CreateBooleanValue(true));
201 node.reset(Value::CreateBooleanValue(false));
205 node.reset(DecodeNumber(token));
206 if (!node.get())
211 node.reset(DecodeString(token));
212 if (!node.get())
221 node.reset(new ListValue());
226 static_cast<ListValue*>(node.get())->Append(array_node)
    [all...]
  /external/chromium/base/third_party/xdg_mime/
xdgmimeglob.c 173 XdgGlobHashNode *node; local
181 node = _xdg_glob_hash_node_new ();
182 node->character = character;
183 node->next = glob_hash_node;
184 glob_hash_node = node;
188 node = glob_hash_node;
198 node = prev_node->next;
200 while (node != NULL)
202 if (character < node->character)
204 node = _xdg_glob_hash_node_new ()
283 XdgGlobHashNode *node; local
308 XdgGlobHashNode *node; local
    [all...]
  /external/libpcap/
nametoaddr.c 389 u_int node, area; local
391 if (sscanf(s, "%d.%d", &area, &node) != 2)
395 *addr |= (node & NODEMASK);
  /external/libxml2/
error.c 251 xmlNodePtr node; local
268 node = err->node;
273 if ((node != NULL) && (node->type == XML_ELEMENT_NODE))
274 name = node->name;
449 xmlNodePtr node = (xmlNodePtr) nod; local
512 } else if ((node != NULL) && (file == NULL)) {
515 if ((node->doc != NULL) && (node->doc->URL != NULL))
    [all...]
  /external/qemu/android/
config.c 36 AConfig *node; local
38 for(node = root->first_child; node; node = node->next) {
39 if(!strcmp(node->name, name)) return node;
43 node = (AConfig*) calloc(sizeof(AConfig), 1);
44 node->name = name;
45 node->value = ""
119 AConfig *node = _aconfig_find(root, name, 1); local
    [all...]
  /external/qemu/android/skin/
file.c 49 AConfig* node,
52 const char* img = aconfig_str(node, "image", NULL);
53 int x = aconfig_int(node, "x", 0);
54 int y = aconfig_int(node, "y", 0);
87 skin_display_init_from( SkinDisplay* display, AConfig* node )
89 display->rect.pos.x = aconfig_int(node, "x", 0);
90 display->rect.pos.y = aconfig_int(node, "y", 0);
91 display->rect.size.w = aconfig_int(node, "width", 0);
92 display->rect.size.h = aconfig_int(node, "height", 0);
93 display->rotation = aconfig_unsigned(node, "rotation", SKIN_ROTATION_0)
300 AConfig* node; local
351 AConfig* node; local
488 AConfig* node; local
616 AConfig* node; local
    [all...]
keyboard.c 544 AConfig* node = aconfig_find( aconfig, "keyboard" ); local
545 if (node != NULL) {
546 charmap_name = aconfig_str(node, "charmap", charmap_name);
keyset.c 386 AConfig* node = root->first_child;; local
391 for ( ; node != NULL; node = node->next )
397 command = skin_key_command_from_str( node->name, -1 );
399 D( "ignoring unknown keyset command '%s'", node->name );
402 p = (char*)node->value;
419 keys, node->name );
  /external/skia/src/views/
SkListWidget.cpp 428 void SkListView::onInflate(const SkDOM& dom, const SkDOM::Node* node)
430 this->INHERITED::onInflate(dom, node);
434 if (dom.findBool(node, "scrollBar", &hasScrollBar))
438 const SkDOM::Node* child;
440 if ((child = dom.getFirstChild(node, "bindings")) != NULL)
545 const SkDOM::Node* node = dom.build(doc, len); local
546 SkASSERT(node);
547 const SkDOM::Node* child;
    [all...]
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 729 nodeID node; local
736 node = fst->FSMarc_list[i].to_node;
737 if (node == fst->end_node) continue;
739 for (j = fst->FSMnode_list[node].un_ptr.first_next_arc; j != MAXarcID; j = arc->linkl_next_arc)
  /external/srec/srec/include/
hmm_desc.h 124 struct tree_branch_info node; member in union:__anon7437
  /external/tcpdump/
print-decnet.c 825 { UC_NOSUCHNODE, "unrecognized node name" },
826 { DI_SHUT, "node is shutting down" },
833 { UC_INVNODEFORMAT, "invalid node name format" },
834 { UC_LOCALSHUT, "local node shutting down" },
840 { UC_UNREACHABLE, "node unreachable" },
860 int node = dnaddr & NODEMASK; local
865 snprintf(str, siz, "%d.%d", area, node);
  /external/v8/src/
ast.cc 47 // All the Accept member functions for each syntax tree node type.
59 // Implementation of other node functionality.
260 RegExpTree* node = nodes->at(i); local
261 if (node->IsAnchored()) { return true; }
262 if (node->max_match() > 0) { return false; }
479 RegExpTree* node = nodes->at(i); local
480 min_match_ += node->min_match();
481 int node_max_match = node->max_match();
485 max_match_ += node->max_match();
  /external/webkit/WebCore/accessibility/
AXObjectCache.cpp 120 // get the focused node in the page
122 Node* focusedNode = focusedDocument->focusedNode();
162 bool AXObjectCache::nodeIsAriaType(Node* node, String role)
164 if (!node || !node->isElementNode())
167 return equalIgnoringCase(static_cast<Element*>(node)->getAttribute(roleAttr), role);
178 Node* node = renderer->node(); local
    [all...]
AXObjectCache.h 46 class Node;
54 Node* node; member in struct:WebCore::TextMarkerData
84 // Called by a node when text or a text equivalent (e.g. alt) attribute is changed.
90 void handleScrolledToAnchor(const Node* anchorNode);
142 bool nodeIsAriaType(Node*, String role);
154 inline void AXObjectCache::handleScrolledToAnchor(const Node*) { }
  /external/webkit/WebCore/bindings/v8/
DOMDataStore.h 179 class IntrusiveDOMWrapperMap : public AbstractWeakReferenceMap<Node, v8::Object> {
182 : AbstractWeakReferenceMap<Node, v8::Object>(callback) { }
184 virtual v8::Persistent<v8::Object> get(Node* obj)
190 virtual void set(Node* obj, v8::Persistent<v8::Object> wrapper)
199 virtual bool contains(Node* obj)
209 virtual bool removeIfPresent(Node* key, v8::Persistent<v8::Data> value);
225 Node* node = V8Node::toNative(*target); local
226 ASSERT(node);
227 node->setWrapper(target)
232 Node* node = V8Node::toNative(*entry); local
241 Node* node = V8Node::toNative(*entry); local
    [all...]
V8GCController.cpp 106 typedef HashMap<Node*, v8::Object*> DOMNodeMap;
132 class EnsureWeakDOMNodeVisitor : public DOMWrapperMap<Node>::Visitor {
134 void visitDOMWrapper(Node* object, v8::Persistent<v8::Object> wrapper)
143 // A map from a DOM node to its JS wrapper, the wrapper
218 GrouperItem(uintptr_t groupId, Node* node, v8::Persistent<v8::Object> wrapper)
220 , m_node(node)
226 Node* node() const { return m_node; } function in class:WebCore::GrouperItem
231 Node* m_node
    [all...]
  /external/webkit/WebCore/editing/
VisiblePosition.cpp 51 VisiblePosition::VisiblePosition(Node *node, int offset, EAffinity affinity)
54 init(Position(node, offset), affinity);
109 if (!p.node())
114 for (RenderObject* r = p.node()->renderer(); r; r = r->parent()) {
224 p = Position(renderer->node(), offset);
251 if (!p.node())
256 for (RenderObject* r = p.node()->renderer(); r; r = r->parent()) {
367 p = Position(renderer->node(), offset);
396 Node* highestRoot = highestEditableRoot(deepEquivalent())
461 Node* node = position.node(); local
519 Node* node = pos.node(); local
536 Node* node = m_deepPosition.node(); local
    [all...]
  /external/webkit/WebCore/html/
HTMLTokenizer.cpp 477 RefPtr<Node> node = processToken(); local
479 if (node && m_scriptingPermission == FragmentScriptingNotAllowed) {
481 node->remove(ec);
482 node = 0;
485 String scriptString = node ? node->textContent() : "";
    [all...]
  /external/webkit/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 46 #include "Node.h"
413 PassRefPtr<LegacyWebArchive> LegacyWebArchive::create(Node* node)
415 ASSERT(node);
416 if (!node)
419 Document* document = node->document();
424 Vector<Node*> nodeList;
425 String markupString = createMarkup(node, IncludeNode, &nodeList);
426 Node::NodeType nodeType = node->nodeType()
502 Node* node = nodes[i]; local
    [all...]

Completed in 1532 milliseconds

1 2 3 4 5 6 78 91011>>