Searched refs:source (Results 1 - 25 of 5312) 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-491.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
32 var source = '(function f(){';
34 if (i != 0) source += ';';
35 source += '"x"';
37 source += '})()';
38 eval(source);
/external/clang/test/Frontend/
H A Dverify2.c10 #error source
18 // CHECK-NEXT: Line 10: source
/external/chromium_org/v8/test/mjsunit/
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');
H A Dglobal-load-from-nested-eval.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
33 function test(source) {
34 eval('eval(' + source +')');
39 function testWith(source) {
41 eval('eval(' + source +')');
47 function testEval(source) {
50 eval('eval('+ source + ')');
57 function testEvalDontShadow(source) {
59 eval('eval(' + source
[all...]
H A Dconst-eval-init.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
36 var source =
43 eval(source);
50 var source =
57 eval(source);
65 var source = "delete x; const x = 7; assertEquals(7, x)";
66 eval(source);
83 var source = "delete x; const x = 8";
84 eval(source);
[all...]
H A Dlocal-load-from-eval.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
30 function test(source) {
32 eval(source);
/external/v8/test/mjsunit/
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');
H A Dglobal-load-from-nested-eval.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
33 function test(source) {
34 eval('eval(' + source +')');
39 function testWith(source) {
41 eval('eval(' + source +')');
47 function testEval(source) {
50 eval('eval('+ source + ')');
57 function testEvalDontShadow(source) {
59 eval('eval(' + source
[all...]
H A Dconst-eval-init.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
36 var source =
43 eval(source);
50 var source =
57 eval(source);
65 var source = "delete x; const x = 7; assertEquals(7, x)";
66 eval(source);
83 var source = "delete x; const x = 8";
84 eval(source);
[all...]
H A Dlocal-load-from-eval.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
30 function test(source) {
32 eval(source);
/external/chromium_org/chrome/browser/ui/webui/task_manager/
H A Dtask_manager_ui.cc2 // Use of this source code is governed by a BSD-style license that can be
27 content::WebUIDataSource* source = local
29 source->SetUseJsonJSFormatV2();
31 source->AddLocalizedString("closeWindow", IDS_CLOSE);
32 source->AddLocalizedString("title", IDS_TASK_MANAGER_TITLE);
33 source->AddLocalizedString("aboutMemoryLink",
35 source->AddLocalizedString("killButton", IDS_TASK_MANAGER_KILL);
36 source->AddLocalizedString("processIDColumn",
38 source->AddLocalizedString("taskColumn", IDS_TASK_MANAGER_TASK_COLUMN);
39 source
[all...]
/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...]
/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);
H A Dregress-491.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
32 var source = '(function f(){';
34 if (i != 0) source += ';';
35 source += '"x"';
37 source += '})()';
38 eval(source);
H A Dregress-492.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
32 var source = '(function f(';
34 if (arg != 0) source += ',';
35 source += 'arg' + arg;
37 source += ') { })()';
38 eval(source);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecASCIIFastPath.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
36 static void copy(LChar* destination, const uint8_t* source) argument
38 memcpy(destination, source, 4);
41 static void copy(UChar* destination, const uint8_t* source) argument
43 destination[0] = source[0];
44 destination[1] = source[1];
45 destination[2] = source[2];
46 destination[3] = source[3];
50 static void copy(LChar* destination, const uint8_t* source) argument
55 copy(UChar* destination, const uint8_t* source) argument
68 copyASCIIMachineWord(LChar* destination, const uint8_t* source) argument
73 copyASCIIMachineWord(UChar* destination, const uint8_t* source) argument
[all...]
/external/chromium_org/ui/keyboard/
H A Dkeyboard_ui_controller.cc2 // Use of this source code is governed by a BSD-style license that can be
18 content::WebUIDataSource* source = local
21 source->SetDefaultResource(IDR_KEYBOARD_WEBUI_INDEX);
22 source->AddResourcePath("elements/kb-altkey.html",
24 source->AddResourcePath("elements/kb-altkey-container.html",
26 source->AddResourcePath("elements/kb-altkey-data.html",
28 source->AddResourcePath("elements/kb-altkey-set.html",
30 source->AddResourcePath("elements/kb-key.html", IDR_KEYBOARD_ELEMENTS_KEY);
31 source->AddResourcePath("elements/kb-key-base.html",
33 source
[all...]
/external/guava/guava/src/com/google/common/eventbus/
H A DDeadEvent.java34 private final Object source; field in class:DeadEvent
40 * @param source object broadcasting the DeadEvent (generally the
44 public DeadEvent(Object source, Object event) { argument
45 this.source = source;
53 * @return the source of this event.
56 return source;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DInputStreamPreprocessor.h6 * Redistribution and use in source and binary forms, with or without
9 * 1. Redistributions of source code must retain the above copyright
53 // characters in |source| (after collapsing \r\n, etc).
54 ALWAYS_INLINE bool peek(SegmentedString& source) argument
56 m_nextInputCharacter = source.currentChar();
67 return processNextInputCharacter(source);
70 // Returns whether there are more characters in |source| after advancing.
71 ALWAYS_INLINE bool advance(SegmentedString& source) argument
73 source.advanceAndUpdateLineNumber();
74 if (source
88 processNextInputCharacter(SegmentedString& source) argument
[all...]
/external/chromium_org/net/proxy/
H A Dproxy_config_source.cc2 // Use of this source code is governed by a BSD-style license that can be
30 const char* ProxyConfigSourceToString(ProxyConfigSource source) { argument
31 DCHECK_GT(NUM_PROXY_CONFIG_SOURCES, source);
32 return kSourceNames[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/v8/test/mjsunit/compiler/
H A Dliterals.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
41 assertEquals("\\x1/", RegExp("\\x1/").source);
42 assertEquals("\\u111/", RegExp("\\u111/").source);
47 assertEquals("\\x1:", /\x1:/.source);
48 assertEquals("\\u111:", /\u111:/.source);
53 assertEquals("\\x1`", /\x1`/.source);
54 assertEquals("\\u111`", /\u111`/.source);
59 assertEquals("\\x1g", /\x1g/.source);
60 assertEquals("\\u111g", /\u111g/.source);
[all...]
/external/v8/test/mjsunit/compiler/
H A Dliterals.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
41 assertEquals("\\x1/", RegExp("\\x1/").source);
42 assertEquals("\\u111/", RegExp("\\u111/").source);
47 assertEquals("\\x1:", /\x1:/.source);
48 assertEquals("\\u111:", /\u111:/.source);
53 assertEquals("\\x1`", /\x1`/.source);
54 assertEquals("\\u111`", /\u111`/.source);
59 assertEquals("\\x1g", /\x1g/.source);
60 assertEquals("\\u111g", /\u111g/.source);
[all...]

Completed in 772 milliseconds

1234567891011>>