HomeSort by relevance Sort by last modified time
    Searched full:suggest (Results 1 - 25 of 899) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
warn-missing-braces.c 3 int a[2][2] = { 0, 1, 2, 3 }; // expected-warning{{suggest braces}} expected-warning{{suggest braces}}
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/downloads_overwrite/
bg.js 8 chrome.downloads.onDeterminingFilename.addListener(function(item, suggest) {
9 suggest({filename: item.filename,
  /external/chromium_org/chrome/common/extensions/api/
experimental_discovery.idl 5 // An experimental API that allows extensions to inject suggest links in the recommended pane of the New Tab Page.
9 // The URL to suggest and that will be displayed in the new tab page under
28 // |details|: Detailed information on the URL to suggest.
29 static void suggest(SuggestDetails details);
34 // a linkUrl previously used on a call to suggest.
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dictionary_structure_with_buffer_policy_factory.cpp 17 #include "suggest/policyimpl/dictionary/dictionary_structure_with_buffer_policy_factory.h"
22 #include "suggest/policyimpl/dictionary/dynamic_patricia_trie_policy.h"
23 #include "suggest/policyimpl/dictionary/patricia_trie_policy.h"
24 #include "suggest/policyimpl/dictionary/utils/format_utils.h"
25 #include "suggest/policyimpl/dictionary/utils/mmapped_buffer.h"
dynamic_patricia_trie_policy.h 21 #include "suggest/core/policy/dictionary_structure_with_buffer_policy.h"
22 #include "suggest/policyimpl/dictionary/bigram/dynamic_bigram_list_policy.h"
23 #include "suggest/policyimpl/dictionary/header/header_policy.h"
24 #include "suggest/policyimpl/dictionary/shortcut/dynamic_shortcut_list_policy.h"
25 #include "suggest/policyimpl/dictionary/utils/buffer_with_extendable_buffer.h"
26 #include "suggest/policyimpl/dictionary/utils/mmapped_buffer.h"
  /external/chromium/chrome/common/extensions/docs/examples/api/omnibox/simple-example/
background.html 5 function(text, suggest) {
7 suggest([
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_suggest_policy.h 21 #include "suggest/core/policy/suggest_policy.h"
22 #include "suggest/policyimpl/typing/typing_scoring.h"
23 #include "suggest/policyimpl/typing/typing_traversal.h"
24 #include "suggest/policyimpl/typing/typing_weighting.h"
typing_weighting.cpp 17 #include "suggest/policyimpl/typing/typing_weighting.h"
19 #include "suggest/core/dicnode/dic_node.h"
20 #include "suggest/policyimpl/typing/scoring_params.h"
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
textPrompt.css 31 .suggest-box {
40 .suggest-box .container {
50 .suggest-box-content-item {
59 .suggest-box-content-item .prefix {
63 .suggest-box-content-item.selected {
67 .suggest-box-content-item:hover:not(.selected) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/omnibox/simple-example/
background.js 8 function(text, suggest) {
10 suggest([
  /external/chromium/chrome/common/
instant_types.h 9 // Enum describing the ways instant suggest text can be completed.
  /external/chromium_org/chrome/renderer/resources/extensions/
downloads_custom_bindings.js 23 console.error('Error: Invocation of form suggest(' + typeof(result) +
24 ') doesn\'t match definition suggest({filename: string, ' +
29 console.error('Error: "filename" parameter to suggest() must be a ' +
34 console.error('Error: "conflictAction" parameter to suggest() must be ' +
  /external/clang/test/FixIt/
fixit-unrecoverable.c 2 suggest corrections but are unable to actually recover from
fixit-unrecoverable.cpp 2 suggest corrections but are unable to actually recover from
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_state.h 21 #include "suggest/core/dicnode/internal/dic_node_state_input.h"
22 #include "suggest/core/dicnode/internal/dic_node_state_output.h"
23 #include "suggest/core/dicnode/internal/dic_node_state_prevword.h"
24 #include "suggest/core/dicnode/internal/dic_node_state_scoring.h"
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.cpp 19 #include "suggest/core/dictionary/dictionary.h"
24 #include "suggest/core/dictionary/bigram_dictionary.h"
25 #include "suggest/core/policy/dictionary_header_structure_policy.h"
26 #include "suggest/core/policy/dictionary_structure_with_buffer_policy.h"
27 #include "suggest/core/session/dic_traverse_session.h"
28 #include "suggest/core/suggest.h"
29 #include "suggest/core/suggest_options.h"
30 #include "suggest/policyimpl/gesture/gesture_suggest_policy_factory.h"
31 #include "suggest/policyimpl/typing/typing_suggest_policy_factory.h
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
Android.mk 50 suggest/core/suggest.cpp \
51 $(addprefix suggest/core/dicnode/, \
55 $(addprefix suggest/core/dictionary/, \
61 $(addprefix suggest/core/layout/, \
67 suggest/core/policy/weighting.cpp \
68 suggest/core/session/dic_traverse_session.cpp \
69 $(addprefix suggest/policyimpl/dictionary/, \
85 $(addprefix suggest/policyimpl/dictionary/utils/, \
91 suggest/policyimpl/gesture/gesture_suggest_policy_factory.cpp
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/
suggest.h 21 #include "suggest/core/suggest_interface.h"
22 #include "suggest/core/policy/suggest_policy.h"
42 class Suggest : public SuggestInterface {
44 AK_FORCE_INLINE Suggest(const SuggestPolicy *const suggestPolicy)
48 AK_FORCE_INLINE virtual ~Suggest() {}
55 DISALLOW_IMPLICIT_CONSTRUCTORS(Suggest);
suggest.cpp 17 #include "suggest/core/suggest.h"
19 #include "suggest/core/dicnode/dic_node.h"
20 #include "suggest/core/dicnode/dic_node_priority_queue.h"
21 #include "suggest/core/dicnode/dic_node_vector.h"
22 #include "suggest/core/dictionary/binary_dictionary_shortcut_iterator.h"
23 #include "suggest/core/dictionary/dictionary.h"
24 #include "suggest/core/dictionary/digraph_utils.h"
25 #include "suggest/core/dictionary/shortcut_utils.h"
26 #include "suggest/core/layout/proximity_info.h
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_nodes_cache.cpp 20 #include "suggest/core/dicnode/dic_node_priority_queue.h"
21 #include "suggest/core/dicnode/dic_node_utils.h"
22 #include "suggest/core/dicnode/dic_nodes_cache.h"
  /external/chromium/chrome/browser/autocomplete/
search_provider.h 41 // text. It also starts a task to query the Suggest servers. When that data
78 // ID used in creating URLFetcher for default provider's suggest results.
81 // ID used in creating URLFetcher for keyword provider's suggest results.
122 // Returns true if the keyword provider is valid and has a valid suggest
131 // Returns true if the default provider is valid and has a valid suggest
184 // Returns true when the current query can be sent to the Suggest service.
185 // This will be false e.g. when Suggest is disabled, the query contains
189 // Stops the suggest query.
193 // Creates a URLFetcher requesting suggest results for the specified
199 // Parses the results from the Suggest server and stores up to kMaxMatches o
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
zero_suggest_provider.h 5 // This file contains the zero-suggest autocomplete provider. This experimental
8 // this provider, point --experimental-zero-suggest-url-prefix at an
93 // Whether the URL can get Zero Suggest. For example, don't send the URL of
134 // Fetches zero-suggest suggestions for |current_query_|.
137 // Parses results from the zero-suggest server and updates results.
179 // was a zero suggest request, the provider has completed and their
182 // Whether a zero suggest request triggered a field trial in the omnibox
183 // session. The user could have clicked on a suggestion when zero suggest
185 // suggest but kept typing.
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
dic_traverse_session.cpp 17 #include "suggest/core/session/dic_traverse_session.h"
20 #include "suggest/core/dictionary/dictionary.h"
21 #include "suggest/core/policy/dictionary_header_structure_policy.h"
22 #include "suggest/core/policy/dictionary_structure_with_buffer_policy.h"
  /packages/apps/Browser/tools/
all_search_engines.template.xml 32 - Suggest URL: empty string if this engine has no suggest feature
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/bigram/
bigram_list_policy.h 23 #include "suggest/core/policy/dictionary_bigrams_structure_policy.h"
24 #include "suggest/policyimpl/dictionary/bigram/bigram_list_read_write_utils.h"

Completed in 3705 milliseconds

1 2 3 4 5 6 7 8 91011>>