word 390 chrome/browser/autocomplete/shortcuts_provider.cc const base::string16& word = i->second; word 391 chrome/browser/autocomplete/shortcuts_provider.cc size_t word_end = last_position + word.length(); word 393 chrome/browser/autocomplete/shortcuts_provider.cc !text_lowercase.compare(last_position, word.length(), word)) { word 143 chrome/browser/history/in_memory_url_index_types.cc base::string16 word(iter.GetString()); word 147 chrome/browser/history/in_memory_url_index_types.cc base::TrimWhitespace(word, base::TRIM_LEADING, &trimmed_word); word 148 chrome/browser/history/in_memory_url_index_types.cc initial_whitespace = word.length() - trimmed_word.length(); word 149 chrome/browser/history/in_memory_url_index_types.cc base::TrimWhitespace(trimmed_word, base::TRIM_TRAILING, &word); word 151 chrome/browser/history/in_memory_url_index_types.cc if (word.empty()) word 153 chrome/browser/history/in_memory_url_index_types.cc words.push_back(word); word 78 chrome/browser/history/query_parser.cc explicit QueryNodeWord(const base::string16& word); word 88 chrome/browser/history/query_parser.cc virtual bool Matches(const base::string16& word, bool exact) const OVERRIDE; word 103 chrome/browser/history/query_parser.cc QueryNodeWord::QueryNodeWord(const base::string16& word) word 104 chrome/browser/history/query_parser.cc : word_(word), word 122 chrome/browser/history/query_parser.cc bool QueryNodeWord::Matches(const base::string16& word, bool exact) const { word 124 chrome/browser/history/query_parser.cc return word == word_; word 125 chrome/browser/history/query_parser.cc return word.size() >= word_.size() && word 126 chrome/browser/history/query_parser.cc (word_.compare(0, word_.size(), word, 0, word_.size()) == 0); word 133 chrome/browser/history/query_parser.cc if (Matches(words[i].word, false)) { word 146 chrome/browser/history/query_parser.cc if (Matches(words[i].word, false)) word 174 chrome/browser/history/query_parser.cc virtual bool Matches(const base::string16& word, bool exact) const OVERRIDE; word 224 chrome/browser/history/query_parser.cc bool QueryNodeList::Matches(const base::string16& word, bool exact) const { word 297 chrome/browser/history/query_parser.cc if (!children_[j]->Matches(words[i + j].word, true)) { word 320 chrome/browser/history/query_parser.cc last_word->position + last_word->word.length())); word 335 chrome/browser/history/query_parser.cc bool QueryParser::IsWordLongEnoughForPrefixSearch(const base::string16& word) { word 336 chrome/browser/history/query_parser.cc DCHECK(!word.empty()); word 341 chrome/browser/history/query_parser.cc if (0xAC00 <= word[0] && word[0] <= 0xD7A3) word 343 chrome/browser/history/query_parser.cc return word.size() >= minimum_length; word 465 chrome/browser/history/query_parser.cc base::string16 word = iter.GetString(); word 466 chrome/browser/history/query_parser.cc if (!word.empty()) { word 468 chrome/browser/history/query_parser.cc words->back().word = word; word 19 chrome/browser/history/query_parser.h base::string16 word; word 41 chrome/browser/history/query_parser.h virtual bool Matches(const base::string16& word, bool exact) const = 0; word 69 chrome/browser/history/query_parser.h static bool IsWordLongEnoughForPrefixSearch(const base::string16& word); word 867 chrome/browser/history/url_index_private_data.cc base::string16 word = word_list_[word_id]; word 868 chrome/browser/history/url_index_private_data.cc Char16Set characters = Char16SetFromString16(word); word 879 chrome/browser/history/url_index_private_data.cc word_map_.erase(word); word 1083 chrome/browser/history/url_index_private_data.cc const RepeatedPtrField<std::string>& words(list_item.word()); word 1102 chrome/browser/history/url_index_private_data.cc word_map_[base::UTF8ToUTF16(iter->word())] = iter->word_id(); word 225 chrome/browser/renderer_context_menu/spelling_menu_observer_browsertest.cc void InitMenu(const char* word, const char* suggestion) { word 228 chrome/browser/renderer_context_menu/spelling_menu_observer_browsertest.cc params.misspelled_word = base::ASCIIToUTF16(word); word 77 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc bool IsInvalidWord(const std::string& word) { word 79 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc return !IsStringUTF8(word) || word 80 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc word.length() > word 82 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc word.empty() || word 83 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc base::TRIM_NONE != base::TrimWhitespaceASCII(word, base::TRIM_ALL, &tmp); word 189 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc void SpellcheckCustomDictionary::Change::AddWord(const std::string& word) { word 190 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc to_add_.push_back(word); word 193 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc void SpellcheckCustomDictionary::Change::RemoveWord(const std::string& word) { word 194 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc to_remove_.push_back(word); word 235 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc bool SpellcheckCustomDictionary::AddWord(const std::string& word) { word 238 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc dictionary_change.AddWord(word); word 247 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc bool SpellcheckCustomDictionary::RemoveWord(const std::string& word) { word 250 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc dictionary_change.RemoveWord(word); word 259 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc bool SpellcheckCustomDictionary::HasWord(const std::string& word) const { word 260 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc return !!words_.count(word); word 314 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc to_add_locally.push_back(it->GetSpecifics().dictionary().word()); word 348 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc std::string word; word 354 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc word = *it; word 356 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc specifics.mutable_dictionary()->set_word(word); word 357 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc data.push_back(syncer::SyncData::CreateLocalData(word, word, specifics)); word 371 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc std::string word = it->sync_data().GetSpecifics().dictionary().word(); word 374 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc dictionary_change.AddWord(word); word 377 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc dictionary_change.RemoveWord(word); word 494 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc std::string word = *it; word 496 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc specifics.mutable_dictionary()->set_word(word); word 500 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc syncer::SyncData::CreateLocalData(word, word, specifics))); word 506 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc std::string word = *it; word 508 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc specifics.mutable_dictionary()->set_word(word); word 512 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc syncer::SyncData::CreateLocalData(word, word, specifics))); word 39 chrome/browser/spellchecker/spellcheck_custom_dictionary.h void AddWord(const std::string& word); word 42 chrome/browser/spellchecker/spellcheck_custom_dictionary.h void RemoveWord(const std::string& word); word 86 chrome/browser/spellchecker/spellcheck_custom_dictionary.h bool AddWord(const std::string& word); word 91 chrome/browser/spellchecker/spellcheck_custom_dictionary.h bool RemoveWord(const std::string& word); word 94 chrome/browser/spellchecker/spellcheck_custom_dictionary.h bool HasWord(const std::string& word) const; word 47 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc std::string word; word 50 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc word = *it; word 52 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc specifics.mutable_dictionary()->set_word(word); word 53 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc data.push_back(syncer::SyncData::CreateLocalData(word, word, specifics)); word 315 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc EXPECT_EQ(words[i], data[i].GetSpecifics().dictionary().word()); word 373 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc std::string word = "foo"; word 375 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc specifics.mutable_dictionary()->set_word(word); word 379 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc syncer::SyncData::CreateLocalData(word, word, specifics))); word 383 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc std::string word = "01234567890123456789012345678901234567890123456789" word 386 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc specifics.mutable_dictionary()->set_word(word); word 390 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc syncer::SyncData::CreateLocalData(word, word, specifics))); word 394 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc std::string word = "baz"; word 396 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc specifics.mutable_dictionary()->set_word(word); word 400 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc syncer::SyncData::CreateLocalData(word, word, specifics))); word 404 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc std::string word = "snafoo"; word 406 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc specifics.mutable_dictionary()->set_word(word); word 410 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc syncer::SyncData::CreateLocalData(word, word, specifics))); word 414 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc std::string word = "bar"; word 416 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc specifics.mutable_dictionary()->set_word(word); word 420 chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc syncer::SyncData::CreateLocalData(word, word, specifics))); word 45 chrome/browser/spellchecker/spellcheck_host_metrics.cc void SpellCheckHostMetrics::RecordCheckedWordStats(const base::string16& word, word 62 chrome/browser/spellchecker/spellcheck_host_metrics.cc base::MD5Sum(reinterpret_cast<const unsigned char*>(word.c_str()), word 63 chrome/browser/spellchecker/spellcheck_host_metrics.cc word.size() * sizeof(base::char16), &digest); word 48 chrome/browser/spellchecker/spellcheck_host_metrics.h void RecordCheckedWordStats(const base::string16& word, bool misspell); word 88 chrome/browser/spellchecker/spellcheck_message_filter.cc void SpellCheckMessageFilter::OnNotifyChecked(const base::string16& word, word 96 chrome/browser/spellchecker/spellcheck_message_filter.cc spellcheck->GetMetrics()->RecordCheckedWordStats(word, misspelled); word 36 chrome/browser/spellchecker/spellcheck_message_filter.h void OnNotifyChecked(const base::string16& word, bool misspelled); word 251 chrome/browser/spellchecker/spellcheck_message_filter_mac.cc void SpellCheckMessageFilterMac::OnCheckSpelling(const base::string16& word, word 254 chrome/browser/spellchecker/spellcheck_message_filter_mac.cc *correct = spellcheck_mac::CheckSpelling(word, ToDocumentTag(route_id)); word 258 chrome/browser/spellchecker/spellcheck_message_filter_mac.cc const base::string16& word, word 260 chrome/browser/spellchecker/spellcheck_message_filter_mac.cc spellcheck_mac::FillSuggestionList(word, suggestions); word 268 chrome/browser/spellchecker/spellcheck_message_filter_mac.cc const base::string16& word) { word 269 chrome/browser/spellchecker/spellcheck_message_filter_mac.cc spellcheck_mac::UpdateSpellingPanelWithMisspelledWord(word); word 40 chrome/browser/spellchecker/spellcheck_message_filter_mac.h void OnCheckSpelling(const base::string16& word, int route_id, bool* correct); word 41 chrome/browser/spellchecker/spellcheck_message_filter_mac.h void OnFillSuggestionList(const base::string16& word, word 44 chrome/browser/spellchecker/spellcheck_message_filter_mac.h void OnUpdateSpellingPanelWithMisspelledWord(const base::string16& word); word 48 chrome/browser/spellchecker/spellcheck_platform_mac.h void UpdateSpellingPanelWithMisspelledWord(const base::string16& word); word 70 chrome/browser/spellchecker/spellcheck_platform_mac.h void AddWord(const base::string16& word); word 73 chrome/browser/spellchecker/spellcheck_platform_mac.h void RemoveWord(const base::string16& word); word 83 chrome/browser/spellchecker/spellcheck_platform_mac.h void IgnoreWord(const base::string16& word); word 62 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc const base::string16 word(base::ASCIIToUTF16(kTestCases[i])); word 66 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc EXPECT_FALSE(spellcheck_mac::CheckSpelling(word, doc_tag)) << word; word 69 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc spellcheck_mac::IgnoreWord(word); word 72 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc EXPECT_TRUE(spellcheck_mac::CheckSpelling(word, doc_tag)) << word; word 79 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc EXPECT_FALSE(spellcheck_mac::CheckSpelling(word, doc_tag)) << word; word 357 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc const base::string16 word(base::ASCIIToUTF16(kTestCases[i].input)); word 358 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc EXPECT_FALSE(spellcheck_mac::CheckSpelling(word, 0)) << word; word 362 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc spellcheck_mac::FillSuggestionList(word, &suggestions); word 183 chrome/browser/sync/test/integration/dictionary_helper.cc bool AddWord(int index, const std::string& word) { word 185 chrome/browser/sync/test/integration/dictionary_helper.cc dictionary_change.AddWord(word); word 195 chrome/browser/sync/test/integration/dictionary_helper.cc bool RemoveWord(int index, const std::string& word) { word 197 chrome/browser/sync/test/integration/dictionary_helper.cc dictionary_change.RemoveWord(word); word 46 chrome/browser/sync/test/integration/dictionary_helper.h bool AddWord(int index, const std::string& word); word 51 chrome/browser/sync/test/integration/dictionary_helper.h bool RemoveWord(int index, const std::string& word); word 26 chrome/browser/sync/test/integration/single_client_dictionary_sync_test.cc std::string word = "foo"; word 27 chrome/browser/sync/test/integration/single_client_dictionary_sync_test.cc ASSERT_TRUE(dictionary_helper::AddWord(0, word)); word 31 chrome/browser/sync/test/integration/single_client_dictionary_sync_test.cc ASSERT_TRUE(dictionary_helper::RemoveWord(0, word)); word 92 chrome/browser/sync/test/integration/two_client_dictionary_sync_test.cc std::string word = "foo"; word 94 chrome/browser/sync/test/integration/two_client_dictionary_sync_test.cc ASSERT_TRUE(dictionary_helper::AddWord(0, word)); word 96 chrome/browser/sync/test/integration/two_client_dictionary_sync_test.cc ASSERT_TRUE(dictionary_helper::RemoveWord(0, word)); word 99 chrome/browser/sync/test/integration/two_client_dictionary_sync_test.cc ASSERT_TRUE(dictionary_helper::AddWord(1, word)); word 14 chrome/browser/ui/app_list/search/term_break_iterator.cc TermBreakIterator::TermBreakIterator(const base::string16& word) word 15 chrome/browser/ui/app_list/search/term_break_iterator.cc : word_(word), word 18 chrome/browser/ui/app_list/search/term_break_iterator.cc iter_(new base::i18n::UTF16CharIterator(&word)), word 29 chrome/browser/ui/app_list/search/term_break_iterator.h explicit TermBreakIterator(const base::string16& word); word 22 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc base::string16 word(UTF8ToUTF16("simple")); word 23 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc TermBreakIterator iter(word); word 30 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc base::string16 word(UTF8ToUTF16("CamelCase")); word 31 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc TermBreakIterator iter(word); word 40 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc base::string16 word(UTF8ToUTF16("lowerToUpper")); word 41 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc TermBreakIterator iter(word); word 52 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc base::string16 word(UTF8ToUTF16("Chromium26.0.0.0")); word 53 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc TermBreakIterator iter(word); word 62 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc base::string16 word(UTF8ToUTF16("123startWithNumber")); word 63 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc TermBreakIterator iter(word); word 77 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc base::string16 word(UTF8ToUTF16("English\xe4\xb8\xad\xe6\x96\x87Word")); word 78 chrome/browser/ui/app_list/search/term_break_iterator_unittest.cc TermBreakIterator iter(word); word 31 chrome/browser/ui/app_list/search/tokenized_string.cc const base::string16 word(break_iter.GetString()); word 33 chrome/browser/ui/app_list/search/tokenized_string.cc TermBreakIterator term_iter(word); word 212 chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc const base::StringPiece16& word) { word 216 chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc if (negative_word_cache_.Get(word) != negative_word_cache_.end()) { word 224 chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc std::string word_lower = base::UTF16ToUTF8(base::i18n::ToLower(word)); word 233 chrome/renderer/safe_browsing/phishing_term_feature_extractor.cc negative_word_cache_.Put(word, true); word 109 chrome/renderer/safe_browsing/phishing_term_feature_extractor.h void HandleWord(const base::StringPiece16& word); word 247 chrome/renderer/spellchecker/spellcheck.cc base::string16 SpellCheck::GetAutoCorrectionWord(const base::string16& word, word 253 chrome/renderer/spellchecker/spellcheck.cc int word_length = static_cast<int>(word.size()); word 263 chrome/renderer/spellchecker/spellcheck.cc const base::char16* word_char = word.c_str(); word 89 chrome/renderer/spellchecker/spellcheck.h base::string16 GetAutoCorrectionWord(const base::string16& word, int tag); word 58 chrome/renderer/spellchecker/spellcheck_language.cc base::string16 word; word 70 chrome/renderer/spellchecker/spellcheck_language.cc while (text_iterator_.GetNextWord(&word, &word_start, &word_length)) { word 73 chrome/renderer/spellchecker/spellcheck_language.cc if (platform_spelling_engine_->CheckSpelling(word, tag)) word 78 chrome/renderer/spellchecker/spellcheck_language.cc if (IsValidContraction(word, tag)) word 86 chrome/renderer/spellchecker/spellcheck_language.cc platform_spelling_engine_->FillSuggestionList(word, word 110 chrome/renderer/spellchecker/spellcheck_language.cc base::string16 word; word 115 chrome/renderer/spellchecker/spellcheck_language.cc while (contraction_iterator_.GetNextWord(&word, &word_start, &word_length)) { word 116 chrome/renderer/spellchecker/spellcheck_language.cc if (!platform_spelling_engine_->CheckSpelling(word, tag)) word 55 chrome/renderer/spellchecker/spellcheck_language.h bool IsValidContraction(const base::string16& word, int tag); word 133 chrome/renderer/spellchecker/spellcheck_provider.cc base::string16 word(text); word 136 chrome/renderer/spellchecker/spellcheck_provider.cc word.c_str(), word.size(), routing_id(), word 140 chrome/renderer/spellchecker/spellcheck_provider.cc UMA_HISTOGRAM_COUNTS("SpellCheck.api.check.suggestions", word.size()); word 142 chrome/renderer/spellchecker/spellcheck_provider.cc UMA_HISTOGRAM_COUNTS("SpellCheck.api.check", word.size()); word 145 chrome/renderer/spellchecker/spellcheck_provider.cc Send(new SpellCheckHostMsg_NotifyChecked(routing_id(), word, 0 < length)); word 180 chrome/renderer/spellchecker/spellcheck_provider.cc WebString SpellCheckProvider::autoCorrectWord(const WebString& word) { word 183 chrome/renderer/spellchecker/spellcheck_provider.cc UMA_HISTOGRAM_COUNTS("SpellCheck.api.autocorrect", word.length()); word 184 chrome/renderer/spellchecker/spellcheck_provider.cc return spellcheck_->GetAutoCorrectionWord(word, routing_id()); word 201 chrome/renderer/spellchecker/spellcheck_provider.cc const WebString& word) { word 204 chrome/renderer/spellchecker/spellcheck_provider.cc word)); word 92 chrome/renderer/spellchecker/spellcheck_provider.h const blink::WebString& word) OVERRIDE; word 80 chrome/renderer/spellchecker/spellcheck_unittest.cc bool CheckSpelling(const std::string& word, int tag) { word 82 chrome/renderer/spellchecker/spellcheck_unittest.cc base::ASCIIToUTF16(word), tag); word 902 chrome/renderer/spellchecker/spellcheck_unittest.cc base::string16 word(base::WideToUTF16(kTestCases[i].input)); word 903 chrome/renderer/spellchecker/spellcheck_unittest.cc int word_length = static_cast<int>(word.length()); word 906 chrome/renderer/spellchecker/spellcheck_unittest.cc bool result = spell_check()->SpellCheckWord(word.c_str(), word 1315 chrome/renderer/spellchecker/spellcheck_unittest.cc const char* word; word 1344 chrome/renderer/spellchecker/spellcheck_unittest.cc bool result = CheckSpelling(kTestCases[i].word, 0); word 1346 chrome/renderer/spellchecker/spellcheck_unittest.cc "Failed test for " << kTestCases[i].word; word 104 chrome/tools/convert_dict/convert_dict_unittest.cc base::string16 word(base::UTF8ToUTF16(dic_reader.words()[i].first)); word 105 chrome/tools/convert_dict/convert_dict_unittest.cc EXPECT_TRUE(word_list.find(word) != word_list.end()); word 37 chrome/tools/convert_dict/dic_reader.cc std::string word = line.substr(0, slash_index); word 38 chrome/tools/convert_dict/dic_reader.cc ReplaceSubstringsAfterOffset(&word, 0, "\\/", "/"); word 39 chrome/tools/convert_dict/dic_reader.cc output->push_back(word); word 171 chrome/tools/convert_dict/dic_reader.cc for (WordSet::iterator word = word_set.begin(); word != word_set.end(); word 172 chrome/tools/convert_dict/dic_reader.cc ++word) { word 174 chrome/tools/convert_dict/dic_reader.cc for (std::set<int>::iterator aff = word->second.begin(); word 175 chrome/tools/convert_dict/dic_reader.cc aff != word->second.end(); ++aff) word 182 chrome/tools/convert_dict/dic_reader.cc words_.push_back(std::make_pair(word->first, affixes)); word 1786 content/browser/web_contents/web_contents_impl.cc void WebContentsImpl::Replace(const base::string16& word) { word 1791 content/browser/web_contents/web_contents_impl.cc Send(new InputMsg_Replace(focused_frame->GetRoutingID(), word)); word 1794 content/browser/web_contents/web_contents_impl.cc void WebContentsImpl::ReplaceMisspelling(const base::string16& word) { word 1799 content/browser/web_contents/web_contents_impl.cc Send(new InputMsg_ReplaceMisspelling(focused_frame->GetRoutingID(), word)); word 241 content/browser/web_contents/web_contents_impl.h virtual void Replace(const base::string16& word) OVERRIDE; word 242 content/browser/web_contents/web_contents_impl.h virtual void ReplaceMisspelling(const base::string16& word) OVERRIDE; word 105 content/common/android/address_parser_internal.cc bool HouseNumberParser::CheckFinished(Word* word) const { word 110 content/common/android/address_parser_internal.cc if (word) { word 111 content/common/android/address_parser_internal.cc word->begin = it_ - result_chars_; word 112 content/common/android/address_parser_internal.cc word->end = it_; word 119 content/common/android/address_parser_internal.cc const base::string16::const_iterator& end, Word* word) { word 131 content/common/android/address_parser_internal.cc if (CheckFinished(word)) word 246 content/common/android/address_parser_internal.cc return CheckFinished(word); word 415 content/common/android/address_parser_internal.cc bool IsZipValid(const Word& word, size_t state_index) { word 416 content/common/android/address_parser_internal.cc size_t length = word.end - word.begin; word 420 content/common/android/address_parser_internal.cc for (base::string16::const_iterator it = word.begin; it != word.end; ++it) { word 421 content/common/android/address_parser_internal.cc size_t pos = it - word.begin; word 426 content/common/android/address_parser_internal.cc return IsZipValidForState(word, state_index); word 429 content/common/android/address_parser_internal.cc bool IsZipValidForState(const Word& word, size_t state_index) { word 499 content/common/android/address_parser_internal.cc DCHECK(word.begin != word.end); word 500 content/common/android/address_parser_internal.cc DCHECK(IsAsciiDigit(*word.begin)); word 501 content/common/android/address_parser_internal.cc DCHECK(IsAsciiDigit(*(word.begin + 1))); word 502 content/common/android/address_parser_internal.cc int zip_prefix = (*word.begin - '0') * 10 + (*(word.begin + 1) - '0'); word 513 content/common/android/address_parser_internal.cc bool IsValidLocationName(const Word& word) { word 595 content/common/android/address_parser_internal.cc if (!IsAsciiAlpha(*word.begin)) word 599 content/common/android/address_parser_internal.cc base::char16 first_letter = base::ToLowerASCII(*word.begin); word 605 content/common/android/address_parser_internal.cc int length = std::distance(word.begin, word.end); word 614 content/common/android/address_parser_internal.cc if (LowerCaseEqualsASCIIWithPlural(word.begin, word.end, word 37 content/common/android/address_parser_internal.h Word* word); word 44 content/common/android/address_parser_internal.h inline bool CheckFinished(Word* word) const; word 76 content/common/android/address_parser_internal.h CONTENT_EXPORT bool IsValidLocationName(const Word& word); word 77 content/common/android/address_parser_internal.h CONTENT_EXPORT bool IsZipValid(const Word& word, size_t state_index); word 78 content/common/android/address_parser_internal.h CONTENT_EXPORT bool IsZipValidForState(const Word& word, size_t state_index); word 32 content/common/android/address_parser_unittest.cc Word word; word 33 content/common/android/address_parser_unittest.cc if (parser.Parse(content_16.begin(), content_16.end(), &word)) word 34 content/common/android/address_parser_unittest.cc result = base::string16(word.begin, word.end); word 337 content/public/browser/web_contents.h virtual void Replace(const base::string16& word) = 0; word 340 content/public/browser/web_contents.h virtual void ReplaceMisspelling(const base::string16& word) = 0; word 114 content/public/test/mock_render_process_host.cc void MockRenderProcessHost::AddWord(const base::string16& word) { word 53 content/public/test/mock_render_process_host.h virtual void AddWord(const base::string16& word); word 65 content/shell/renderer/test_runner/MockSpellCheck.cpp base::string16 word; word 74 content/shell/renderer/test_runner/MockSpellCheck.cpp word = stringText.substr(wordOffset, wordLength); word 75 content/shell/renderer/test_runner/MockSpellCheck.cpp if (word == m_misspelledWords.at(i) && (static_cast<int>(stringText.length()) == wordOffset + wordLength || isNotASCIIAlpha(stringText[wordOffset + wordLength]))) { word 99 content/shell/renderer/test_runner/MockSpellCheck.cpp bool MockSpellCheck::hasInCache(const WebString& word) word 101 content/shell/renderer/test_runner/MockSpellCheck.cpp return word == WebString::fromUTF8("Spell wellcome. Is it broken?") || word == WebString::fromUTF8("Spell wellcome.\x007F"); word 114 content/shell/renderer/test_runner/MockSpellCheck.cpp void MockSpellCheck::fillSuggestionList(const WebString& word, WebVector<WebString>* suggestions) word 116 content/shell/renderer/test_runner/MockSpellCheck.cpp if (word == WebString::fromUTF8("wellcome")) word 118 content/shell/renderer/test_runner/MockSpellCheck.cpp else if (word == WebString::fromUTF8("upper case")) word 120 content/shell/renderer/test_runner/MockSpellCheck.cpp else if (word == WebString::fromUTF8("Helllo")) word 122 content/shell/renderer/test_runner/MockSpellCheck.cpp else if (word == WebString::fromUTF8("wordl")) word 25 content/shell/renderer/test_runner/MockSpellCheck.h static void fillSuggestionList(const blink::WebString& word, blink::WebVector<blink::WebString>* suggestions); word 11 courgette/typedrva_unittest.cc void TestRelativeTargetX86(courgette::RVA word, courgette::RVA expected) word 25 courgette/typedrva_unittest.cc void TypedRVATest::TestRelativeTargetX86(courgette::RVA word, word 29 courgette/typedrva_unittest.cc const uint8* op_pointer = reinterpret_cast<const uint8*>(&word); word 180 crypto/ghash.cc uint64 word; word 182 crypto/ghash.cc word = x->hi; word 184 crypto/ghash.cc word = x->low; word 191 crypto/ghash.cc const FieldElement& t = table[word & 0xf]; word 194 crypto/ghash.cc word >>= 4; word 131 gpu/config/gpu_test_expectations_parser.cc Token ParseToken(const std::string& word) { word 132 gpu/config/gpu_test_expectations_parser.cc if (StartsWithASCII(word, "//", false)) word 134 gpu/config/gpu_test_expectations_parser.cc if (StartsWithASCII(word, "0x", false)) word 138 gpu/config/gpu_test_expectations_parser.cc if (LowerCaseEqualsASCII(word, kTokenData[i].name)) word 82 native_client_sdk/src/libraries/nacl_io/syscalls/inet_pton.c unsigned long word = strtoul(pos, &end_pos, 16); word 83 native_client_sdk/src/libraries/nacl_io/syscalls/inet_pton.c if (word > 0xffff || pos == end_pos) word 98 native_client_sdk/src/libraries/nacl_io/syscalls/inet_pton.c result[result_pos] = (word & 0xFF00) >> 8; word 99 native_client_sdk/src/libraries/nacl_io/syscalls/inet_pton.c result[result_pos + 1] = word & 0xFF; word 14 net/disk_cache/blockfile/bitmap.cc int FindLSBSetNonZero(uint32 word) { word 17 net/disk_cache/blockfile/bitmap.cc float f = static_cast<float>(word & -static_cast<int>(word)); word 31 net/disk_cache/blockfile/bitmap.cc int FindLSBNonEmpty(uint32 word, bool value) { word 34 net/disk_cache/blockfile/bitmap.cc word = ~word; word 36 net/disk_cache/blockfile/bitmap.cc return FindLSBSetNonZero(word); word 173 net/disk_cache/blockfile/bitmap.cc int word = begin / kIntBits; word 179 net/disk_cache/blockfile/bitmap.cc uint32 this_word = map_[word]; word 185 net/disk_cache/blockfile/bitmap.cc if (word < last_word) { word 190 net/disk_cache/blockfile/bitmap.cc word++; word 192 net/disk_cache/blockfile/bitmap.cc while (word < last_word) { word 193 net/disk_cache/blockfile/bitmap.cc this_word = map_[word++]; word 299 net/disk_cache/blockfile/bitmap.cc int word = start / kIntBits; word 305 net/disk_cache/blockfile/bitmap.cc map_[word] |= to_add; word 307 net/disk_cache/blockfile/bitmap.cc map_[word] &= ~to_add; word 79 net/tools/dump_cache/url_to_filename_encoder_unittest.cc void ValidateNoChange(const string& word) { word 81 net/tools/dump_cache/url_to_filename_encoder_unittest.cc Validate(word, word + escape_); word 271 net/websockets/websocket_deflate_stream_test.cc const std::string word = "Chromium"; word 272 net/websockets/websocket_deflate_stream_test.cc const std::string payload = word + std::string(256, 'a') + word; word 107 net/websockets/websocket_deflater_test.cc const std::string word = "Chromium"; word 108 net/websockets/websocket_deflater_test.cc std::string input = word + std::string(256, 'a') + word; word 124 net/websockets/websocket_deflater_test.cc const std::string word = "Chromium"; word 125 net/websockets/websocket_deflater_test.cc std::string input = word + std::string(256, 'a') + word; word 480 sync/protocol/proto_value_conversions.cc SET_STR(word); word 3635 third_party/liblouis/overrides/liblouis/compileTranslationTable.c CharsString word; word 3664 third_party/liblouis/overrides/liblouis/compileTranslationTable.c if (!getToken (nested, &word, NULL)) word 3666 third_party/liblouis/overrides/liblouis/compileTranslationTable.c parseChars (nested, &hyph, &word); word 3681 third_party/liblouis/overrides/liblouis/compileTranslationTable.c word.chars[j] = hyph.chars[i]; word 3685 third_party/liblouis/overrides/liblouis/compileTranslationTable.c word.chars[j] = 0; word 3686 third_party/liblouis/overrides/liblouis/compileTranslationTable.c word.length = j; word 3689 third_party/liblouis/overrides/liblouis/compileTranslationTable.c found = hyphenHashLookup (hashTab, &word); word 3693 third_party/liblouis/overrides/liblouis/compileTranslationTable.c stateNum = hyphenGetNewState (&dict, hashTab, &word); word 3706 third_party/liblouis/overrides/liblouis/compileTranslationTable.c ch = word.chars[word.length-- - 1]; word 3707 third_party/liblouis/overrides/liblouis/compileTranslationTable.c found = hyphenHashLookup (hashTab, &word); word 3711 third_party/liblouis/overrides/liblouis/compileTranslationTable.c stateNum = hyphenGetNewState (&dict, hashTab, &word); word 3723 third_party/liblouis/overrides/liblouis/compileTranslationTable.c word.length = 0; word 3725 third_party/liblouis/overrides/liblouis/compileTranslationTable.c word.chars[word.length++] = e->key->chars[k]; word 3726 third_party/liblouis/overrides/liblouis/compileTranslationTable.c stateNum = hyphenHashLookup (hashTab, &word); word 72 third_party/re2/re2/parse.cc bool PushWordBoundary(bool word); word 406 third_party/re2/re2/parse.cc bool Regexp::ParseState::PushWordBoundary(bool word) { word 407 third_party/re2/re2/parse.cc if (word) word 238 third_party/re2/re2/testing/re2_test.cc string word; word 243 third_party/re2/re2/testing/re2_test.cc CHECK(RE2::Consume(&input, r, &word)); word 244 third_party/re2/re2/testing/re2_test.cc CHECK_EQ(word, "aaa") << " input: " << input; word 245 third_party/re2/re2/testing/re2_test.cc CHECK(RE2::Consume(&input, r, &word)); word 246 third_party/re2/re2/testing/re2_test.cc CHECK_EQ(word, "b") << " input: " << input; word 247 third_party/re2/re2/testing/re2_test.cc CHECK(! RE2::Consume(&input, r, &word)) << " input: " << input; word 261 third_party/re2/re2/testing/re2_test.cc string word; word 262 third_party/re2/re2/testing/re2_test.cc argv[0] = &word; word 264 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("two", word); word 270 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("three", word); word 278 third_party/re2/re2/testing/re2_test.cc string word; word 283 third_party/re2/re2/testing/re2_test.cc CHECK(RE2::FindAndConsume(&input, r, &word)); word 284 third_party/re2/re2/testing/re2_test.cc CHECK_EQ(word, "aaa"); word 285 third_party/re2/re2/testing/re2_test.cc CHECK(RE2::FindAndConsume(&input, r, &word)); word 286 third_party/re2/re2/testing/re2_test.cc CHECK_EQ(word, "b"); word 287 third_party/re2/re2/testing/re2_test.cc CHECK(RE2::FindAndConsume(&input, r, &word)); word 288 third_party/re2/re2/testing/re2_test.cc CHECK_EQ(word, "cccc"); word 289 third_party/re2/re2/testing/re2_test.cc CHECK(! RE2::FindAndConsume(&input, r, &word)); word 310 third_party/re2/re2/testing/re2_test.cc string word; word 311 third_party/re2/re2/testing/re2_test.cc argv[0] = &word; word 313 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("two", word); word 319 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("three", word); word 420 third_party/zlib/inflate.c # define CRC2(check, word) \ word 422 third_party/zlib/inflate.c hbuf[0] = (unsigned char)(word); \ word 423 third_party/zlib/inflate.c hbuf[1] = (unsigned char)((word) >> 8); \ word 427 third_party/zlib/inflate.c # define CRC4(check, word) \ word 429 third_party/zlib/inflate.c hbuf[0] = (unsigned char)(word); \ word 430 third_party/zlib/inflate.c hbuf[1] = (unsigned char)((word) >> 8); \ word 431 third_party/zlib/inflate.c hbuf[2] = (unsigned char)((word) >> 16); \ word 432 third_party/zlib/inflate.c hbuf[3] = (unsigned char)((word) >> 24); \ word 179 ui/gfx/render_text_win.cc BreakList<size_t>::const_iterator word = breaks.GetBreak(start_char); word 180 ui/gfx/render_text_win.cc BreakList<size_t>::const_iterator next_word = word + 1; word 195 ui/gfx/render_text_win.cc word = next_word++; word 211 ui/gfx/render_text_win.cc *next_char = std::max(word->first, start_char); word 333 ui/gfx/text_elider.cc void AddWord(const base::string16& word); word 411 ui/gfx/text_elider.cc void RectangleString::AddWord(const base::string16& word) { word 412 ui/gfx/text_elider.cc if (word.length() < max_cols_) { word 414 ui/gfx/text_elider.cc if (current_col_ + word.length() >= max_cols_) word 416 ui/gfx/text_elider.cc Append(word); word 421 ui/gfx/text_elider.cc base::i18n::UTF16CharIterator chars(&word); word 425 ui/gfx/text_elider.cc Append(word.substr(array_start, chars.array_pos() - array_start)); word 434 ui/gfx/text_elider.cc Append(word.substr(array_start, chars.array_pos() - array_start)); word 501 ui/gfx/text_elider.cc int WrapWord(const base::string16& word); word 504 ui/gfx/text_elider.cc int AddWordOverflow(const base::string16& word); word 507 ui/gfx/text_elider.cc int AddWord(const base::string16& word); word 605 ui/gfx/text_elider.cc const base::string16& word = words.GetString(); word 606 ui/gfx/text_elider.cc const int lines_added = AddWord(word); word 614 ui/gfx/text_elider.cc if (base::ContainsOnlyChars(word, base::kWhitespaceUTF16)) { word 629 ui/gfx/text_elider.cc int RectangleText::WrapWord(const base::string16& word) { word 631 ui/gfx/text_elider.cc base::string16 text = word; word 651 ui/gfx/text_elider.cc int RectangleText::AddWordOverflow(const base::string16& word) { word 662 ui/gfx/text_elider.cc current_line_ = word; word 665 ui/gfx/text_elider.cc lines_added += WrapWord(word); word 670 ui/gfx/text_elider.cc ElideText(word, font_list_, available_pixel_width_, elide_behavior); word 678 ui/gfx/text_elider.cc int RectangleText::AddWord(const base::string16& word) { word 681 ui/gfx/text_elider.cc base::TrimWhitespace(word, base::TRIM_TRAILING, &trimmed); word 688 ui/gfx/text_elider.cc AddToCurrentLine(word); word 691 ui/gfx/text_elider.cc trimmed : word); word 35 ui/views/controls/textfield/textfield_model_unittest.cc WordAndCursor(const wchar_t* w, size_t c) : word(w), cursor(c) {} word 37 ui/views/controls/textfield/textfield_model_unittest.cc const wchar_t* word; word 627 ui/views/controls/textfield/textfield_model_unittest.cc SelectWordTestVerifier(model, WideToUTF16(word_and_cursor[i].word), word 1808 ui/views/controls/textfield/textfield_unittest.cc gfx::Point word(GetCursorPositionX(4), 0); word 1809 ui/views/controls/textfield/textfield_unittest.cc ui::MouseEvent press_word(ui::ET_MOUSE_PRESSED, word, word, word 1812 ui/views/controls/textfield/textfield_unittest.cc ui::MouseEvent release_word(ui::ET_MOUSE_RELEASED, word, word, word 1816 ui/views/controls/textfield/textfield_unittest.cc ui::MouseEvent double_click(ui::ET_MOUSE_PRESSED, word, word, word 101 ui/views/corewm/tooltip_aura.cc base::string16 word = *w; word 103 ui/views/corewm/tooltip_aura.cc word.push_back(' '); word 104 ui/views/corewm/tooltip_aura.cc int word_width = gfx::GetStringWidth(word, font_list); word 113 ui/views/corewm/tooltip_aura.cc line.append(word);