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

1234567891011>>

/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/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/webkit/Source/WebCore/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
35 TransformSource::TransformSource(const PlatformTransformSource& source) argument
36 : m_source(source)
H A DTransformSourceQt.cpp25 TransformSource::TransformSource(const PlatformTransformSource& source) argument
26 : m_source(source)
/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/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/guava/guava/src/com/google/common/eventbus/
H A DHandlerFindingStrategy.java30 * Finds all suitable event handler methods in {@code source}, organizes them
33 * @param source object whose handlers are desired.
37 * @throws IllegalArgumentException if {@code source} is not appropriate for
40 Multimap<Class<?>, EventHandler> findAllHandlers(Object source); argument
/external/icu4c/test/intltest/
H A Dmnkytst.h47 const UnicodeString source; member in class:CollationMonkeyTest
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DErrorListener.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 public void handleError( S source, Throwable t ); argument
H A DMessageListener.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
53 public void messageReceived( S source, Message m ); argument
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_addrtype.h5 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info
/external/nist-sip/java/javax/sip/
H A DDialogTerminatedEvent.java8 public DialogTerminatedEvent(Object source, Dialog dialog) { argument
9 super(source);
/external/valgrind/main/none/tests/s390x/
H A Dex_sig.c11 char source[40] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\0"; variable
25 ::"a" (buf2), "a" (source)
43 ::"a" (target), "a" (source)
/external/webkit/Source/WebCore/page/
H A DSpeechInputResult.cpp4 * Redistribution and use in source and binary forms, with or without
7 * * Redistributions of source code must retain the above copyright
38 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const SpeechInputResult& source) argument
40 return adoptRef(new SpeechInputResult(source.m_utterance, source.m_confidence));
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSPasteboardExtras.h4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
75 source:(WebHTMLView *)source; variable
81 source:(WebHTMLView *)source; variable
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DMain.java66 public static void parse(File source) throws Exception argument
76 if (source.isDirectory())
78 System.out.println("Directory: " + source.getAbsolutePath());
79 String files[] = source.list();
83 parse(new File(source, files[i]));
93 String sourceFile = source.getName();
103 parseSource(source.getAbsolutePath());
116 public static void parseSource(String source) throws Exception argument
123 // and tell the lexer that that is the character source.
127 lexer.setCharStream(new ANTLRFileStream(source, "UTF
[all...]
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/mock/
H A DMockPropertyChangeEvent.java33 * @param source
35 public MockPropertyChangeEvent(Object source) { argument
36 super(source);
/external/chromium/chrome/browser/extensions/
H A Dextension_messages_apitest.cc2 // Use of this source code is governed by a BSD-style license that can be
23 const NotificationSource& source,
26 Source<Profile>(source).ptr()->GetExtensionEventRouter();
32 Source<Profile>(source).ptr(),
36 Source<Profile>(source).ptr(),
40 Source<Profile>(source).ptr(),
44 Source<Profile>(source).ptr(),
22 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_scraper_unittest.cc2 // source code is governed by a BSD-style license that can be found in the
37 const NotificationSource& source,
40 Source<TemplateURLModel>(source).ptr() == model_) {
36 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/chrome/browser/sync/engine/
H A Ddownload_updates_command_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
126 sessions::SyncSourceInfo source; local
127 source.types[syncable::AUTOFILL] = "autofill_payload";
128 source.types[syncable::BOOKMARKS] = "bookmark_payload";
129 source.types[syncable::PREFERENCES] = "preferences_payload";
131 mock_server()->ExpectGetUpdatesRequestPayloads(source.types);
132 command_.ExecuteImpl(session(source));
/external/chromium/chrome/browser/tabs/
H A Dpinned_tab_service.cc2 // Use of this source code is governed by a BSD-style license that can be
38 const NotificationSource& source,
45 Browser* browser = Source<Browser>(source).ptr();
54 Browser* browser = Source<Browser>(source).ptr();
37 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument

Completed in 814 milliseconds

1234567891011>>