Searched defs:source (Results 1 - 25 of 2611) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2624.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
30 var source = '"snowmen invasion " + "'; variable
32 source += '\u2603';
34 source += '"';
35 eval(source);
H A Dregress-1129.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
34 var source = Array(50000).join("(") + "a" + Array(50000).join(")"); variable
35 var r = RegExp(source);
H A Dregress-2612.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
58 var source = "var "; variable
61 source += [varname(i), "=", rand(), ","].join("");
65 source += [varname(i), "=",
70 source += "x=1; return _0;"
71 var f = new Function(source);
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-sourceslice.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
42 // Build source by putting all lines together
43 var source = ''; variable
45 source += lines[i];
47 eval(source);
53 // Get the script object from one of the functions in the source.
56 // Make sure that the source is as expected.
57 assertEquals(source, script.source);
[all...]
H A Dwith-function-expression.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
28 var source = "(function x() { with({}) { return '' + x; } })()"; variable
31 assertDoesNotThrow(source);
36 var res = assertTrue(eval(source).match(regexp) == 'function');
/external/v8/test/mjsunit/
H A Ddebug-sourceslice.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
42 // Build source by putting all lines together
43 var source = ''; variable
45 source += lines[i];
47 eval(source);
53 // Get the script object from one of the functions in the source.
56 // Make sure that the source is as expected.
57 assertEquals(source, script.source);
[all...]
H A Dwith-function-expression.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
28 var source = "(function x() { with({}) { return '' + x; } })()"; variable
31 assertDoesNotThrow(source);
36 var res = assertTrue(eval(source).match(regexp) == 'function');
/external/v8/test/mjsunit/regress/
H A Dregress-1129.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
34 var source = Array(50000).join("(") + "a" + Array(50000).join(")"); variable
35 var r = RegExp(source);
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DURLMediaSource.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
40 String URLMediaSource::createObjectURL(ScriptExecutionContext* scriptExecutionContext, MediaSourceBase* source) argument
45 if (!scriptExecutionContext || !source)
47 return DOMURL::createPublicURL(scriptExecutionContext, source);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dlocalaudiosource_unittest.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
54 talk_base::scoped_refptr<LocalAudioSource> source = local
58 EXPECT_TRUE(source->options().echo_cancellation.Get(&value));
60 EXPECT_TRUE(source->options().experimental_aec.Get(&value));
62 EXPECT_TRUE(source->options().auto_gain_control.Get(&value));
64 EXPECT_TRUE(source->options().experimental_agc.Get(&value));
66 EXPECT_TRUE(source->options().noise_suppression.Get(&value));
68 EXPECT_TRUE(source->options().highpass_filter.Get(&value));
74 talk_base::scoped_refptr<LocalAudioSource> source local
85 talk_base::scoped_refptr<LocalAudioSource> source = local
98 talk_base::scoped_refptr<LocalAudioSource> source = local
112 talk_base::scoped_refptr<LocalAudioSource> source = local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Durlencode_unittest.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
34 char source[] = "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" local
37 ASSERT_EQ(0, UrlEncode(source, dest, ARRAY_SIZE(dest)));
41 ASSERT_EQ(0, UrlEncode(source, dest, 0));
46 char source[] = "^"; local
48 ASSERT_EQ(3, UrlEncode(source, dest, ARRAY_SIZE(dest)));
56 char source[] = "aa"; local
58 ASSERT_EQ(2, UrlEncode(source, dest, ARRAY_SIZE(dest)));
65 char source[] local
72 char source[] = "A^ "; local
79 char source[] = "A^ "; local
87 char source[] = "A%5E+"; local
94 char source[] = "A%5E+"; local
[all...]
/external/chromium_org/chrome/browser/ui/webui/local_discovery/
H A Dlocal_discovery_ui.cc2 // Use of this source code is governed by a BSD-style license that can be
17 content::WebUIDataSource* source = local
20 source->SetDefaultResource(IDR_LOCAL_DISCOVERY_HTML);
21 source->AddResourcePath("local_discovery.css", IDR_LOCAL_DISCOVERY_CSS);
22 source->AddResourcePath("local_discovery.js", IDR_LOCAL_DISCOVERY_JS);
23 return source;
30 // Set up the chrome://devices/ source.
/external/chromium_org/chrome/browser/ui/webui/memory_internals/
H A Dmemory_internals_ui.cc2 // Use of this source code is governed by a BSD-style license that can be
17 content::WebUIDataSource* source = local
20 source->AddResourcePath("memory_internals.js",
22 source->SetDefaultResource(IDR_MEMORY_INTERNALS_MEMORY_INTERNALS_HTML);
23 return source;
32 // Set up the chrome://memory-internals/ source.
/external/chromium_org/chrome/browser/ui/webui/predictors/
H A Dpredictors_ui.cc2 // Use of this source code is governed by a BSD-style license that can be
18 content::WebUIDataSource* source = local
20 source->AddResourcePath("predictors.js", IDR_PREDICTORS_JS);
21 source->SetDefaultResource(IDR_PREDICTORS_HTML);
22 return source;
/external/chromium_org/chrome/browser/ui/webui/quota_internals/
H A Dquota_internals_ui.cc2 // Use of this source code is governed by a BSD-style license that can be
24 content::WebUIDataSource* source = local
27 source->SetJsonPath("strings.js");
28 source->AddResourcePath(
30 source->AddResourcePath(
32 source->SetDefaultResource(IDR_QUOTA_INTERNALS_MAIN_HTML);
33 return source;
/external/chromium_org/content/browser/speech/endpointer/
H A Denergy_endpointer_params.cc2 // Use of this source code is governed by a BSD-style license that can be
33 void EnergyEndpointerParams::operator=(const EnergyEndpointerParams& source) { argument
34 frame_period_ = source.frame_period();
35 frame_duration_ = source.frame_duration();
36 endpoint_margin_ = source.endpoint_margin();
37 onset_window_ = source.onset_window();
38 speech_on_window_ = source.speech_on_window();
39 offset_window_ = source.offset_window();
40 onset_detect_dur_ = source.onset_detect_dur();
41 onset_confirm_dur_ = source
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTransformSourceLibxslt.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
34 TransformSource::TransformSource(xmlDocPtr source) argument
35 : m_source(source)
/external/chromium_org/v8/src/extensions/
H A Dgc-extension.h2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
38 explicit GCExtension(const char* source) : v8::Extension("v8/gc", source) {} argument
/external/stlport/test/eh/
H A Dtest_assign_op.h32 : source(src) {
37 t = source;
41 //EH_ASSERT( source == t );
44 const T& source; member in struct:test_assign_op
/external/apache-harmony/support/src/test/java/tests/support/
H A DStreams.java35 public static byte[] streamToBytes(InputStream source) throws IOException { argument
39 while ((count = source.read(buffer)) != -1) {
/external/chromium/chrome/browser/content_settings/
H A Dstub_settings_observer.cc2 // Use of this source code is governed by a BSD-style license that can be
20 const NotificationSource& source,
23 Source<HostContentSettingsMap> content_settings(source);
19 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/chrome/browser/ui/tab_contents/
H A Dtab_contents_wrapper_delegate.cc2 // Use of this source code is governed by a BSD-style license that can be
12 TabContentsWrapper* source,
17 TabContentsWrapper* source, int32 page_id) {
11 OnInstallApplication( TabContentsWrapper* source, const WebApplicationInfo& app_info) argument
16 OnDidGetApplicationInfo( TabContentsWrapper* source, int32 page_id) argument
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dcryptohome_ui.cc2 // Use of this source code is governed by a BSD-style license that can be
18 // Returns HTML data source for chrome://cryptohome.
20 content::WebUIDataSource* source = local
22 source->AddResourcePath("cryptohome.js", IDR_CRYPTOHOME_JS);
23 source->SetDefaultResource(IDR_CRYPTOHOME_HTML);
24 return source;
H A Dui_account_tweaks.cc2 // Use of this source code is governed by a BSD-style license that can be
38 content::WebUIDataSource* source) {
39 DCHECK(source);
42 source->AddLocalizedStrings(dict);
37 AddAccountUITweaksLocalizedValues( content::WebUIDataSource* source) argument
/external/chromium_org/chrome/browser/ui/webui/performance_monitor/
H A Dperformance_monitor_ui.cc2 // Use of this source code is governed by a BSD-style license that can be
21 content::WebUIDataSource* source = local
24 source->SetJsonPath("strings.js");
25 source->AddResourcePath("chart.css", IDR_PERFORMANCE_MONITOR_CHART_CSS);
26 source->AddResourcePath("chart.js", IDR_PERFORMANCE_MONITOR_CHART_JS);
27 source->AddResourcePath("jquery.js", IDR_PERFORMANCE_MONITOR_JQUERY_JS);
28 source->AddResourcePath("flot.js", IDR_PERFORMANCE_MONITOR_JQUERY_FLOT_JS);
29 source->SetDefaultResource(IDR_PERFORMANCE_MONITOR_HTML);
31 source->AddString("enableFlagsURL", ASCIIToUTF16(chrome::kChromeUIFlagsURL));
33 source
[all...]

Completed in 1373 milliseconds

1234567891011>>