Searched defs:results (Results 176 - 200 of 305) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/extensions/
H A Dextensions_ui.cc245 DictionaryValue results; local
247 // Add the extensions to the results structure.
284 results.Set("extensions", extensions_list);
288 results.SetBoolean("developerMode", developer_mode);
290 web_ui_->CallJavascriptFunction("returnExtensionsData", results);
556 ListValue results; local
557 web_ui_->CallJavascriptFunction("hidePackDialog", results);
613 // Add the extensions to the results structure.
614 ListValue results; local
615 results
[all...]
/external/chromium/chrome/browser/history/
H A Dtext_database_manager.cc415 std::vector<TextDatabase::Match>* results,
417 results->clear();
466 // Adjust the max count according to how many results we've already got.
469 static_cast<int>(results->size());
476 results, &found_urls, first_time_searched);
480 static_cast<int>(results->size()) <= options.max_count);
482 static_cast<int>(results->size()) >= options.max_count)
483 break; // Got the max number of results.
412 GetTextMatches( const string16& query, const QueryOptions& options, std::vector<TextDatabase::Match>* results, Time* first_time_searched) argument
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_database_unittest.cc827 // Add the GetHash results to the cache.
833 std::vector<SBFullHashResult> results; local
834 results.push_back(full_hash);
837 results.push_back(full_hash);
840 database_->CacheHashResults(prefixes, results);
964 // Prefixes with no full results are misses.
/external/chromium/net/base/
H A Dx509_certificate.cc348 CertificateList results; local
351 return results;
357 results.push_back(scoped_refptr<X509Certificate>(result));
361 return results;
H A Dx509_certificate_openssl.cc363 OSCertHandles results; local
365 return results;
371 results.push_back(handle);
375 CreateOSCertHandlesFromPKCS7Bytes(data, length, &results);
384 return results;
/external/chromium/net/proxy/
H A Dproxy_resolver_v8.cc59 // implemented -- whether they should restrict to IPv4 results, or
351 int ResolveProxy(const GURL& query_url, ProxyInfo* results) { argument
398 results->UsePacString(UTF16ToASCII(ret_str));
689 ProxyInfo* results,
713 int rv = context_->ResolveProxy(query_url, results);
688 GetProxyForURL(const GURL& query_url, ProxyInfo* results, CompletionCallback* , RequestHandle* , const BoundNetLog& net_log) argument
/external/dbus/dbus/
H A Ddbus-sha.c446 * the message digest and zeroing the context. The results are
451 * @param results string to append the 20-byte SHA digest to
457 DBusString *results)
463 if (!_dbus_string_append_len (results, digest, 20))
525 DBusString results; local
530 if (!_dbus_string_init (&results))
531 _dbus_assert_not_reached ("no memory for SHA-1 results");
533 if (!_dbus_sha_compute (&input_str, &results))
534 _dbus_assert_not_reached ("no memory for SHA-1 results");
536 if (!_dbus_string_equal (&expected_str, &results))
456 _dbus_sha_final(DBusSHAContext *context, DBusString *results) argument
659 get_next_expected_result(DBusString *results, DBusString *result) argument
743 DBusString results; local
[all...]
/external/icu4c/i18n/
H A Duspoof.cpp554 int32_t results = uspoof_areConfusable(sc, s1U, lengthS1U, s2U, lengthS2U, status); local
562 return results;
577 int32_t results = uspoof_areConfusable(sc, u1, length1, u2, length2, status); local
578 return results;
682 // Unnormalized results should be very rare.
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
H A DBlenderKey.java287 * This method creates an object where loading results will be stores. Only those features will be allowed to store
289 * @return an object to store loading results
485 * This class holds the loading results according to the given loading flag.
671 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException { argument
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DMesh.java850 CollisionResults results){
856 return collisionTree.collideWith(other, worldMatrix, worldBound, results);
1240 * modifying it will cause undefined results.
1253 * modifying it will cause undefined results.
847 collideWith(Collidable other, Matrix4f worldMatrix, BoundingVolume worldBound, CollisionResults results) argument
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
H A DPhysicsSpace.java653 * Performs a ray collision test and returns the results as a list of PhysicsRayTestResults
656 List<PhysicsRayTestResult> results = new LinkedList<PhysicsRayTestResult>();
657 dynamicsWorld.rayTest(Converter.convert(from, rayVec1), Converter.convert(to, rayVec2), new InternalRayListener(results));
658 return results;
662 * Performs a ray collision test and returns the results as a list of PhysicsRayTestResults
664 public List<PhysicsRayTestResult> rayTest(Vector3f from, Vector3f to, List<PhysicsRayTestResult> results) { argument
665 results.clear();
666 dynamicsWorld.rayTest(Converter.convert(from, rayVec1), Converter.convert(to, rayVec2), new InternalRayListener(results));
667 return results;
672 private List<PhysicsRayTestResult> results; field in class:PhysicsSpace.InternalRayListener
674 InternalRayListener(List<PhysicsRayTestResult> results) argument
707 sweepTest(CollisionShape shape, Transform start, Transform end, List<PhysicsSweepTestResult> results) argument
719 private List<PhysicsSweepTestResult> results; field in class:PhysicsSpace.InternalSweepListener
721 InternalSweepListener(List<PhysicsSweepTestResult> results) argument
[all...]
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c472 SR_SemanticResult** results,
518 * If the array to hold the results is not big enough,
668 if (&results[resultIdx] != NULL) /* SemanticResultImpl assumed to have been created externally */
669 interpretScripts(semproc, semproc->acc_scripts, &results[resultIdx]);
677 hashmap = ((SR_SemanticResultImpl*)results[resultIdx])->results;
776 SR_SemanticResult** results,
841 * If the array to hold the results is not big enough,
984 if (&results[resultIdx] != NULL) /* SemanticResultImpl assumed to have been created externally */
985 interpretScripts(semproc, acc_scripts, &results[resultId
469 SR_SemanticProcessor_CheckParseByWordID(SR_SemanticProcessor* self, SR_SemanticGraph* graph, wordID* wordIDs, SR_SemanticResult** results, size_t* resultCount) argument
773 SR_SemanticProcessor_CheckParse(SR_SemanticProcessor* self, SR_SemanticGraph* graph, const LCHAR* transcription, SR_SemanticResult** results, size_t* resultCount) argument
[all...]
/external/v8/test/cctest/
H A Dtest-strings.cc460 Handle<Object> results[] = { local
475 CHECK_EQ(results[i]->IsUndefined(), result->IsUndefined());
476 CHECK_EQ(results[i]->IsNumber(), result->IsNumber());
478 CHECK_EQ(Smi::cast(results[i]->ToSmi()->ToObjectChecked())->value(),
/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.cpp243 // since we will want to ignore results in this area.
262 // since we will want to ignore results in this area.
276 Vector<TextCheckingResult> results; local
278 m_client->textChecker()->checkTextOfParagraph(paragraphString.characters(), paragraphString.length(), checkingTypes, results);
280 for (unsigned i = 0; i < results.size(); i++) {
281 const TextCheckingResult* result = &results[i];
417 // since we will want to ignore results in this area.
420 // Start checking from beginning of paragraph, but skip past results that occur before the start of the original search range.
455 // These results were all between the start of the paragraph and the start of the search range; look
526 Vector<TextCheckingResult> results;
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DAuditsPanel.js48 this.clearResultsButton = new WebInspector.StatusBarButton(WebInspector.UIString("Clear audit results."), "clear-status-bar-item");
128 var results = []; variable
139 resultCallback(mainResourceURL, results);
143 resultCallback(mainResourceURL, results);
150 results.push(result);
155 _auditFinishedCallback: function(launcherCallback, mainResourceURL, results)
164 var resultTreeElement = new WebInspector.AuditResultSidebarTreeElement(results, mainResourceURL, ordinal);
448 WebInspector.AuditResultSidebarTreeElement = function(results, mainResourceURL, ordinal)
450 this.results = results;
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DClipboardWin.cpp503 static void addMimeTypesForFormat(HashSet<String>& results, const FORMATETC& format) argument
507 results.add("URL");
508 results.add("text/uri-list");
512 results.add("Text");
513 results.add("text/plain");
520 HashSet<String> results; local
522 return results;
525 return results;
531 return results;
534 return results;
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Dctrl_iface.c477 * skipped when processing scan results.
1507 struct wpa_scan_results *results; local
1517 results = wpa_s->scan_res;
1518 if (results == NULL)
1522 for (i = 0; i < results->num; i++) {
1523 if (os_memcmp(bssid, results->res[i]->bssid, ETH_ALEN)
1530 if (i >= results->num || results->res[i] == NULL)
1533 bss = results->res[i];
H A Dwpa_priv.c190 struct wpa_scan_result *results = NULL; local
194 results = os_malloc(SCAN_AP_LIMIT * sizeof(*results));
195 if (results == NULL)
198 res = iface->driver->get_scan_results(iface->drv_priv, results,
213 struct wpa_scan_result *r = &results[i];
273 os_free(results);
278 os_free(results);
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Ddriver_broadcom.c396 wpa_printf(MSG_DEBUG, "Scan timeout - try to get results");
436 struct wpa_scan_result *results,
460 os_memset(results, 0, max_size * sizeof(struct wpa_scan_result));
466 os_memcpy(results[ap_num].bssid, &wbi->BSSID, ETH_ALEN);
467 os_memcpy(results[ap_num].ssid, wbi->SSID, wbi->SSID_len);
468 results[ap_num].ssid_len = wbi->SSID_len;
469 results[ap_num].freq = frequency_list[wbi->channel - 1];
487 os_memcpy(results[ap_num].wpa_ie, ie, ie->len + 2);
488 results[ap_num].wpa_ie_len = ie->len + 2;
495 wpa_printf(MSG_MSGDUMP, "Received %d bytes of scan results (
435 wpa_driver_broadcom_get_scan_results(void *priv, struct wpa_scan_result *results, size_t max_size) argument
[all...]
H A Ddriver_bsd.c553 /* Compare function for sorting scan results. Return >0 if @b is consider
616 struct wpa_scan_result *results,
627 os_memset(results, 0, max_size * sizeof(struct wpa_scan_result));
633 wsr = results;
674 qsort(results, wsr - results, sizeof(struct wpa_scan_result),
677 wpa_printf(MSG_DEBUG, "Received %d bytes of scan results (%d BSSes)",
678 len, wsr - results);
680 return wsr - results;
615 wpa_driver_bsd_get_scan_results(void *priv, struct wpa_scan_result *results, size_t max_size) argument
H A Ddriver_privsep.c130 struct wpa_scan_results *results; local
143 wpa_printf(MSG_DEBUG, "privsep: Received %lu bytes of scan results",
161 results = os_zalloc(sizeof(*results));
162 if (results == NULL) {
167 results->res = os_zalloc(num * sizeof(struct wpa_scan_res *));
168 if (results->res == NULL) {
169 os_free(results);
174 while (results->num < (size_t) num && pos + sizeof(int) < end) {
191 results
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_privsep.c118 struct wpa_scan_results *results; local
131 wpa_printf(MSG_DEBUG, "privsep: Received %lu bytes of scan results",
149 results = os_zalloc(sizeof(*results));
150 if (results == NULL) {
155 results->res = os_calloc(num, sizeof(struct wpa_scan_res *));
156 if (results->res == NULL) {
157 os_free(results);
162 while (results->num < (size_t) num && pos + sizeof(int) < end) {
179 results
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_privsep.c118 struct wpa_scan_results *results; local
131 wpa_printf(MSG_DEBUG, "privsep: Received %lu bytes of scan results",
149 results = os_zalloc(sizeof(*results));
150 if (results == NULL) {
155 results->res = os_calloc(num, sizeof(struct wpa_scan_res *));
156 if (results->res == NULL) {
157 os_free(results);
162 while (results->num < (size_t) num && pos + sizeof(int) < end) {
179 results
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_privsep.c118 struct wpa_scan_results *results; local
131 wpa_printf(MSG_DEBUG, "privsep: Received %lu bytes of scan results",
149 results = os_zalloc(sizeof(*results));
150 if (results == NULL) {
155 results->res = os_calloc(num, sizeof(struct wpa_scan_res *));
156 if (results->res == NULL) {
157 os_free(results);
162 while (results->num < (size_t) num && pos + sizeof(int) < end) {
179 results
[all...]
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_acl.c1057 ** The address of link policy results are returned in the callback.
2494 ** The address of link policy results are returned in the callback.
2583 ** TX power of the connection. The tx power level results
2650 tBTM_TX_POWER_RESULTS results; local
2662 STREAM_TO_UINT8 (results.hci_status, p);
2664 if (results.hci_status == HCI_SUCCESS)
2666 results.status = BTM_SUCCESS;
2671 STREAM_TO_UINT8 (results.tx_power, p);
2678 memcpy (results.rem_bda, p_acl_cb->remote_addr, BD_ADDR_LEN);
2686 STREAM_TO_UINT8 (results
2713 tBTM_RSSI_RESULTS results; local
2767 tBTM_LINK_QUALITY_RESULTS results; local
[all...]

Completed in 485 milliseconds

1234567891011>>