Searched refs:query (Results 251 - 275 of 912) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DAdvancedSearchController.js375 var searchConfig = new WebInspector.SearchConfig(this.searchConfig.query, this.searchConfig.ignoreCase, this.searchConfig.isRegex);
382 this._search.value = searchConfig.query;
395 if (!this.searchConfig.query || !this.searchConfig.query.length)
408 * @param {string} query
412 WebInspector.SearchConfig = function(query, ignoreCase, isRegex)
414 this.query = query;
562 var regex = createSearchRegex(this._searchConfig.query, !this._searchConfig.ignoreCase, this._searchConfig.isRegex);
H A DConsolePanel.js75 * @param {string} query
77 performSearch: function(query)
81 this._searchRegex = createPlainTextSearchRegex(query, "gi");
H A DDatabase.js96 * @param {string} query
100 executeSql: function(query, onSuccess, onError)
127 DatabaseAgent.executeSQL(this._id, query, callback.bind(this));
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamerBase.cpp630 GstQuery* query = gst_query_new_position(GST_FORMAT_BYTES); local
633 if (audioSink() && gst_element_query(audioSink(), query))
634 gst_query_parse_position(query, 0, &position);
636 gst_query_unref(query);
642 GstQuery* query = gst_query_new_position(GST_FORMAT_BYTES); local
645 if (gst_element_query(m_webkitVideoSink.get(), query))
646 gst_query_parse_position(query, 0, &position);
648 gst_query_unref(query);
/macosx-10.9.5/apache-786.1/httpd/modules/database/
H A Dmod_dbd.c229 static const char *dbd_prepare(cmd_parms *cmd, void *dconf, const char *query, argument
233 label = query;
234 query = "";
237 ap_dbd_prepare(cmd->server, query, label);
275 DBD_DECLARE_NONSTD(void) ap_dbd_prepare(server_rec *s, const char *query, argument
291 && strcmp(query, "")) {
296 apr_hash_set(svr->cfg->queries, label, APR_HASH_KEY_STRING, query);
300 const char *label, *query; member in struct:__anon5904
347 const char *label, *query; local
350 apr_hash_this(hi, (void*) &label, NULL, (void*) &query);
406 const char *label, *query; local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/net/
H A Deudcb-mab.el43 (eudc-protocol-set 'eudc-query-function 'eudc-mab-query-internal 'mab)
46 (eudc-protocol-set 'eudc-protocol-has-default-query-attributes nil 'mab)
48 (defun eudc-mab-query-internal (query &optional return-attrs)
81 (dolist (term query)
/macosx-10.9.5/libsecurity_ldap_dl-55002/lib/
H A DTableRelation.cpp113 Query* TableRelation::MakeQuery (const CSSM_QUERY* query) argument
115 return new TableQuery (this, query);
/macosx-10.9.5/libxml2-26/libxml2/
H A DtestURI.c43 if (uri->query) printf("query: %s\n", uri->query);
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSShared/
H A Ddnsextd_lexer.l65 allow-query return ALLOWQUERY;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A DtestURI.c43 if (uri->query) printf("query: %s\n", uri->query);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/ICONS/
H A Dicons.rb66 def self.query(*args) # icon, icon, ..., ?option=>value, ...? singleton method in class:Tk.ICONS
69 simplelist(tk_call('::icons::icons', 'query',
72 simplelist(tk_call('::icons::icons', 'query', args.flatten))
123 def query(keys={}) method in class:Tk
124 list(simplelist(tk_call('::icons::icons', 'query',
/macosx-10.9.5/ruby-104/ruby/test/webrick/
H A Dwebrick.cgi9 elsif (q = req.query).size > 0
H A Dwebrick_long_filename.cgi9 elsif (q = req.query).size > 0
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecItem.cpp53 OSStatus SecItemCopyMatching_osx(CFDictionaryRef query, CFTypeRef *result);
54 OSStatus SecItemUpdate_osx(CFDictionaryRef query, CFDictionaryRef attributesToUpdate);
55 OSStatus SecItemDelete_osx(CFDictionaryRef query);
59 OSStatus SecItemCopyMatching_ios(CFDictionaryRef query, CFTypeRef *result);
60 OSStatus SecItemUpdate_ios(CFDictionaryRef query, CFDictionaryRef attributesToUpdate);
61 OSStatus SecItemDelete_ios(CFDictionaryRef query);
64 CFTypeRef SecItemCopyMergedResults(CFDictionaryRef query, CFTypeRef result_osx, CFTypeRef result_ios);
2479 _StringCompareFlagsFromQuery(CFDictionaryRef query) argument
2483 if (!query) return flags;
2485 if (CFDictionaryGetValueIfPresent(query, kSecMatchSubjectStartsWit
2505 _CssmKeyUsageFromQuery(CFDictionaryRef query) argument
2635 CFDictionaryRef query; // caller-supplied query member in struct:SecItemParams
3316 CFDictionaryRef query = itemParams->query; local
3658 SecItemSynchronizable(CFDictionaryRef query) argument
3670 SecItemSynchronizableAny(CFDictionaryRef query) argument
3719 SecItemHasSynchronizablePersistentReference(CFDictionaryRef query) argument
3748 SecItemChangeSynchronizability(CFDictionaryRef query, CFDictionaryRef changes, Boolean toSyncable) argument
4147 SecItemCopyMergedResults(CFDictionaryRef query, CFTypeRef result_osx, CFTypeRef result_ios) argument
4167 SecItemCopyMatching(CFDictionaryRef query, CFTypeRef *result) argument
4293 SecItemUpdate(CFDictionaryRef query, CFDictionaryRef attributesToUpdate) argument
4364 SecItemDelete(CFDictionaryRef query) argument
4428 SecItemCopyMatching_osx( CFDictionaryRef query, CFTypeRef *result) argument
4641 SecItemUpdate_osx( CFDictionaryRef query, CFDictionaryRef attributesToUpdate) argument
4680 SecItemDelete_osx( CFDictionaryRef query) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecItem.cpp53 OSStatus SecItemCopyMatching_osx(CFDictionaryRef query, CFTypeRef *result);
54 OSStatus SecItemUpdate_osx(CFDictionaryRef query, CFDictionaryRef attributesToUpdate);
55 OSStatus SecItemDelete_osx(CFDictionaryRef query);
59 OSStatus SecItemCopyMatching_ios(CFDictionaryRef query, CFTypeRef *result);
60 OSStatus SecItemUpdate_ios(CFDictionaryRef query, CFDictionaryRef attributesToUpdate);
61 OSStatus SecItemDelete_ios(CFDictionaryRef query);
64 CFTypeRef SecItemCopyMergedResults(CFDictionaryRef query, CFTypeRef result_osx, CFTypeRef result_ios);
2479 _StringCompareFlagsFromQuery(CFDictionaryRef query) argument
2483 if (!query) return flags;
2485 if (CFDictionaryGetValueIfPresent(query, kSecMatchSubjectStartsWit
2505 _CssmKeyUsageFromQuery(CFDictionaryRef query) argument
2635 CFDictionaryRef query; // caller-supplied query member in struct:SecItemParams
3316 CFDictionaryRef query = itemParams->query; local
3658 SecItemSynchronizable(CFDictionaryRef query) argument
3670 SecItemSynchronizableAny(CFDictionaryRef query) argument
3719 SecItemHasSynchronizablePersistentReference(CFDictionaryRef query) argument
3748 SecItemChangeSynchronizability(CFDictionaryRef query, CFDictionaryRef changes, Boolean toSyncable) argument
4147 SecItemCopyMergedResults(CFDictionaryRef query, CFTypeRef result_osx, CFTypeRef result_ios) argument
4167 SecItemCopyMatching(CFDictionaryRef query, CFTypeRef *result) argument
4293 SecItemUpdate(CFDictionaryRef query, CFDictionaryRef attributesToUpdate) argument
4364 SecItemDelete(CFDictionaryRef query) argument
4428 SecItemCopyMatching_osx( CFDictionaryRef query, CFTypeRef *result) argument
4641 SecItemUpdate_osx( CFDictionaryRef query, CFDictionaryRef attributesToUpdate) argument
4680 SecItemDelete_osx( CFDictionaryRef query) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecItem.cpp53 OSStatus SecItemCopyMatching_osx(CFDictionaryRef query, CFTypeRef *result);
54 OSStatus SecItemUpdate_osx(CFDictionaryRef query, CFDictionaryRef attributesToUpdate);
55 OSStatus SecItemDelete_osx(CFDictionaryRef query);
59 OSStatus SecItemCopyMatching_ios(CFDictionaryRef query, CFTypeRef *result);
60 OSStatus SecItemUpdate_ios(CFDictionaryRef query, CFDictionaryRef attributesToUpdate);
61 OSStatus SecItemDelete_ios(CFDictionaryRef query);
64 CFTypeRef SecItemCopyMergedResults(CFDictionaryRef query, CFTypeRef result_osx, CFTypeRef result_ios);
2479 _StringCompareFlagsFromQuery(CFDictionaryRef query) argument
2483 if (!query) return flags;
2485 if (CFDictionaryGetValueIfPresent(query, kSecMatchSubjectStartsWit
2505 _CssmKeyUsageFromQuery(CFDictionaryRef query) argument
2635 CFDictionaryRef query; // caller-supplied query member in struct:SecItemParams
3316 CFDictionaryRef query = itemParams->query; local
3658 SecItemSynchronizable(CFDictionaryRef query) argument
3670 SecItemSynchronizableAny(CFDictionaryRef query) argument
3719 SecItemHasSynchronizablePersistentReference(CFDictionaryRef query) argument
3748 SecItemChangeSynchronizability(CFDictionaryRef query, CFDictionaryRef changes, Boolean toSyncable) argument
4147 SecItemCopyMergedResults(CFDictionaryRef query, CFTypeRef result_osx, CFTypeRef result_ios) argument
4167 SecItemCopyMatching(CFDictionaryRef query, CFTypeRef *result) argument
4293 SecItemUpdate(CFDictionaryRef query, CFDictionaryRef attributesToUpdate) argument
4364 SecItemDelete(CFDictionaryRef query) argument
4428 SecItemCopyMatching_osx( CFDictionaryRef query, CFTypeRef *result) argument
4641 SecItemUpdate_osx( CFDictionaryRef query, CFDictionaryRef attributesToUpdate) argument
4680 SecItemDelete_osx( CFDictionaryRef query) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/postmap/
H A Dpostmap.c61 /* Enable message body query mode. When reading lookup keys
93 /* Enable message header query mode. When reading lookup keys
166 /* The \fBpostmap\fR(1) command can query any supported file type,
238 /* postalias(1), create/update/query alias database
324 int dict_flags; /* query flags */
473 msg_fatal("table %s:%s: query error: %m",
553 msg_fatal("table %s:%s: query error: %m",
618 /* postmap_query - query a map and print the result to stdout */
637 msg_fatal("table %s:%s: query error: %m", dict->type, dict->name);
774 char *query local
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSMacOSX/PreferencePane/
H A DDNSServiceDiscoveryPref.m162 MyDNSServiceCleanUp(MyDNSServiceState * query)
165 CFRunLoopRemoveSource(CFRunLoopGetCurrent(), query->source, kCFRunLoopCommonModes);
166 CFRelease(query->source);
169 CFSocketInvalidate(query->socket);
170 CFRelease(query->socket);
176 /* Terminate the connection with the mDNSResponder daemon, which cancels the query. */
177 DNSServiceRefDeallocate(query->service);
192 MyDNSServiceState * query = (MyDNSServiceState *)info; // context passed in to CFSocketCreateWithNative().
193 assert(query != NULL);
196 err= DNSServiceProcessResult(query
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/csv/
H A Dquery_main.c80 if ((ret = query(*clp, &done)) != 0)
/macosx-10.9.5/CPANInternal-140/Class-DBI-AbstractSearch-0.07/lib/Class/DBI/
H A DAbstractSearch.pm83 for hash options. Takes a hash reference to specify additional query
93 your query.
107 Scalar value that will be used for LIMIT argument in a query.
113 Scalar value that will be used for OFFSET argument in a query.
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/SQLAHacks/
H A DOracleJoins.pm116 not possible due to the fact that Oracle requires the entire query be written
118 called to create the where query and table definition part of the sql query,
136 Creates the left/right relationship in the where query.
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Pg-0.16007/inc/Module/Install/
H A DRepository.pm48 if (my $query_repo = `darcs query repo`) {
/macosx-10.9.5/CPANInternal-140/JSON-Any-1.29/inc/Module/Install/
H A DRepository.pm48 if (my $query_repo = `darcs query repo`) {
/macosx-10.9.5/CPANInternal-140/JSON-RPC-1.03/inc/Module/Install/
H A DRepository.pm48 if (my $query_repo = `darcs query repo`) {
/macosx-10.9.5/CPANInternal-140/Net-DNS/demo/
H A Dcheck_soa53 my $ns_req = $res->query($domain, "NS");
71 # Set the resolver to query this nameserver.
81 my $a_req = $local_res->query($ns, 'A');

Completed in 330 milliseconds

<<11121314151617181920>>