HomeSort by relevance Sort by last modified time
    Searched defs:load (Results 126 - 150 of 345) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/tests/targets/security/cert/
CertificateTest.java     [all...]
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
X509KeyManagerImpl.java 93 keyTest.load(null, null);
99 //keyTest.load(null, null);
108 //keyTest.load(null, null);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorActivity.java 119 mFragment.load(action, uri, getIntent().getExtras());
GroupEditorActivity.java 93 mFragment.load(action, uri, getIntent().getExtras());
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
workstealing.h 72 _GLIBCXX_JOB_VOLATILE difference_type load; member in struct:__gnu_parallel::Job
185 my_job.load = my_job.last - my_job.first + 1;
194 --my_job.load;
216 // Update load, to make the three values consistent,
218 my_job.load = my_job.last - my_job.first + 1;
253 supposed_load = job[victim * stride].load;
277 my_job.load = my_job.last - my_job.first + 1;
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatch.java 58 * @param fileUrl the URL of the file to load.
65 public static NinePatch load(URL fileUrl, boolean convert) throws IOException { method in class:NinePatch
76 return load(image, is9Patch, convert);
84 * @param stream the {@link InputStream} of the file to load.
92 public static NinePatch load(InputStream stream, boolean is9Patch, boolean convert) method in class:NinePatch
102 return load(image, is9Patch, convert);
118 public static NinePatch load(BufferedImage image, boolean is9Patch, boolean convert) { method in class:NinePatch
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
DebugKeyProvider.java 170 keyStore.load(fis, PASSWORD_CHAR);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 88 mockKeyStore.load(null);
100 mockKeyStore.load(null, null);
105 mockKeyStore.load(null, null);
111 mockKeyStore.load(null, null);
117 mockKeyStore.load(null, null);
139 mockKeyStore.load(null, null);
148 mockKeyStore.load(null, null);
158 mockKeyStore.load(null, null);
171 ks.load(fis, pwd);
KeyStore2Test.java 141 keyTest.load(null, null);
170 keyTest.load(null, null);
207 keyTest.load(null, null);
231 keyTest.load(null, null);
265 keyTest.load(null, null);
300 keyTest.load(null, null);
364 keyTest.load(null, null);
426 keyTest.load(null, null);
450 keyTest.load(null, null);
464 * @tests java.security.KeyStore#load(java.io.InputStream, char[]
    [all...]
KeyStoreTest.java 106 * Test for <code>load(LoadStoreParameter param)</code>
119 kss[i].load(null); method
124 kss[i].load(null, null); method
135 kss[i].load(lParam); method
160 kss[i].load(null, null); method
255 keyStore.load(null, "pwd".toCharArray());
  /frameworks/base/core/java/android/webkit/
FrameLoader.java 98 * Issues the load request.
100 * Return value does not indicate if the load was successful or not. It
101 * simply indicates that the load request is reasonable.
103 * @return true if the load is reasonable.
111 mInterceptResponse.loader(mListener).load();
173 true).load();
175 // load asset in a separate thread as it involves IO
185 true).load();
187 // load resource in a separate thread as it involves IO
197 settings.getAllowFileAccess()).load();
211 new ContentLoader(loadListener.url(), loadListener).load(); method
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
TrustManagerFactory1Test.java 377 ks.load(null, null);
446 kStore.load(null, null);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertiesTest.java 64 p.load((InputStream) null);
74 p.load((InputStream) null);
204 * @tests java.util.Properties#load(java.io.InputStream)
207 // Test for method void java.util.Properties.load(java.io.InputStream)
212 prop.load(is = new ByteArrayInputStream(writeProperties()));
215 fail("Exception during load test : " + e.getMessage());
217 assertEquals("Failed to load correct properties", "harmony.tests", prop
219 assertNull("Load failed to parse incorrectly", prop
224 prop.load(new ByteArrayInputStream("=".getBytes()));
232 prop.load(new ByteArrayInputStream(" = ".getBytes()))
353 .load(new InputStreamReader(new ByteArrayInputStream( method
1042 public void load(Reader reader) { method in class:PropertiesTest.MockProperties
    [all...]
  /development/apps/Development/src/com/android/development/
DevelopmentSettings.java 222 mWindowAnimationScale.load();
223 mTransitionAnimationScale.load();
589 void load() { method in class:DevelopmentSettings.AnimationScaleSelectedListener
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl1Test.java 383 kss[i].load(null, null); method
478 kss[i].load(null, null); method
590 kss[i].load(null, null); method
666 kss[i].load(null, null); method
741 kss[i].load(null, null); method
855 kss[i].load(null, null); method
918 kss[i].load(null, null); method
    [all...]
  /libcore/luni/src/main/java/java/security/
KeyStore.java 575 * the {@code InputStream} to load this {@code KeyStore}'s data
587 public final void load(InputStream stream, char[] password) method in class:KeyStore
598 * the {@code LoadStoreParameter} that specifies how to load this
610 public final void load(LoadStoreParameter param) throws IOException, method in class:KeyStore
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
OldPKIXParametersTest.java 194 store.load(stream, new String(KeyStoreTestPKCS12.keyStorePassword)
206 keystore.load(null,null);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStoreTest.java 105 * Test for <code>load(LoadStoreParameter param)</code>
118 kss[i].load(null); method
123 kss[i].load(null, null); method
134 kss[i].load(lParam); method
159 kss[i].load(null, null); method
254 keyStore.load(null, "pwd".toCharArray());
ProviderTest.java 545 myProvider.load(is);
558 myProvider.load((InputStream) null);
577 p.load(new TestInputStream());
  /packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java 134 certHolder.mAdapter.load();
175 load(); method
177 private void load() { method in class:TrustedCredentialsSettings.TrustedCertificateAdapter
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 60 dexData.load();
  /dalvik/vm/compiler/codegen/arm/Thumb/
Factory.cpp 41 * Load a immediate using a shortcut if possible; otherwise
101 * Load an immediate value into a fixed or temp register. Target
114 * Load a class pointer value into a fixed or temp register. Target
468 /* Load value from base + scaled index. */
579 * Load value from base + displacement. Optionally perform null check
588 ArmLIR *load = NULL; local
657 load = res = newLIR3(cUnit, opcode, rDest, rBase, encodedDisp);
665 load = newLIR3(cUnit, kThumbLdrRRI5, rDest, rTmp, 0);
672 load = newLIR3(cUnit, opcode, rDest, rBase, rTmp);
674 annotateDalvikRegAccess(load, displacement >> 2
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CompressedTextureActivity.java 86 * Demonstrate how to load a compressed texture from an APK resource.
90 public void load(GL10 gl) { method in class:CompressedTextureActivity.CompressedTextureLoader
97 Log.w(TAG, "Could not load texture: " + e);
112 public void load(GL10 gl) { method in class:CompressedTextureActivity.SyntheticCompressedTextureLoader
126 Log.w(TAG, "Could not load texture: " + e);
StaticTriangleRenderer.java 55 * Load a texture into the currently bound OpenGL texture.
57 void load(GL10 gl); method in interface:StaticTriangleRenderer.TextureLoader
118 mTextureLoader.load(gl);
188 public void load(GL10 gl) { method in class:StaticTriangleRenderer.RobotTextureLoader
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
RobotSpeakTtsService.java 68 // We load the default language when we start up. This isn't strictly
160 int load = onLoadLanguage(request.getLanguage(), request.getCountry(), local
165 if (load == TextToSpeech.LANG_NOT_SUPPORTED) {

Completed in 2238 milliseconds

1 2 3 4 56 7 8 91011>>