/external/valgrind/unittest/ |
test_utils.cc | 30 const char *ThreadSanitizerQuery(const char *query) __attribute__((weak)); 32 const char *ThreadSanitizerQuery(const char *query) { 33 printf("Not running under ThreadSanitizer (query=%s)\n", query);
|
/external/llvm/test/FrontendC++/ |
2008-05-07-CrazyOffsetOf.cpp | 6 char * query; member in struct:bork 8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10;
|
/external/webkit/Tools/RebaselineQueueServer/model/ |
queueentry.py | 46 query = QueueEntry.all() 47 query = query.filter('builder =', builder_name).filter('test =', test) 48 for entry in query: 53 query = QueueEntry.all() 54 query = query.filter('builder =', builder_name) 55 return query 59 query = QueueEntry.all() 61 for entry in query [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ShouldQueryStrategy.java | 27 * Decides whether a given source should be queried for a given query, taking 28 * into account the source's query threshold and query after zero results flag. 37 // The last query we've seen 43 // returned zero results for some prefix of the current query. mEmptyCorpora 44 // maps from corpus to the length of the query which returned 45 // zero results. When a query is shortened (e.g., by deleting characters) 55 * Returns whether we should query the given source for the given query. 57 public boolean shouldQueryCorpus(Corpus corpus, String query) { [all...] |
SuggestionCursorProvider.java | 21 * Interface for objects that can produce a SuggestionCursor given a query. 34 * @param query The user query. 36 * @param onlyOne Indicates if this provider is the only one being used for the query. 39 C getSuggestions(String query, int queryLimit, boolean onlyOne);
|
SuggestionNonFormatter.java | 30 public CharSequence formatSuggestion(String query, String suggestion) {
|
SuggestionsProvider.java | 23 * Provides a set of suggestion results for a query.. 29 * Gets suggestions for a query. 31 * @param query The query. 32 * @param corporaToQuery The corpora to query. Must be non-null. 34 Suggestions getSuggestions(String query, List<Corpus> corporaToQuery);
|
/external/webkit/Source/WebKit/chromium/src/ |
LocalizedStrings.cpp | 50 static String query(WebLocalizedString::Name name) function in namespace:WebCore 55 static String query(WebLocalizedString::Name name, const WebString& parameter) function in namespace:WebCore 60 static String query(WebLocalizedString::Name name, const WebString& parameter1, const WebString& parameter2) function in namespace:WebCore 67 return query(WebLocalizedString::SearchableIndexIntroduction); 72 return query(WebLocalizedString::SubmitButtonDefaultLabel); 77 return query(WebLocalizedString::InputElementAltText); 82 return query(WebLocalizedString::ResetButtonDefaultLabel); 87 return query(WebLocalizedString::FileButtonChooseFileLabel); 98 return query(WebLocalizedString::FileButtonNoFileSelectedLabel); 103 return query(WebLocalizedString::SearchMenuNoRecentSearchesText) [all...] |
/external/chromium/googleurl/src/ |
url_canon_query.cc | 33 // Query canonicalization in IE 35 // IE is very permissive for query parameters specified in links on the page 45 // server's job to make sense of this invalid query. 52 // Our query canonicalization 70 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) { 71 int end = query.end(); 72 for (int i = query.begin; i < end; i++) { 97 const url_parse::Component& query, 103 ConvertUTF8ToUTF16(&spec[query.begin], query.len, &utf16) [all...] |
/external/chromium/chrome/browser/sync/util/ |
user_settings_win.cc | 40 SQLStatement query; local 41 query.prepare(dbhandle.get(), 44 query.bind_string(0, service_name.c_str()); 46 if (SQLITE_ROW == query.step()) { 47 *username = query.column_string(0); 50 query.column_blob_as_vector(1, &encrypted_service_token);
|
/bionic/libc/netbsd/resolv/ |
res_debug.h | 25 # define DprintQ(cond, args, query, size) /*empty*/ 30 # define DprintQ(cond, args, query, size) if (cond) {\ 32 res_pquery(statp, query, size, stdout);\
|
/external/chromium/chrome/browser/sync/engine/net/ |
url_translator.cc | 33 // This method appends the query string to the sync server path. 42 string query; local 43 query += kParameterClientID; 44 query += "=" + CgiEscapeString(client_id); 45 return query;
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteDirectCursorDriver.java | 23 * A cursor driver that uses the given query directly. 40 public Cursor query(CursorFactory factory, String[] selectionArgs) { method in class:SQLiteDirectCursorDriver 41 // Compile the query 42 SQLiteQuery query = null; local 47 query = new SQLiteQuery(mDatabase, mSql, 0, selectionArgs); 51 mCursor = new SQLiteCursor(this, mEditTable, query); 53 mCursor = factory.newCursor(mDatabase, this, mEditTable, query); 56 mQuery = query; 57 query = null; 61 if (query != null) query.close() [all...] |
/external/webkit/Source/WebCore/storage/ |
IDBSQLiteBackingStore.cpp | 106 SQLiteStatement query(sqliteDatabase, "SELECT value FROM MetaData WHERE name = 'version'"); 107 if (query.prepare() != SQLResultOk || query.step() != SQLResultRow) 110 *databaseVersion = query.getColumnInt(0); 111 return query.finalize() == SQLResultOk; 225 SQLiteStatement query(m_db, sql); 226 if (query.prepare() != SQLResultOk) { 231 query.bindText(1, name); 232 query.bindText(2, version); 234 query.bindInt64(3, rowId) [all...] |
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
URLQueryCanonicalizer.h | 44 static void canonicalize(const InChar* spec, const URLComponent& query, URLBuffer<OutChar>& buffer, URLComponent& resultQuery) 46 if (query.length() < 0) { 53 convertToQueryEncoding(spec, query, buffer); 58 static bool isAllASCII(const InChar* spec, const URLComponent& query) 60 int end = query.end(); 61 for (int i = query.begin(); i < end; ++i) { 90 static void convertToQueryEncoding(const InChar* spec, const URLComponent& query, URLBuffer<OutChar>& buffer) 92 if (isAllASCII(spec, query)) { 93 appendRaw8BitQueryString(&spec[query.begin()], query.length(), buffer) [all...] |
/development/samples/SampleSyncAdapter/samplesyncadapter_server/model/ |
datastore.py | 40 query = cls.gql('WHERE handle = :1', username) 41 return query.get() 47 query = cls.gql('WHERE handle = :1', username) 48 return query.get().updated 54 query = cls.gql('WHERE handle = :1', username) 55 return query.get().key().id() 61 query = cls.gql('WHERE handle = :1', username) 62 return query.get().status
|
/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/ |
ApplicationsLatency.java | 51 for (String query : queries) { 52 checkSource("APPS", APPS_COMPONENT, query);
|
ContactsLatency.java | 50 for (String query : queries) { 51 checkSource("CONTACTS", CONTACTS_COMPONENT, query);
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/ |
GoogleSource.java | 30 * Called by QSB to get web suggestions for a query. 32 SourceResult queryInternal(String query); 35 * Called by external apps to get web suggestions for a query. 37 SourceResult queryExternal(String query);
|
AbstractGoogleSource.java | 54 * Called by QSB to get web suggestions for a query. 56 public abstract SourceResult queryInternal(String query); 59 * Called by external apps to get web suggestions for a query. 61 public abstract SourceResult queryExternal(String query); 92 public SourceResult getSuggestions(String query, int queryLimit, boolean onlySource) { 93 return emptyIfNull(queryInternal(query), query); 96 public SourceResult getSuggestionsExternal(String query) { 97 return emptyIfNull(queryExternal(query), query); [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
QueryParameterUtils.java | 36 String query = uri.getEncodedQuery(); local 37 if (query == null) { 41 int queryLength = query.length(); 47 index = query.indexOf(parameter, index); 58 if (query.charAt(index) == '=') { 64 int ampIndex = query.indexOf('&', index); 66 value = query.substring(index); 68 value = query.substring(index, ampIndex);
|
/development/tools/emulator/system/camera/ |
QemuClient.cpp | 38 * Qemu query 87 /* Query name cannot be NULL or an empty string. */ 89 LOGE("%s: NULL or an empty string is passed as query name.", 100 /* Preallocated buffer was too small. Allocate a bigger query buffer. */ 103 LOGE("%s: Unable to allocate %d bytes for query buffer", 110 /* At this point mQuery buffer is big enough for the query. */ 122 /* Save query completion status. */ 134 LOGE("%s: Invalid reply to the query", __FUNCTION__); 145 LOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer); 155 LOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer) [all...] |
/external/chromium/chrome/browser/history/ |
query_parser.h | 5 // The query parser is used to parse queries entered into the history 29 // constitute a query. While QueryNode is exposed by way of ParseQuery, it 37 virtual int AppendToSQLiteQuery(string16* query) const = 0; 71 // Parse a query into a SQLite query. The resulting query is placed in 73 int ParseQuery(const string16& query, 76 // Parses the query words in query, returning the nodes that constitute the 77 // valid words in the query. This is intended for later usage wit [all...] |
/external/wpa_supplicant_8/src/ap/ |
ieee802_11_auth.c | 103 static void hostapd_acl_query_free(struct hostapd_acl_query_data *query) 105 if (query == NULL) 107 os_free(query->auth_msg); 108 os_free(query); 114 struct hostapd_acl_query_data *query) 119 query->radius_id = radius_client_get_id(hapd->radius); 120 msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST, query->radius_id); 243 struct hostapd_acl_query_data *query; 255 query = hapd->acl_queries; 256 while (query) { 397 struct hostapd_acl_query_data *query, *prev; local 510 struct hostapd_acl_query_data *query, *prev; local [all...] |
/external/webkit/Source/WebCore/css/ |
MediaQueryListListener.cpp | 34 void MediaQueryListListener::queryChanged(ScriptState* state, MediaQueryList* query) 38 callback.appendArgument(toJS(state, query)); 45 callback.appendArgument(toV8(query));
|