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

12

/external/chromium_org/net/spdy/
H A Dspdy_priority_forest_test.cc218 const uint32 node_id = forest.NextNodeToRead(); local
219 ASSERT_TRUE(node_id == 1 || node_id == 5 || node_id == 7)
220 << "node_id is " << node_id;
221 ++counts[node_id];
259 const uint32 node_id = forest.NextNodeToWrite(); local
260 ASSERT_TRUE(node_id == 2 || node_id
[all...]
/external/chromium_org/chrome/test/remoting/
H A Dme2me_browsertest.cc145 std::string node_id = "delete-client-" + host_id; local
146 ClickOnControl(node_id);
/external/kernel-headers/original/linux/
H A Dcpu.h29 int node_id; /* The node which contains the CPU */ member in struct:cpu
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dtextinput_browsertest.cc20 std::string node_id; member in struct:chromeos::__anon4627::InputTypeExpectation
264 helper.ClickElement(expectations[i].node_id, tab);
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddom_tracker.cc21 int node_id, std::string* frame_id) {
22 if (node_to_frame_map_.count(node_id) == 0)
24 *frame_id = node_to_frame_map_[node_id];
87 int node_id; local
88 if (!dict->GetInteger("nodeId", &node_id))
92 node_to_frame_map_.insert(std::make_pair(node_id, frame_id));
20 GetFrameIdForNode( int node_id, std::string* frame_id) argument
/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/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_expanded_state_tracker.cc46 int64 node_id; local
48 if ((*i)->GetAsString(&value) && base::StringToInt64(value, &node_id) &&
49 (node = bookmark_model_->GetNodeByID(node_id)) != NULL &&
/external/chromium_org/chrome/browser/sync/
H A Dabstract_profile_sync_service_test.cc24 int64 node_id, syncer::ChangeRecord::Action action) {
27 record.id = node_id;
35 int64 node_id, const sync_pb::EntitySpecifics& specifics) {
38 record.id = node_id;
23 MakeSingletonChangeRecordList( int64 node_id, syncer::ChangeRecord::Action action) argument
34 MakeSingletonDeletionChangeRecordList( int64 node_id, const sync_pb::EntitySpecifics& specifics) argument
H A Dprofile_sync_service_preference_unittest.cc652 int64 node_id = SetSyncedValue(prefs::kHomePage, *expected); local
653 ASSERT_NE(node_id, syncer::kInvalidId);
659 node_id, ChangeRecord::ACTION_UPDATE));
673 int64 node_id = SetSyncedValue(prefs::kHomePage, *expected); local
674 ASSERT_NE(node_id, syncer::kInvalidId);
680 node_id, ChangeRecord::ACTION_ADD));
696 int64 node_id = SetSyncedValue("unknown preference", *expected); local
697 ASSERT_NE(node_id, syncer::kInvalidId);
703 node_id, ChangeRecord::ACTION_UPDATE));
731 int64 node_id local
785 int64 node_id = SetSyncedValue(prefs::kURLsToRestoreOnStartup, sync_value); local
851 int64 node_id = SetSyncedValue(prefs::kHomePage, *sync_value); local
[all...]
/external/chromium_org/content/browser/
H A Dsession_history_browsertest.cc59 void ClickLink(std::string node_id) { argument
60 GURL url("javascript:clickLink('" + node_id + "')");
66 void FillForm(std::string node_id, std::string value) { argument
67 GURL url("javascript:fillForm('" + node_id + "', '" + value + "')");
76 void SubmitForm(std::string node_id) { argument
77 GURL url("javascript:submitForm('" + node_id + "')");
/external/chromium_org/chrome/android/testshell/
H A Dtestshell_tab.cc50 void TestShellTab::EditBookmark(int64 node_id, argument
/external/chromium_org/chromeos/dbus/
H A Dcras_audio_client_stub_impl.cc85 void CrasAudioClientStubImpl::SetOutputNodeVolume(uint64 node_id, argument
96 void CrasAudioClientStubImpl::SetInputNodeGain(uint64 node_id, argument
107 void CrasAudioClientStubImpl::SetActiveOutputNode(uint64 node_id) { argument
108 if (active_output_node_id_ == node_id)
114 else if (node_list_[i].id == node_id)
117 active_output_node_id_ = node_id;
120 ActiveOutputNodeChanged(node_id));
123 void CrasAudioClientStubImpl::SetActiveInputNode(uint64 node_id) { argument
124 if (active_input_node_id_ == node_id)
130 else if (node_list_[i].id == node_id)
[all...]
H A Dcras_audio_client.cc67 virtual void SetOutputNodeVolume(uint64 node_id, int32 volume) OVERRIDE {
71 writer.AppendUint64(node_id);
90 virtual void SetInputNodeGain(uint64 node_id, int32 input_gain) OVERRIDE {
94 writer.AppendUint64(node_id);
113 virtual void SetActiveOutputNode(uint64 node_id) OVERRIDE {
117 writer.AppendUint64(node_id);
124 virtual void SetActiveInputNode(uint64 node_id) OVERRIDE {
128 writer.AppendUint64(node_id);
235 uint64 node_id; local
236 if (!reader.PopUint64(&node_id)) {
245 uint64 node_id; local
391 ActiveOutputNodeChanged(uint64 node_id) argument
394 ActiveInputNodeChanged(uint64 node_id) argument
[all...]
/external/chromium_org/sync/internal_api/test/
H A Dtest_entry_factory.cc183 syncable::Id node_id = TestIdFactory::MakeServer("xyz"); local
185 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
/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/chromium_org/chrome/browser/sync/glue/
H A Dpassword_model_associator.cc187 for (PasswordToSyncIdMap::iterator node_id = id_map_.begin();
188 node_id != id_map_.end(); ++node_id) {
190 if (sync_node.InitByIdLookup(node_id->second) !=
254 const std::string& node_id,
253 InitSyncNodeFromChromeId( const std::string& node_id, syncer::BaseNode* sync_node) argument
/external/chromium_org/chrome/browser/ui/
H A Dchrome_pages.cc49 int64 node_id) {
56 base::Int64ToString(node_id).c_str()))));
119 void ShowBookmarkManagerForNode(Browser* browser, int64 node_id) { argument
120 OpenBookmarkManagerWithHash(browser, std::string(), node_id);
47 OpenBookmarkManagerWithHash(Browser* browser, const std::string& action, int64 node_id) argument
/external/chromium_org/chrome/browser/ui/webui/
H A Dcookies_tree_model_util.cc312 int32 node_id = 0; local
313 if (!base::StringToInt(node_ids[i], &node_id))
316 child = id_map_.Lookup(node_id);

Completed in 1117 milliseconds

12