HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 1 - 25 of 1207) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-2624.js 2 // 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);
regress-1129.js 2 // 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);
regress-2612.js 2 // 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/remoting/webapp/unittests/
base_unittest.js 2 // Use of this source code is governed by a BSD-style license that can be
153 var source = null; variable
158 source = new base.EventSource();
159 source.defineEvents(['foo', 'bar']);
161 source.addEventListener('foo', listener);
164 source = null;
170 source.raiseEvent('foo');
179 source.raiseEvent('foo', data);
186 source.addEventListener('foo', function() {
187 source.addEventListener('foo', function()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-sourceslice.js 2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
29 // Source lines for test.
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...]
with-function-expression.js 2 // 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/chromium_org/chrome/browser/ui/webui/memory_internals/
memory_internals_ui.cc 2 // 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/
predictors_ui.cc 2 // 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/
quota_internals_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
22 content::WebUIDataSource* source = local
25 source->SetUseJsonJSFormatV2();
26 source->SetJsonPath("strings.js");
27 source->AddResourcePath(
29 source->AddResourcePath(
31 source->SetDefaultResource(IDR_QUOTA_INTERNALS_MAIN_HTML);
32 return source;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
localaudiosource_unittest.cc 5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
55 rtc::scoped_refptr<LocalAudioSource> source = local
60 EXPECT_TRUE(source->options().echo_cancellation.Get(&value));
62 EXPECT_TRUE(source->options().experimental_aec.Get(&value));
64 EXPECT_TRUE(source->options().auto_gain_control.Get(&value));
66 EXPECT_TRUE(source->options().experimental_agc.Get(&value));
68 EXPECT_TRUE(source->options().noise_suppression.Get(&value));
70 EXPECT_TRUE(source->options().highpass_filter.Get(&value));
76 rtc::scoped_refptr<LocalAudioSource> source local
88 rtc::scoped_refptr<LocalAudioSource> source = local
102 rtc::scoped_refptr<LocalAudioSource> source = local
117 rtc::scoped_refptr<LocalAudioSource> source = local
    [all...]
  /external/chromium_org/third_party/skia/experimental/webtry/
result.cpp 10 SkBitmap source; variable
  /external/chromium_org/third_party/webrtc/base/
urlencode_unittest.cc 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
19 char source[] = "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" local
22 ASSERT_EQ(0, UrlEncode(source, dest, ARRAY_SIZE(dest)));
26 ASSERT_EQ(0, UrlEncode(source, dest, 0));
31 char source[] = "^"; local
33 ASSERT_EQ(3, UrlEncode(source, dest, ARRAY_SIZE(dest)));
41 char source[] = "aa"; local
43 ASSERT_EQ(2, UrlEncode(source, dest, ARRAY_SIZE(dest)))
50 char source[] = "&"; local
57 char source[] = "A^ "; local
64 char source[] = "A^ "; local
72 char source[] = "A%5E+"; local
79 char source[] = "A%5E+"; local
    [all...]
  /external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
convert_to_auto_ptr.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
22 source() function
30 std::auto_ptr<A> ap2(source());
  /external/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/
ref_1.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
22 const A source() {return A();} function
26 std::reference_wrapper<const A> r = std::ref(source());
  /external/libcxx/test/utilities/utility/forward/
forward1.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
18 A source() {return A();} function
23 std::forward<A&>(source()); // error
forward3.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
18 A source() {return A();} function
forward2.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
18 A source() {return A();} function
forward4.fail.cpp 6 // Source Licenses. See LICENSE.TXT for details.
18 A source() {return A();} function
  /external/chromium_org/chrome/browser/search/
most_visited_iframe_source_unittest.cc 2 // Use of this source code is governed by a BSD-style license that can be
19 MostVisitedIframeSource* source() { return source_.get(); } function in class:MostVisitedIframeSourceTest
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
cryptohome_ui.cc 2 // 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;
  /external/chromium_org/chrome/browser/ui/webui/local_discovery/
local_discovery_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
23 content::WebUIDataSource* source = local
26 source->SetDefaultResource(IDR_LOCAL_DISCOVERY_HTML);
27 source->AddResourcePath("local_discovery.css", IDR_LOCAL_DISCOVERY_CSS);
28 source->AddResourcePath("local_discovery.js", IDR_LOCAL_DISCOVERY_JS);
29 source->AddResourcePath("device.png", IDR_LOCAL_DISCOVERY_DEVICE_PNG);
30 source->AddResourcePath("printer.png", IDR_LOCAL_DISCOVERY_PRINTER_PNG);
32 source->SetUseJsonJSFormatV2();
33 source->AddLocalizedString("serviceRegister",
35 source->AddLocalizedString("manageDevice", IDS_LOCAL_DISCOVERY_MANAGE_DEVICE)
126 content::WebUIDataSource* source = CreateLocalDiscoveryHTMLSource(); local
132 content::WebUIDataSource::Add(Profile::FromWebUI(web_ui), source); local
    [all...]
  /external/chromium_org/content/browser/media/
media_internals_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
20 WebUIDataSource* source = local
23 source->SetJsonPath("strings.js");
25 source->AddResourcePath("media_internals.js", IDR_MEDIA_INTERNALS_JS);
26 source->SetDefaultResource(IDR_MEDIA_INTERNALS_HTML);
27 return source;
webrtc_internals_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
18 WebUIDataSource* source = local
21 source->SetJsonPath("strings.js");
22 source->AddResourcePath("webrtc_internals.js", IDR_WEBRTC_INTERNALS_JS);
23 source->SetDefaultResource(IDR_WEBRTC_INTERNALS_HTML);
24 return source;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDescriptionTest.cpp 4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
35 static inline void assertDescriptionMatchesMask(FontDescription& source, FontTraitsBitfield bitfield)
39 EXPECT_EQ(source.style(), target.style());
40 EXPECT_EQ(source.variant(), target.variant());
41 EXPECT_EQ(source.weight(), target.weight());
42 EXPECT_EQ(source.stretch(), target.stretch());
47 FontDescription source; local
48 source.setStyle(FontStyleNormal);
49 source.setVariant(FontVariantNormal)
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-pipeline.cc 2 // Use of this source code is governed by a BSD-style license that can be
20 const char* source = "(function(a,b) { return a + b; })"; local
22 *v8::Handle<v8::Function>::Cast(CompileRun(source)));

Completed in 1948 milliseconds

1 2 3 4 5 6 7 8 91011>>