HomeSort by relevance Sort by last modified time
    Searched defs:shortcuts (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/tools/grit/grit/
shortcuts_unittests.py 6 '''Unit tests for grit.shortcuts
17 from grit import shortcuts namespace
33 warnings = shortcuts.GenerateDuplicateShortcutsWarnings(self.uq, 'PROJECT')
42 warnings = shortcuts.GenerateDuplicateShortcutsWarnings(self.uq, 'PROJECT')
75 warnings = shortcuts.GenerateDuplicateShortcutsWarnings(self.uq, 'PROJECT')
  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_backend.cc 50 // Normally shortcuts have the same match type as the original match they were
176 // When an extension is unloaded, we want to remove any Shortcuts associated
206 history::ShortcutsDatabase::GuidToShortcutMap shortcuts; local
207 db_->LoadShortcuts(&shortcuts);
211 shortcuts.begin()); it != shortcuts.end(); ++it) {
  /external/chromium_org/tools/grit/grit/tool/
build.py 19 from grit import shortcuts namespace
310 # Print warnings if there are any duplicate shortcuts.
311 warnings = shortcuts.GenerateDuplicateShortcutsWarnings(
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CombinedInputOutput.java 102 ArrayList<WeightedString> shortcuts = new ArrayList<>(); local
108 dict.add(word, probabilityInfo, shortcuts.isEmpty() ? null : shortcuts,
114 if (!shortcuts.isEmpty()) shortcuts = new ArrayList<>();
155 shortcuts.add(new WeightedString(shortcut, shortcutFreq));
192 dict.add(word, probabilityInfo, shortcuts.isEmpty() ? null : shortcuts, isNotAWord);
  /external/chromium_org/chrome/browser/history/
shortcuts_database_unittest.cc 162 ShortcutsDatabase::GuidToShortcutMap shortcuts; local
163 db_->LoadShortcuts(&shortcuts);
165 shortcuts.find(shortcut.id));
166 EXPECT_TRUE(it != shortcuts.end());
178 ShortcutsDatabase::GuidToShortcutMap shortcuts; local
179 db_->LoadShortcuts(&shortcuts);
182 shortcuts.find(shortcut_test_db[0].guid);
183 EXPECT_TRUE(it == shortcuts.end());
185 it = shortcuts.find(shortcut_test_db[1].guid);
186 EXPECT_TRUE(it != shortcuts.end())
198 ShortcutsDatabase::GuidToShortcutMap shortcuts; local
215 ShortcutsDatabase::GuidToShortcutMap shortcuts; local
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
resettable_settings_snapshot.h 35 SHORTCUTS = 1 << 4,
37 ALL_FIELDS = STARTUP_MODE | HOMEPAGE | DSE_URL | EXTENSIONS | SHORTCUTS,
58 const std::vector<ShortcutCommand>& shortcuts() const { function in class:ResettableSettingsSnapshot
77 // Collects the shortcuts asynchronously and calls |callback|. If the request
85 const std::vector<ShortcutCommand>& shortcuts);
99 // Chrome shortcuts (e.g. icons on the Windows desktop, etc.) with non-empty
106 // The flag to cancel shortcuts retrieving.
profile_resetter.cc 117 {SHORTCUTS, &ProfileResetter::ResetShortcuts},
323 SHORTCUTS));
325 MarkAsDone(SHORTCUTS);
353 std::vector<ShortcutCommand> shortcuts; local
365 &shortcuts); local
367 return shortcuts;
resettable_settings_snapshot.cc 40 const char kShortcuts[] = "shortcuts";
124 bit_mask |= SHORTCUTS;
149 const std::vector<ShortcutCommand>& shortcuts) {
151 shortcuts_ = shortcuts;
196 if (field_mask & ResettableSettingsSnapshot::SHORTCUTS) {
198 const std::vector<ShortcutCommand>& shortcuts = snapshot.shortcuts(); local
199 for (std::vector<ShortcutCommand>::const_iterator i = shortcuts.begin();
200 i != shortcuts.end(); ++i) {
321 const std::vector<ShortcutCommand>& shortcuts = snapshot.shortcuts() local
    [all...]
profile_resetter_unittest.cc 800 ResetAndWait(ProfileResetter::SHORTCUTS);
939 std::vector<ShortcutCommand> shortcuts = nonorganic_snap.shortcuts(); local
992 base::ListValue* shortcuts = NULL; local
    [all...]
  /external/chromium_org/chrome/installer/util/
shell_util_unittest.cc 448 // Remove shortcuts that target "chrome.exe".
518 // Retarget shortcuts: replace "chrome.exe" with "manganese.exe". Only
519 // shortcuts with non-empty arguments (i.e., shortcut 2) gets updated.
571 // Retarget shortcuts: replace "chrome.exe" with "manganese.exe".
639 // List the shortcuts.
640 std::vector<std::pair<base::FilePath, base::string16> > shortcuts; local
648 &shortcuts));
649 ASSERT_EQ(2u, shortcuts.size());
651 shortcuts[0].first == shortcut3_path ? shortcuts[0] : shortcuts[1]
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/
ver4_patricia_trie_policy.cpp 287 const std::vector<UnigramProperty::ShortcutProperty> shortcuts; local
291 NOT_A_TIMESTAMP /* timestamp */, 0 /* level */, 0 /* count */, &shortcuts);
486 std::vector<UnigramProperty::ShortcutProperty> shortcuts; local
499 shortcuts.emplace_back(&target, shortcutProbability);
505 historicalInfo->getCount(), &shortcuts);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
patricia_trie_policy.cpp 310 // for shortcuts).
414 std::vector<UnigramProperty::ShortcutProperty> shortcuts; local
430 shortcuts.emplace_back(&shortcutTarget, shortcutProbability);
435 NOT_A_TIMESTAMP /* timestamp */, 0 /* level */, 0 /* count */, &shortcuts);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
ver4_patricia_trie_policy.cpp 299 const std::vector<UnigramProperty::ShortcutProperty> shortcuts; local
303 NOT_A_TIMESTAMP /* timestamp */, 0 /* level */, 0 /* count */, &shortcuts);
498 std::vector<UnigramProperty::ShortcutProperty> shortcuts; local
511 shortcuts.emplace_back(&target, shortcutProbability);
517 historicalInfo->getCount(), &shortcuts);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictDecoderEncoderTests.java 145 final ArrayList<WeightedString> shortcuts = new ArrayList<>(); local
148 shortcuts.add(new WeightedString(shortcut, UNIGRAM_FREQ));
152 (shortcutMap == null) ? null : shortcuts, false /* isNotAWord */);
266 final SparseArray<List<Integer>> bigrams, final HashMap<String, List<String>> shortcuts,
277 addUnigrams(words.size(), dict, words, shortcuts); local
279 checkDictionary(dict, words, bigrams, shortcuts);
282 final long read = timeReadingAndCheckDict(file, words, bigrams, shortcuts, bufferType);
290 results.add(runReadAndWrite(sWords, sEmptyBigrams, null /* shortcuts */, bufferType,
292 results.add(runReadAndWrite(sWords, sChainBigrams, null /* shortcuts */, bufferType,
294 results.add(runReadAndWrite(sWords, sStarBigrams, null /* shortcuts */, bufferType
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeSwitcher.java 144 final Map<InputMethodInfo, List<InputMethodSubtype>> shortcuts = local
148 for (final InputMethodInfo imi : shortcuts.keySet()) {
149 final List<InputMethodSubtype> subtypes = shortcuts.get(imi);
150 // TODO: Returns the first found IMI for now. Should handle all shortcuts as
  /external/chromium_org/chrome/browser/profiles/
profile_shortcut_manager_win.cc 61 // The maximum number of characters allowed in profile shortcuts' file names.
63 // existing shortcuts might no longer be found if the name is generated
227 // Gets the user and system directories for desktop shortcuts. Parameters may
280 // Populates |paths| with the file paths of Chrome desktop shortcuts that have
282 // Chrome desktop shortcuts with empty command lines will also be included.
389 // Updates all desktop shortcuts for the given profile to have the specified
391 // is created if no existing ones were found. Whether non-profile shortcuts
415 // Ensure that the distribution supports creating shortcuts. If it doesn't,
456 std::vector<base::FilePath> shortcuts; local
459 &shortcuts);
512 std::vector<base::FilePath> shortcuts; local
563 std::vector<base::FilePath> shortcuts; local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 359 std::vector<UnigramProperty::ShortcutProperty> shortcuts; local
363 shortcuts.emplace_back(&shortcutTargetCodePoints, shortcutProbability);
367 isBlacklisted, probability, timestamp, 0 /* level */, 1 /* count */, &shortcuts);
474 std::vector<UnigramProperty::ShortcutProperty> shortcuts; local
480 shortcuts.emplace_back(&shortcutTargetCodePoints, shortcutProbability);
485 &shortcuts);
    [all...]
  /system/core/libpixelflinger/
scanline.cpp 189 static shortcut_t shortcuts[] = { member in namespace:android
374 const int numFilters = sizeof(shortcuts)/sizeof(shortcut_t);
376 if (c->state.needs.match(shortcuts[i].filter)) {
377 c->scanline = shortcuts[i].scanline;
378 c->init_y = shortcuts[i].init_y;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherProvider.java 2012 final ArrayList<ContentValues> shortcuts = new ArrayList<ContentValues>(); local
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.core_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.core_2.3.5.v20130525.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 373 milliseconds