Searched refs:source (Results 1 - 25 of 2470) sorted by relevance

1234567891011>>

/external/clang/test/Frontend/
H A Dverify2.c10 #error source
17 // CHECK-NEXT: Line 10: 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/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);
H A Dregress-1122.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
38 var source = 'test_prefix + (function f(';
40 if (arg != 0) source += ',';
41 source += 'arg' + arg;
43 source += ') { return arg' + (n - n % 2) / 2 + '; })(';
45 if (arg != 0) source += ',';
46 source += arg;
48 source += ') + test_suffix';
49 return eval(source);
[all...]
/external/webkit/Source/WebCore/dom/
H A DTransformSourceQt.cpp25 TransformSource::TransformSource(const PlatformTransformSource& source) argument
26 : m_source(source)
/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/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/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DEnvelope.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 private Endpoint source; field in class:Envelope
50 * source. The 'reliable' flag further indicates on which mode of
53 public Envelope( Endpoint source, byte[] data, boolean reliable ) argument
55 this.source = source;
62 return source;
77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";
H A DEndpointEvent.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
47 private Kernel source; field in class:EndpointEvent
51 public EndpointEvent( Kernel source, Endpoint p, Type type ) argument
53 this.source = source;
58 public static EndpointEvent createAdd( Kernel source, Endpoint p ) argument
60 return new EndpointEvent( source, p, Type.ADD );
63 public static EndpointEvent createRemove( Kernel source, Endpoint p ) argument
65 return new EndpointEvent( source,
[all...]
/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs39 public static void Source (object source) argument
41 if (source == null)
42 throw new ArgumentNullException ("source");
53 public static void SourceAndFuncAndSelector ( object source, object func, object selector) argument
55 if (source == null)
56 throw new ArgumentNullException ("source");
64 public static void SourceAndFunc (object source, object func) argument
66 if (source == null)
67 throw new ArgumentNullException ("source");
72 public static void SourceAndSelector (object source, objec argument
80 SourceAndPredicate(object source, object predicate) argument
96 SourceAndKeySelector(object source, object keySelector) argument
104 SourceAndKeyElementSelectors(object source, object keySelector, object elementSelector) argument
113 SourceAndKeyResultSelectors(object source, object keySelector, object resultSelector) argument
123 SourceAndCollectionSelectorAndResultSelector(object source, object collectionSelector, object resultSelector) argument
133 SourceAndCollectionSelectors(object source, object collectionSelector, object selector) argument
157 GroupBySelectors(object source, object keySelector, object elementSelector, object resultSelector) argument
[all...]
/external/nist-sip/java/javax/sip/
H A DTimeoutEvent.java6 public TimeoutEvent(Object source, ServerTransaction serverTransaction, argument
8 super(source, serverTransaction);
12 public TimeoutEvent(Object source, ClientTransaction clientTransaction, argument
14 super(source, clientTransaction);
/external/webkit/Source/WebCore/platform/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
52 static void copy(UChar* destination, const uint8_t* source) argument
54 destination[0] = source[0];
55 destination[1] = source[1];
56 destination[2] = source[2];
57 destination[3] = source[3];
61 static void copy(UChar* destination, const uint8_t* source) argument
63 destination[0] = source[0];
64 destination[1] = source[
79 copyASCIIMachineWord(UChar* destination, const uint8_t* source) argument
[all...]
/external/zlib/src/contrib/puff/
H A Dpuff.h17 2. Altered source versions must be plainly marked as such, and must not be
19 3. This notice may not be removed or altered from any source distribution.
34 const unsigned char *source, /* pointer to source data pointer */
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
H A DTokenizer.java19 * @param source must be non-null
23 public static String[] parseTokens(String source, char delimiter) argument
27 for (int i = 0; i < source.length(); i++)
29 if (source.charAt(i) == delimiter)
38 if (nextfield >= source.length())
44 int idx = source.indexOf(delimiter, nextfield);
46 idx = source.length();
47 list[i] = source.substring(nextfield, idx);
/external/chromium/third_party/libjingle/source/talk/base/
H A Durlencode.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
56 int InternalUrlDecode(const char *source, char *dest, argument
60 while (*source) {
61 switch (*source) {
66 *dest++ = *source;
70 if (source[1] && source[2]) {
71 int value = HexPairValue(source + 1);
74 source
94 UrlDecode(const char *source, char *dest) argument
98 UrlDecodeWithoutEncodingSpaceAsPlus(const char *source, char *dest) argument
110 InternalUrlEncode(const char *source, char *dest, unsigned int max, bool encode_space_as_plus, bool unsafe_only) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DMultiplyTimeScaleTrack.java37 Track source; field in class:MultiplyTimeScaleTrack
40 public MultiplyTimeScaleTrack(Track source, int timeScaleFactor) { argument
41 this.source = source;
46 return source.getSampleDescriptionBox();
50 return adjustTts(source.getDecodingTimeEntries(), timeScaleFactor);
54 return adjustCtts(source.getCompositionTimeEntries(), timeScaleFactor);
58 return source.getSyncSamples();
62 return source.getSampleDependencies();
66 TrackMetaData trackMetaData = (TrackMetaData) source
96 adjustCtts(List<CompositionTimeToSample.Entry> source, int timeScaleFactor) argument
108 adjustTts(List<TimeToSampleBox.Entry> source, int timeScaleFactor) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DFontPlatformData.cpp34 FontPlatformData::FontPlatformData(const FontPlatformData& source) argument
35 : m_syntheticBold(source.m_syntheticBold)
36 , m_syntheticOblique(source.m_syntheticOblique)
37 , m_orientation(source.m_orientation)
38 , m_textOrientation(source.m_textOrientation)
39 , m_size(source.m_size)
40 , m_widthVariant(source.m_widthVariant)
41 , m_isColorBitmapFont(source.m_isColorBitmapFont)
43 platformDataInit(source);
/external/jpeg/
H A Drdrle.c83 rle_source_ptr source = (rle_source_ptr) sinfo; local
90 source->header = *rle_hdr_init(NULL);
91 source->header.rle_file = source->pub.input_file;
92 switch (rle_get_setup(&(source->header))) {
115 width = source->header.xmax - source->header.xmin + 1;
116 height = source->header.ymax - source->header.ymin + 1;
117 source
189 rle_source_ptr source = (rle_source_ptr) sinfo; local
207 rle_source_ptr source = (rle_source_ptr) sinfo; local
243 rle_source_ptr source = (rle_source_ptr) sinfo; local
373 rle_source_ptr source; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Drdrle.c83 rle_source_ptr source = (rle_source_ptr) sinfo; local
90 source->header = *rle_hdr_init(NULL);
91 source->header.rle_file = source->pub.input_file;
92 switch (rle_get_setup(&(source->header))) {
115 width = source->header.xmax - source->header.xmin + 1;
116 height = source->header.ymax - source->header.ymin + 1;
117 source
189 rle_source_ptr source = (rle_source_ptr) sinfo; local
207 rle_source_ptr source = (rle_source_ptr) sinfo; local
243 rle_source_ptr source = (rle_source_ptr) sinfo; local
373 rle_source_ptr source; local
[all...]

Completed in 6226 milliseconds

1234567891011>>