Searched defs:node_id (Results 1 - 22 of 22) sorted by relevance

/external/kernel-headers/original/linux/
H A Dcpu.h29 int node_id; /* The node which contains the CPU */ member in struct:cpu
H A Dmmzone.h327 int node_id; member in struct:pglist_data
/external/chromium/chrome/browser/
H A Dsession_history_uitest.cc35 void ClickLink(std::string node_id) { argument
36 GURL url("javascript:clickLink('" + node_id + "')");
42 void FillForm(std::string node_id, std::string value) { argument
43 GURL url("javascript:fillForm('" + node_id + "', '" + value + "')");
52 void SubmitForm(std::string node_id) { argument
53 GURL url("javascript:submitForm('" + node_id + "')");
/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h41 I node_id; // Root is kNoNodeId; member in struct:fst::Collection::Node
44 Node() : node_id(kNoNodeId), element(T()) {}
45 Node(I i, const T &t) : node_id(i), element(t) {}
48 return n.node_id == node_id && n.element == element;
54 return n.node_id + hash_(n.element) * kPrime;
70 id_ = node_.node_id;
86 I node_id = kNoNodeId; local
88 Node node(node_id, set[i]);
89 node_id
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_codec_unittest.cc153 int64 node_id = node->id(); local
154 EXPECT_TRUE(assigned_ids->find(node_id) == assigned_ids->end());
155 assigned_ids->insert(node_id);
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_profile_model_associator.cc453 const std::string& node_id,
452 InitSyncNodeFromChromeId( const std::string& node_id, sync_api::BaseNode* sync_node) argument
H A Dpassword_model_associator.cc156 for (PasswordToSyncIdMap::iterator node_id = id_map_.begin();
157 node_id != id_map_.end(); ++node_id) {
159 if (!sync_node.InitByIdLookup(node_id->second)) {
220 const std::string& node_id,
219 InitSyncNodeFromChromeId( const std::string& node_id, sync_api::BaseNode* sync_node) argument
H A Dpreference_model_associator.cc179 const std::string& node_id,
178 InitSyncNodeFromChromeId( const std::string& node_id, sync_api::BaseNode* sync_node) argument
H A Dtyped_url_model_associator.cc188 for (TypedUrlToSyncIdMap::iterator node_id = id_map_.begin();
189 node_id != id_map_.end(); ++node_id) {
191 if (!sync_node.InitByIdLookup(node_id->second)) {
243 const std::string& node_id,
242 InitSyncNodeFromChromeId( const std::string& node_id, sync_api::BaseNode* sync_node) argument
H A Dbookmark_model_associator.cc185 int64 BookmarkModelAssociator::GetSyncIdFromChromeId(const int64& node_id) { argument
186 BookmarkIdToSyncIdMap::const_iterator iter = id_map_.find(node_id);
197 const int64& node_id,
200 int64 sync_id = GetSyncIdFromChromeId(node_id);
212 int64 node_id = node->id(); local
214 DCHECK(id_map_.find(node_id) == id_map_.end());
216 id_map_[node_id] = sync_id;
196 InitSyncNodeFromChromeId( const int64& node_id, sync_api::BaseNode* sync_node) argument
H A Dautofill_model_associator.cc420 const std::string& node_id,
419 InitSyncNodeFromChromeId( const std::string& node_id, sync_api::BaseNode* sync_node) argument
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_preference_unittest.cc114 int64 node_id = model_associator_->GetSyncIdFromChromeId(name); local
115 if (node_id == sync_api::kInvalidId)
117 if (!node.InitByIdLookup(node_id))
144 int64 node_id = model_associator_->GetSyncIdFromChromeId(name); local
145 if (node_id == sync_api::kInvalidId) {
150 } else if (node.InitByIdLookup(node_id)) {
158 int64 node_id = model_associator_->GetSyncIdFromChromeId(name); local
161 record->id = node_id;
369 int64 node_id = model_associator_->GetSyncIdFromChromeId(prefs::kHomePage); local
372 record->id = node_id;
388 int64 node_id = SetSyncedValue(prefs::kHomePage, *expected); local
410 int64 node_id = SetSyncedValue("unknown preference", *expected); local
443 int64 node_id = SetSyncedValue(prefs::kHomePage, *sync_value); local
482 int64 node_id = SetSyncedValue(prefs::kHomePage, *sync_value); local
[all...]
H A Dprofile_sync_service_session_unittest.cc324 int64 node_id = model_associator_->GetSyncIdFromSessionTag( local
328 record->id = node_id;
343 int64 node_id = model_associator_->GetSyncIdFromSessionTag( local
347 record->id = node_id;
362 int64 node_id = model_associator_->GetSyncIdFromSessionTag( local
366 record->id = node_id;
/external/e2fsprogs/lib/uuid/
H A Dgen_uuid.c220 static int get_node_id(unsigned char *node_id) argument
291 if (node_id) {
292 memcpy(node_id, a, 6);
555 static unsigned char node_id[6]; local
561 if (get_node_id(node_id) <= 0) {
562 get_random_bytes(node_id, 6);
568 node_id[0] |= 0x01;
576 memcpy(uu.node, node_id, 6);
/external/chromium/chrome/browser/sync/engine/
H A Dsyncapi_unittest.cc148 syncable::Id node_id = syncable::Id::CreateFromServerId(type_tag); local
150 node_id);
294 int64 node_id; local
315 node_id = wnode.GetId();
353 EXPECT_EQ(wnode.GetId(), node_id);
/external/v8/src/arm/
H A Ddeoptimizer-arm.cc239 unsigned node_id = iterator.Next(); local
240 USE(node_id);
241 ASSERT(node_id == ast_id);
585 int node_id = iterator->Next(); local
592 PrintF(" => node=%d, height=%d\n", node_id, height_in_bytes);
724 unsigned pc_and_state = GetOutputInfo(data, node_id, function->shared());
/external/v8/src/mips/
H A Ddeoptimizer-mips.cc229 unsigned node_id = iterator.Next(); local
230 USE(node_id);
231 ASSERT(node_id == ast_id);
575 int node_id = iterator->Next(); local
582 PrintF(" => node=%d, height=%d\n", node_id, height_in_bytes);
714 unsigned pc_and_state = GetOutputInfo(data, node_id, function->shared());
/external/v8/src/x64/
H A Ddeoptimizer-x64.cc216 unsigned node_id = iterator.Next(); local
217 USE(node_id);
218 ASSERT(node_id == ast_id);
563 int node_id = iterator->Next(); local
570 PrintF(" => node=%d, height=%d\n", node_id, height_in_bytes);
704 unsigned pc_and_state = GetOutputInfo(data, node_id, function->shared());
/external/chromium/chrome/browser/ui/webui/options/
H A Dcertificate_manager_handler.cc82 std::string node_id; local
83 if (!args->GetString(0, &node_id)){
86 net::X509Certificate* cert = IdToCert(node_id);
/external/v8/src/ia32/
H A Ddeoptimizer-ia32.cc330 unsigned node_id = iterator.Next(); local
331 USE(node_id);
332 ASSERT(node_id == ast_id);
664 int node_id = iterator->Next(); local
671 PrintF(" => node=%d, height=%d\n", node_id, height_in_bytes);
801 unsigned pc_and_state = GetOutputInfo(data, node_id, function->shared());
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
H A Dmarkdown.php2726 $node_id = $this->fn_id_prefix . $matches[1]; variable
2730 if (isset($this->footnotes[$node_id])) {
2732 $this->footnotes_ordered[$node_id] = $this->footnotes[$node_id];
2733 unset($this->footnotes[$node_id]);
2749 $node_id = $this->encodeAttribute($node_id); variable
2752 "<sup id=\"fnref:$node_id\">".
2753 "<a href=\"#fn:$node_id\"$attr>$num</a>".
/external/v8/src/
H A Ddeoptimizer.cc544 unsigned node_id = input_data->AstId(bailout_id_)->value(); local
597 node_id,
1348 void Translation::BeginJSFrame(int node_id, int literal_id, unsigned height) { argument
1350 buffer_->Add(node_id);

Completed in 299 milliseconds