| /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/ |
| ftoutln.c | 609 FT_ListNode node; local 619 node = library->renderers.head; 637 &node );
|
| /external/qemu/android/ |
| config-file.c | 38 AConfig *node; local 40 for(node = root->first_child; node; node = node->next) { 41 if(!strcmp(node->name, name)) return node; 45 node = (AConfig*) calloc(sizeof(AConfig), 1); 46 node->name = name; 47 node->value = "" 121 AConfig *node = _aconfig_find(root, name, 1); local [all...] |
| looper-generic.c | 294 GLoopTimer* node = *pnode; local 295 if (node == NULL || node->deadline > deadline) 297 pnode = &node->activeNext;
|
| /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) 317 AConfig* node; local 368 AConfig* node; local 508 AConfig* node; local 651 AConfig* node; local [all...] |
| 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/qemu/include/qom/ |
| cpu.h | 78 QTAILQ_ENTRY(CPUState) node; /* next CPU sharing TB cache */ member in struct:CPUState 98 #define CPU_NEXT(cpu) QTAILQ_NEXT(cpu, node) 99 #define CPU_FOREACH(cpu) QTAILQ_FOREACH(cpu, &cpus, node) 101 QTAILQ_FOREACH_SAFE(cpu, &cpus, node, next_cpu)
|
| object.h | 327 QTAILQ_ENTRY(ObjectProperty) node; member in struct:ObjectProperty [all...] |
| /external/regex-re2/re2/ |
| onepass.cc | 198 // Compute a node pointer. 388 // Limit max node count to 65000 as a conservative estimate to 389 // avoid overflowing 16-bit node index in encoding. 415 OneState* node = IndexToNode(nodes, statesize, nodeindex); local 420 node->action[b] = kImpossible; 421 node->matchcond = kImpossible; 453 << StringPrintf("Not OnePass: hit node limit %d > %d", 468 uint32 act = node->action[b]; 471 node->action[b] = newact; 488 uint32 act = node->action[b] 576 OneState* node = IndexToNode(nodes, statesize, nodeindex); local [all...] |
| /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
| MenuLoader.java | 11 import org.w3c.dom.Node; 48 Node node = childNodes.item(i); local 49 processNode(node, parent); 53 private void processNode(Node node, MenuNode parent) { 54 String name = node.getNodeName(); 55 NamedNodeMap attributes = node.getAttributes(); 60 Node attr = attributes.item(i); 68 NodeList children = node.getChildNodes() [all...] |
| /external/sepolicy/tools/ |
| sepolicy-analyze.c | 346 avtab_ptr_t node; local 382 for (node = avtab_search_node(&policydb->te_avtab, &avkey); 383 node != NULL; 384 node = avtab_search_node_next(node, avkey.specified)) { 385 uint32_t perms = node->datum.data & d->data; 386 if ((attrib1 && perms == node->datum.data) || 394 display_allow(policydb, &node->key, i, node->datum.data);
|
| /external/sfntly/cpp/src/test/tinyxml/ |
| tinyxml.cpp | 149 TiXmlNode* node = firstChild; local 152 while ( node ) 154 temp = node; 155 node = node->next; 171 TiXmlNode* node = firstChild; local 174 while ( node ) 176 temp = node; 177 node = node->next 222 TiXmlNode* node = addThis.Clone(); local 242 TiXmlNode* node = addThis.Clone(); local 275 TiXmlNode* node = addThis.Clone(); local 312 TiXmlNode* node = withThis.Clone(); local 363 const TiXmlNode* node; local 375 const TiXmlNode* node; local 415 const TiXmlNode* node; local 427 const TiXmlNode* node; local 441 TiXmlAttribute* node = attributeSet.Find( str ); local 454 const TiXmlNode* node; local 469 const TiXmlNode* node; local 484 const TiXmlNode* node; local 499 const TiXmlNode* node; local 514 const TiXmlNode* node; local 570 TiXmlAttribute* node = attributeSet.First(); local 579 const TiXmlAttribute* node = attributeSet.Find( name ); local 672 const TiXmlAttribute* node = attributeSet.Find( name ); local 685 const TiXmlAttribute* node = attributeSet.Find( name ); local 821 TiXmlNode* node; local 868 TiXmlNode* node = 0; local [all...] |
| /external/smack/src/org/jivesoftware/smackx/entitycaps/cache/ |
| SimpleDirectoryPersistentCache.java | 42 * to store the Caps information for every known node. Every node is represented 75 * @param filenameEncoder Encodes the node string into a filename. 88 public void addDiscoverInfoByNodePersistent(String node, DiscoverInfo info) { 89 String filename = filenameEncoder.encode(node); 103 String node = filenameEncoder.decode(f.getName()); local 108 EntityCapsManager.addDiscoverInfoByNode(node, info);
|
| /external/smack/src/org/jivesoftware/smackx/packet/ |
| AdHocCommandData.java | 47 private String node;
field in class:AdHocCommandData 75 buf.append(" node=\"").append(node).append("\"");
161 * @return the node.
164 return node;
167 public void setNode(String node) {
168 this.node = node;
|
| DiscoverInfo.java | 48 private String node; field in class:DiscoverInfo 62 // Set node 153 * Returns the node attribute that supplements the 'jid' attribute. A node is merely 156 * Node attributes SHOULD be used only when trying to provide or query information which 159 * @return the node attribute that supplements the 'jid' attribute 162 return node; 166 * Sets the node attribute that supplements the 'jid' attribute. A node is merely 169 * Node attributes SHOULD be used only when trying to provide or query information which [all...] |
| MultipleAddresses.java | 51 * @param node used to specify a sub-addressable unit at a particular JID, corresponding to 52 * a Service Discovery node. 57 public void addAddress(String type, String jid, String node, String desc, boolean delivered, 62 address.setNode(node); 124 private String node; field in class:MultipleAddresses.Address 146 return node; 149 private void setNode(String node) { 150 this.node = node; 186 if (node != null) [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:__anon34830
|
| /external/strace/ |
| mem.c | 507 int node; local 510 if (umove(tcp, nodeuser, &node) < 0) { 514 tprintf("%#x", node);
|
| /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/valgrind/main/callgrind/ |
| clo.c | 81 /* node of compressed trie search structure */ 125 config_node* node = (config_node*) CLG_MALLOC("cl.clo.nc.1", local 130 node->name[i] = name[i]; 132 node->name[i] = 0; 134 node->length = length; 135 node->config = 0; 137 node->sub_node[i] = 0; 138 node->next = 0; 139 node->wild_char = 0; 140 node->wild_star = 0 [all...] |
| /external/wpa_supplicant_8/hs20/client/ |
| spp_client.c | 32 static char * get_spp_attr_value(struct xml_node_ctx *ctx, xml_node_t *node, 35 return xml_node_get_attr_value_ns(ctx, node, SPP_NS_URI, attr_name); 39 static int hs20_spp_validate(struct hs20_osu_client *ctx, xml_node_t *node, 47 if (!xml_node_is_element(xctx, node)) 50 name = xml_node_get_localname(xctx, node); 62 ret = xml_validate(xctx, node, "spp.xsd", &err); 76 xml_node_t *node; local 93 node = xml_node_create_text(ctx, parent, ns, "moContainer", str); 94 if (node) 95 xml_node_add_attr(ctx, node, ns, "moURN", urn) 143 xml_node_t *node, *parent, *tnds, *unode; local 325 xml_node_t *node, *ret_node; local 433 xml_node_t *node, *ret_node; local 471 xml_node_t *node, *ret_node; local 862 xml_node_t *spp_node, *node; local 889 xml_node_t *node, *ret_node; local [all...] |
| /external/wpa_supplicant_8/src/utils/ |
| xml-utils.c | 19 xml_node_t *node; local 26 node = root; 27 xml_node_for_each_sibling(ctx, node) { 28 xml_node_for_each_check(ctx, node); 29 name = xml_node_get_localname(ctx, node); 34 if (node == NULL) 38 return get_node_uri_iter(ctx, xml_node_first_child(ctx, node), 42 return node; 50 xml_node_t *node; local 56 node = get_node_uri_iter(ctx, root, search) 67 xml_node_t *node; local 93 xml_node_t *node; local 109 xml_node_t *node; local 125 xml_node_t *node; local 230 xml_node_t *node; local 264 xml_node_t *node; local 281 xml_node_t *node; local 430 xml_node_t *node; local [all...] |
| xml_libxml2.c | 53 int xml_validate(struct xml_node_ctx *ctx, xml_node_t *node, 70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1); 115 int xml_validate_dtd(struct xml_node_ctx *ctx, xml_node_t *node, 131 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1); 167 void xml_node_free(struct xml_node_ctx *ctx, xml_node_t *node) 169 xmlFreeNode((xmlNodePtr) node); 173 xml_node_t * xml_node_get_parent(struct xml_node_ctx *ctx, xml_node_t *node) 175 return (xml_node_t *) ((xmlNodePtr) node)->parent; 182 xmlNodePtr node; local 187 node = xmlDocGetRootElement(doc) 260 xmlNodePtr node; local 282 xmlNodePtr node; local 293 xmlNodePtr node; local 304 xmlNodePtr node; local [all...] |
| /frameworks/av/services/audiopolicy/ |
| AudioPolicyEffects.cpp | 388 size_t AudioPolicyEffects::readParamValue(cnode *node, 393 if (strncmp(node->name, SHORT_TAG, sizeof(SHORT_TAG) + 1) == 0) { 395 *(short *)((char *)param + pos) = (short)atoi(node->value); 398 } else if (strncmp(node->name, INT_TAG, sizeof(INT_TAG) + 1) == 0) { 400 *(int *)((char *)param + pos) = atoi(node->value); 403 } else if (strncmp(node->name, FLOAT_TAG, sizeof(FLOAT_TAG) + 1) == 0) { 405 *(float *)((char *)param + pos) = (float)atof(node->value); 408 } else if (strncmp(node->name, BOOL_TAG, sizeof(BOOL_TAG) + 1) == 0) { 410 if (strncmp(node->value, "false", strlen("false") + 1) == 0) { 417 } else if (strncmp(node->name, STRING_TAG, sizeof(STRING_TAG) + 1) == 0) 499 cnode *node = root->first_child; local 517 cnode *node = root->first_child; local 554 cnode *node = config_find(root, PREPROCESSING_TAG); local 581 cnode *node = config_find(root, OUTPUT_SESSION_PROCESSING_TAG); local 607 cnode *node = config_find(root, UUID_TAG); local 621 cnode *node = config_find(root, EFFECTS_TAG); local [all...] |
| /frameworks/base/core/java/android/text/ |
| AutoText.java | 225 // There is a node for this letter, and this is the 233 // There is a node for this letter, and we need 243 // No node for this letter yet. Make one. 245 char node = newTrieNode(); local 246 mTrie[herep] = node;
|