/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
BouncyCastleProviderConfiguration.java | 5 import javax.crypto.spec.DHParameterSpec; 11 import org.bouncycastle.jce.spec.ECParameterSpec; 48 else // assume java.security.spec 50 curveSpec = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false); 73 else // assume java.security.spec 75 ecImplicitCaParams = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false); 125 ECParameterSpec spec = (ECParameterSpec)ecThreadSpec.get(); local 127 if (spec != null) 129 return spec; 145 DHParameterSpec spec = (DHParameterSpec)params local [all...] |
JCEECPrivateKey.java | 8 import java.security.spec.ECParameterSpec; 9 import java.security.spec.ECPoint; 10 import java.security.spec.ECPrivateKeySpec; 11 import java.security.spec.EllipticCurve; 41 import org.bouncycastle.jce.spec.ECNamedCurveSpec; 70 org.bouncycastle.jce.spec.ECPrivateKeySpec spec) 73 this.d = spec.getD(); 75 if (spec.getParams() != null) // can be null if implicitlyCA 77 ECCurve curve = spec.getParams().getCurve() [all...] |
/external/chromium_org/url/ |
url_canon_filesystemurl.cc | 19 // whereas the inner_url can't, so it uses spec. 21 bool DoCanonicalizeFileSystemURL(const CHAR* spec, 46 if (CompareSchemeComponent(spec, inner_parsed->scheme, url::kFileScheme)) { 50 success &= CanonicalizePath(spec, inner_parsed->path, output, 52 } else if (IsStandard(spec, inner_parsed->scheme)) { 53 success = CanonicalizeStandardURL(spec, parsed.inner_parsed()->Length(), 80 bool CanonicalizeFileSystemURL(const char* spec, 87 spec, URLComponentSource<char>(spec), parsed, charset_converter, output, 91 bool CanonicalizeFileSystemURL(const base::char16* spec, [all...] |
url_file.h | 30 inline int FindNextSlash(const CHAR* spec, int begin_index, int spec_len) { 32 while (idx < spec_len && !IsURLSlash(spec[idx])) 39 // Returns true if the start_offset in the given spec looks like it begins a 40 // drive spec, for example "c:". This function explicitly handles start_offset 43 // If this returns true, the spec is guaranteed to have a valid drive letter 46 inline bool DoesBeginWindowsDriveSpec(const CHAR* spec, int start_offset, 51 if (!IsWindowsDriveLetter(spec[start_offset])) 53 if (!IsWindowsDriveSeparator(spec[start_offset + 1]))
|
url_util_internal.h | 17 bool CompareSchemeComponent(const char* spec, 20 bool CompareSchemeComponent(const base::char16* spec,
|
url_canon_query.cc | 30 // This is more conformant to the URL spec, and there do not seem to be many 45 bool IsAllASCII(const CHAR* spec, const Component& query) { 48 if (static_cast<UCHAR>(spec[i]) >= 0x80) 71 void RunConverter(const char* spec, 78 ConvertUTF8ToUTF16(&spec[query.begin], query.len, &utf16); 85 void RunConverter(const base::char16* spec, 89 converter->ConvertFromUTF16(&spec[query.begin], query.len, output); 93 void DoConvertToQueryEncoding(const CHAR* spec, 97 if (IsAllASCII<CHAR, UCHAR>(spec, query)) { 99 AppendRaw8BitQueryString(&spec[query.begin], query.len, output) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/sun/ |
SDL_sunaudio.c | 51 static int DSP_OpenAudio(_THIS, SDL_AudioSpec *spec); 166 /* Assuming that this->spec.freq >= 8000 Hz */ 171 incr = this->spec.freq/8; 217 if ( write(audio_fd, mixbuf, this->spec.size) < 0 ) { 243 int DSP_OpenAudio(_THIS, SDL_AudioSpec *spec) 249 int desired_freq = spec->freq; 257 switch ( spec->format & 0xFF ) { 260 spec->format = AUDIO_U8; 268 spec->format = AUDIO_S16SYS; 280 audio_fmt = spec->format [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Local.java | 28 private RegisterSpec spec; field in class:Local 46 this.spec = RegisterSpec.make(nextAvailableRegister, type.ropType); 57 RegisterSpec spec() { method in class:Local 58 if (spec == null) { 60 if (spec == null) { 64 return spec;
|
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/ |
Android.mk | 17 test_makefile := external/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/Android.mk 19 test_name := containers/sequences/forwardlist/forwardlist.spec/member_swap 23 test_name := containers/sequences/forwardlist/forwardlist.spec/swap_noexcept 27 test_name := containers/sequences/forwardlist/forwardlist.spec/equal 31 test_name := containers/sequences/forwardlist/forwardlist.spec/relational 35 test_name := containers/sequences/forwardlist/forwardlist.spec/non_member_swap
|
/frameworks/base/core/java/android/view/accessibility/ |
IAccessibilityInteractionConnection.aidl | 36 int interrogatingPid, long interrogatingTid, in MagnificationSpec spec); 40 int flags, int interrogatingPid, long interrogatingTid, in MagnificationSpec spec); 44 int interrogatingPid, long interrogatingTid, in MagnificationSpec spec); 48 long interrogatingTid, in MagnificationSpec spec); 52 long interrogatingTid, in MagnificationSpec spec); 60 long interrogatingTid, in MagnificationSpec spec);
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
GridLayoutTest.java | 24 import static android.widget.GridLayout.Spec; 27 import static android.widget.GridLayout.spec; 39 Spec rowSpec = spec(UNDEFINED, null); 40 Spec colSpec = spec(UNDEFINED, null);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/ |
KeyFactorySpi.java | 8 import java.security.spec.InvalidKeySpecException; 9 import java.security.spec.KeySpec; 13 import javax.crypto.spec.DHPrivateKeySpec; 14 import javax.crypto.spec.DHPublicKeySpec; 32 Class spec) 35 if (spec.isAssignableFrom(DHPrivateKeySpec.class) && key instanceof DHPrivateKey) 41 else if (spec.isAssignableFrom(DHPublicKeySpec.class) && key instanceof DHPublicKey) 48 return super.engineGetKeySpec(key, spec);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/ |
KeyFactorySpi.java | 10 import java.security.spec.DSAPrivateKeySpec; 11 import java.security.spec.DSAPublicKeySpec; 12 import java.security.spec.InvalidKeySpecException; 13 import java.security.spec.KeySpec; 29 Class spec) 32 if (spec.isAssignableFrom(DSAPublicKeySpec.class) && key instanceof DSAPublicKey) 38 else if (spec.isAssignableFrom(DSAPrivateKeySpec.class) && key instanceof java.security.interfaces.DSAPrivateKey) 45 return super.engineGetKeySpec(key, spec);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
BaseAlgorithmParameters.java | 4 import java.security.spec.AlgorithmParameterSpec; 5 import java.security.spec.InvalidParameterSpecException;
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/ |
html-parser.html | 5 var spec = PerfTestRunner.loadFile("resources/html5.html"); 13 iframe.contentDocument.write(spec);
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
Initialize.h | 14 void InsertBuiltInFunctions(ShShaderType type, ShShaderSpec spec, const ShBuiltInResources &resources, TSymbolTable &table); 16 void IdentifyBuiltIns(ShShaderType type, ShShaderSpec spec,
|
/system/extras/tests/fstest/ |
perm_checker.c | 55 char *spec; member in struct:perm_rule 98 static void add_rule(int line_num, char *spec, 110 "%s %lo %lo %s %s %s %s", spec, min_mode, max_mode, 120 if (strstr(spec, "/...")) { 121 pr->spec = strndup(spec, strlen(spec) - 3); 123 } else if (spec[strlen(spec) - 1] == '*') { 124 pr->spec = strndup(spec, strlen(spec) - 1) 157 char spec[MAX_NAME_LEN + 5]; \/\/ Allows for "\/..." suffix + terminator local [all...] |
/external/doclava/src/com/google/doclava/ |
SinceTagger.java | 101 * @param specApi the spec for this version. If a symbol is in this spec, it was present in the 140 private void versionClass(String versionName, ClassInfo spec, ClassInfo doc) { 147 if (spec.isDeprecated()) { 154 * Applies version information from {@code spec} to {@code doc} where not already present. 156 private void versionConstructors(String versionName, ClassInfo spec, ClassInfo doc) { 159 && spec.hasConstructor(constructor)) { 165 // Find matching field from API spec 166 if (spec.allConstructorsMap().containsKey(constructor.getHashableName())) { 167 MethodInfo specConstructor = spec.allConstructorsMap().get(constructor.getHashableName()) [all...] |
/libcore/luni/src/main/java/libcore/net/url/ |
JarHandler.java | 49 * @param spec 50 * java.lang.String the spec string 57 protected void parseURL(URL url, String spec, int start, int limit) { 63 spec = spec.substring(start, limit); 65 spec = ""; 67 if (spec.indexOf("!/") == -1 && (file.indexOf("!/") == -1)) { 71 file = spec; 72 } else if (spec.charAt(0) == '/') { 73 file = file.substring(0, file.indexOf('!') + 1) + spec; [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/anim/ |
StateTransitionAnimation.java | 30 public static class Spec { 31 public static final Spec OUTGOING; 32 public static final Spec INCOMING; 33 public static final Spec PHOTO_INCOMING; 54 OUTGOING = new Spec(); 64 INCOMING = new Spec(); 77 private static Spec specForTransition(Transition t) { 80 return Spec.OUTGOING; 82 return Spec.INCOMING; 84 return Spec.PHOTO_INCOMING [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/dma/ |
SDL_dmaaudio.c | 63 static int DMA_OpenAudio(_THIS, SDL_AudioSpec *spec); 187 frame_ticks = (float)(this->spec->samples*1000) / 188 this->spec->freq; 233 playing = info.ptr / this->spec.size; 235 return (dma_buf + (filling * this->spec.size)); 251 SDL_AudioSpec *spec) 265 SDL_CalculateAudioSpec(spec); 268 for ( frag_spec = 0; (0x01<<frag_spec) < spec->size; ++frag_spec ); 269 if ( (0x01<<frag_spec) != spec->size ) { 276 SDL_SetError("Couldn't set audio fragment spec"); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/ |
SDL_ndsaudio.c | 37 static int NDS_OpenAudio(_THIS, SDL_AudioSpec *spec); 55 // memset(buffer, sdl_nds_audiodevice->spec.silence, size); 69 // // sdl_nds_audiodevice->spec.callback(sdl_nds_audiodevice->spec.userdata, 75 // sdl_nds_audiodevice->spec.callback(sdl_nds_audiodevice->spec.userdata, buffer, size); 121 SDL_memset(stream, audio->spec.silence, len); 131 (*audio->spec.callback)(audio->spec.userdata, 138 (*audio->spec.callback)(audio->spec.userdata [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
ExtendedInvalidKeySpecException.java | 3 import java.security.spec.InvalidKeySpecException;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/ |
ECKey.java | 3 import org.bouncycastle.jce.spec.ECParameterSpec;
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/ |
jasmine.yml | 66 # Spec directory path. Your spec_files must be returned relative to this path. 67 # Default: spec/javascripts 71 # spec_dir: spec/javascripts 73 spec_dir: spec
|