Searched refs:load (Results 1 - 25 of 3215) sorted by relevance

1234567891011>>

/external/v8/benchmarks/
H A Drun.js29 load('base.js');
30 load('richards.js');
31 load('deltablue.js');
32 load('crypto.js');
33 load('raytrace.js');
34 load('earley-boyer.js');
35 load('regexp.js');
36 load('splay.js');
37 load('navier-stokes.js');
/external/v8/test/mjsunit/regress/
H A Dregress-545.js40 new IsPrimitive(load())?this.join():String('
').charCodeAt((!this>Math));
/external/v8/test/mjsunit/
H A Dpolymorph-arrays.js45 function load(a, i) {
59 assertEquals(1, load(object_array, 1));
60 assertEquals(1, load(js_array, 1));
61 assertEquals(1, load(sparse_object_array, 1));
62 assertEquals(1, load(sparse_js_array, 1));
64 return load;
77 load = make_polymorphic_load_function();
78 assertEquals(undefined, load(js_array, new Object()));
79 load = make_polymorphic_load_function();
80 assertEquals(undefined, load(object_arra
[all...]
H A Dmegamorphic-callbacks.js28 function load(o) { function
45 load(o);
58 // Perform the load checks.
59 assertEquals(100, o.x, "normal load");
60 assertEquals(100, load(o), "ic load");
H A Dglobal-load-from-eval.js66 function testDeep(source, load, test) {
73 eval(load);
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetLoader.java40 * The loader will load the data in the provided {@link AssetInfo} object by
53 public Object load(AssetInfo assetInfo) throws IOException; method in interface:AssetLoader
/external/jsilver/src/org/clearsilver/
H A DCSFileLoader.java34 public String load(HDF hdf, String filename) throws IOException; method in interface:CSFileLoader
/external/junit/src/junit/runner/
H A DTestSuiteLoader.java9 abstract public Class load(String suiteClassName) throws ClassNotFoundException; method in interface:TestSuiteLoader
H A DStandardTestSuiteLoader.java7 * The standard test suite loader. It can only load the same class once.
12 * Uses the system class loader to load the test class
14 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:StandardTestSuiteLoader
18 * Uses the system class loader to load the test class
/external/webkit/Source/WebCore/plugins/
H A DPluginPackageNone.cpp40 bool PluginPackage::load() function in class:WebCore::PluginPackage
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/gtk/
H A DInjectedBundleGtk.cpp38 bool InjectedBundle::load(APIObject*) function in class:WebKit::InjectedBundle
/external/webkit/Source/WebKit2/Platform/qt/
H A DModuleQt.cpp32 bool Module::load() function in class:WebKit::Module
36 return m_lib.load();
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/qt/
H A DInjectedBundleQt.cpp37 bool InjectedBundle::load(APIObject* initializationUserData) function in class:WebKit::InjectedBundle
40 if (!m_platformBundle.load()) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DServiceLoaderTest.java72 ServiceLoader<Service> serviceLoader = ServiceLoader.load(
96 Iterator itr = ServiceLoader.load(Service.class, ucl).iterator();
108 itr = ServiceLoader.load(ServiceForWrongNameTest.class, ucl).iterator();
124 itr = ServiceLoader.load(null).iterator();
127 itr = ServiceLoader.load(null, null).iterator();
130 itr = ServiceLoader.load(null, ClassLoader.getSystemClassLoader())
134 itr = ServiceLoader.load(Service.class, null).iterator();
177 * @tests {@link java.util.ServiceLoader#load(java.lang.Class, java.lang.ClassLoader)}.
184 ServiceLoader serviceLoader = ServiceLoader.load(Service.class, ucl);
192 serviceLoader = ServiceLoader.load(ServiceFinalClas
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtPlatformPlugin.cpp32 bool QtPlatformPlugin::load(const QString& file) function in class:WebCore::QtPlatformPlugin
35 if (!m_loader.load())
49 bool QtPlatformPlugin::load() function in class:WebCore::QtPlatformPlugin
60 if (load(dir.absoluteFilePath(files.at(j))))
97 if (load())
100 load(pluginPath);
/external/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_sad16x16_armv6.asm32 ldr r6, [r0, #0x0] ; load 4 src pixels (1A)
33 ldr r8, [r2, #0x0] ; load 4 ref pixels (1A)
34 ldr r7, [r0, #0x4] ; load 4 src pixels (1A)
35 ldr r9, [r2, #0x4] ; load 4 ref pixels (1A)
36 ldr r10, [r0, #0x8] ; load 4 src pixels (1B)
37 ldr r11, [r0, #0xC] ; load 4 src pixels (1B)
42 ldr r12, [r2, #0x8] ; load 4 ref pixels (1B)
43 ldr lr, [r2, #0xC] ; load 4 ref pixels (1B)
51 ldr r6, [r0, #0x0] ; load 4 src pixels (2A)
52 ldr r7, [r0, #0x4] ; load
[all...]
/external/valgrind/main/exp-bbv/tests/ppc32-linux/
H A Dmillion.S8 lis 15,499997@ha # load high 16-bits of counter
9 addi 15,15,499997@l # load low 16-bits of counter
/external/webkit/Source/WebKit2/UIProcess/API/qt/tests/qwkpage/
H A Dtst_qwkpage.cpp53 m_page->load(QUrl());
54 m_page->load(QUrl(QLatin1String("")));
/external/webkit/Tools/QtTestBrowser/
H A Dmainwindow.h49 void load(const QString& url);
50 void load(const QUrl& url);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DHeightMap.java95 * <code>load</code> populates the height map data. This is dependent on
98 * @return true if the load was successful, false otherwise.
100 boolean load(); method in interface:HeightMap
/external/libppp/src/
H A Dtimer.h38 u_long load; /* Initial load value */ member in struct:pppTimer
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/simple/
H A Dmain.cpp30 view->load(QUrl("http://qt.nokia.com/"));
/external/webkit/Source/WebKit2/Platform/gtk/
H A DModuleGtk.cpp36 bool Module::load() function in class:WebKit::Module
/external/webkit/Source/WebKit2/Platform/win/
H A DModuleWin.cpp33 bool Module::load() function in class:WebKit::Module
/external/webkit/Tools/MiniBrowser/qt/
H A DBrowserView.h43 void load(const QString&);

Completed in 816 milliseconds

1234567891011>>