/external/icu4c/i18n/ |
tridpars.cpp | 712 // or a spec (source, target, or variant). 745 // We are about to try to parse a spec with no delimiter 752 UnicodeString spec = ICU_Utility::parseUnicodeIdentifier(id, pos); local 753 if (spec.length() == 0) { 762 first = spec; 765 target = spec; 768 variant = spec; 775 // A spec with no prior character is either source or target, 805 * Givens a Spec object, convert it to a SingleID object. The 806 * Spec object is a more unprocessed parse result. The SingleI [all...] |
/external/jpeg/ |
jmemdos.c | 338 XMSspec spec; local 345 spec.length = byte_count & (~ 1L); 346 spec.src_handle = info->handle.xms_handle; 347 spec.src.offset = file_offset; 348 spec.dst_handle = 0; 349 spec.dst.ptr = buffer_address; 351 ctx.ds_si = (void far *) & spec; 371 XMSspec spec; local 378 spec.length = byte_count & (~ 1L); 379 spec.src_handle = 0 496 EMSspec spec; local 521 EMSspec spec; local [all...] |
/external/libselinux/src/ |
label_file.c | 26 typedef struct spec { struct 89 /* find the stem of a file spec, returns the index into stem_arr for a new 151 struct spec *curr_spec, *spec_arr = data->spec_arr; 184 static void spec_hasMetaChars(struct spec *spec) 190 c = spec->regex_str; 191 len = strlen(spec->regex_str); 194 spec->hasMetaChars = 0; 210 spec->hasMetaChars = 1; 224 static int compile_regex(struct saved_data *data, spec_t *spec, char **errbuf 542 struct spec *spec; local [all...] |
/external/llvm/lib/Target/X86/Disassembler/ |
X86DisassemblerDecoder.c | 839 const struct InstructionSpecifier *spec; local 843 spec = specifierForUID(instructionID); 849 insn->spec = spec; 857 insn->spec = specWithWBit; 860 insn->spec = spec; 874 const struct InstructionSpecifier *spec; local 878 spec = specifierForUID(instructionID); 889 insn->spec = spec 914 const struct InstructionSpecifier *spec; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jmemdos.c | 338 XMSspec spec; local 345 spec.length = byte_count & (~ 1L); 346 spec.src_handle = info->handle.xms_handle; 347 spec.src.offset = file_offset; 348 spec.dst_handle = 0; 349 spec.dst.ptr = buffer_address; 351 ctx.ds_si = (void far *) & spec; 371 XMSspec spec; local 378 spec.length = byte_count & (~ 1L); 379 spec.src_handle = 0 496 EMSspec spec; local 521 EMSspec spec; local [all...] |
/frameworks/base/cmds/bootanimation/ |
BootAnimation.cpp | 546 struct timespec spec; local 547 spec.tv_sec = (now + delay) / 1000000000; 548 spec.tv_nsec = (now + delay) % 1000000000; 551 err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &spec, NULL);
|
/frameworks/base/core/java/android/widget/ |
TableRow.java | 215 // because of the EXACTLY measure spec we use 301 int spec; local 304 spec = getChildMeasureSpec(widthMeasureSpec, 0, LayoutParams.WRAP_CONTENT); 307 spec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED); 310 spec = MeasureSpec.makeMeasureSpec(layoutParams.width, MeasureSpec.EXACTLY); 312 child.measure(spec, spec);
|
/frameworks/base/keystore/tests/src/android/security/ |
AndroidKeyPairGeneratorTest.java | 34 import java.security.spec.AlgorithmParameterSpec; 35 import java.security.spec.DSAParameterSpec; 36 import java.security.spec.RSAKeyGenParameterSpec; 300 AlgorithmParameterSpec spec = new DSAParameterSpec(p, q, g); local 305 .setAlgorithmParameterSpec(spec) 315 assertKeyPairCorrect(pair, TEST_ALIAS_1, "DSA", 2048, spec, TEST_DN_1, TEST_SERIAL_1, NOW, 372 AlgorithmParameterSpec spec = new RSAKeyGenParameterSpec(1024, BigInteger.valueOf(3L)); local 376 .setAlgorithmParameterSpec(spec) 386 assertKeyPairCorrect(pair, TEST_ALIAS_1, "RSA", 1024, spec, TEST_DN_1, TEST_SERIAL_1, NOW, 466 AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
ServerHandshakeImpl.java | 36 import javax.crypto.spec.DHParameterSpec; 37 import javax.crypto.spec.DHPublicKeySpec; 51 * @see <a href="http://www.ietf.org/rfc/rfc2246.txt">TLS 1.0 spec., 7.4. 216 // prevent an attack (see TLS 1.0 spec., 7.4.7.1.) 289 * @ see TLS 1.0 spec., E.1. Version 2 client hello 494 DHParameterSpec spec = new DHParameterSpec(p, g); local 495 kpg.initialize(spec);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
AlgorithmParametersTest.java | 31 import java.security.spec.AlgorithmParameterSpec; 32 import java.security.spec.DSAParameterSpec; 33 import java.security.spec.InvalidParameterSpecException; 352 * java.security.AlgorithmParameters#init(java.security.spec.AlgorithmParameterSpec) 360 final MyAlgorithmParameterSpec spec = new MyAlgorithmParameterSpec(); local 365 assertSame(spec, paramSpec); 373 params.init(spec); 380 params.init(spec); 389 params.init(spec); 398 params.init(spec); 609 DSAParameterSpec spec = params.getParameterSpec(DSAParameterSpec.class); local [all...] |
KeyFactoryTest.java | 17 import java.security.spec.DSAPublicKeySpec; 18 import java.security.spec.InvalidKeySpecException; 19 import java.security.spec.KeySpec; 305 KeySpec spec = factory.getKeySpec(key, keySpec); local 306 assertNotNull(spec); 307 assertTrue(spec.getClass() == keySpec);
|
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/ |
android-support-v7-gridlayout.jar | |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
AndroidKeyPairGeneratorTest.java | 38 import java.security.spec.AlgorithmParameterSpec; 39 import java.security.spec.DSAParameterSpec; 40 import java.security.spec.RSAKeyGenParameterSpec; 275 AlgorithmParameterSpec spec = new DSAParameterSpec(p, q, g); local 280 .setAlgorithmParameterSpec(spec) 290 assertKeyPairCorrect(pair, TEST_ALIAS_1, "DSA", 2048, spec, TEST_DN_1, TEST_SERIAL_1, NOW, 404 AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end) 416 if (spec != null) { 417 DSAParameterSpec expectedParams = (DSAParameterSpec) spec; 429 if (spec != null) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
LocalList.java | 127 /** {@code non-null;} register spec representing the variable */ 128 private final RegisterSpec spec; field in class:LocalList.Entry 130 /** {@code non-null;} variable type (derived from {@code spec}) */ 138 * @param spec {@code non-null;} register spec representing 141 public Entry(int address, Disposition disposition, RegisterSpec spec) { 151 if (spec.getLocalItem() == null) { 153 "spec.getLocalItem() == null"); 157 throw new NullPointerException("spec == null"); 162 this.spec = spec [all...] |
RopTranslator.java | 865 RegisterSpec spec = locals.getAssignment(insn); local 867 if (spec != null) { 868 addOutput(new LocalStart(insn.getPosition(), spec));
|
/dalvik/dx/src/com/android/dx/cf/code/ |
RopperMachine.java | 671 RegisterSpec spec = RegisterSpec.make(regAt, arg(i)); local 672 sources.set(i, spec); 673 regAt += spec.getCategory(); [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
LocalList.java | 126 /** {@code non-null;} register spec representing the variable */ 127 private final RegisterSpec spec; field in class:LocalList.Entry 129 /** {@code non-null;} variable type (derived from {@code spec}) */ 137 * @param spec {@code non-null;} register spec representing 140 public Entry(int address, Disposition disposition, RegisterSpec spec) { 150 if (spec.getLocalItem() == null) { 152 "spec.getLocalItem() == null"); 156 throw new NullPointerException("spec == null"); 161 this.spec = spec [all...] |
RopTranslator.java | 874 RegisterSpec spec = locals.getAssignment(insn); local 876 if (spec != null) { 877 addOutput(new LocalStart(insn.getPosition(), spec));
|
/external/chromium/base/ |
process_util_posix.cc | 789 struct timespec spec; local 794 spec.tv_sec = sec; 795 spec.tv_nsec = wait_milliseconds * 1000000L; 796 spec_ptr = &spec; [all...] |
/external/chromium/googleurl/src/ |
url_canon_unittest.cc | 813 const char spec[] = "192.168.0.1"; local [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
TranslateLanguagePanel.java | 206 final int spec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); local 214 estimator.measure(spec, spec);
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_url_provider.cc | 101 if ((host.spec().length() < (match.input_location + input.length()))) 104 const base::string16 spec = UTF8ToUTF16(host.spec()); local 105 if (spec.compare(match.input_location, input.length(), input)) 434 URLPrefix::BestURLPrefix(UTF8ToUTF16(destination_url.spec()), text); 531 URLPrefix::BestURLPrefix(UTF8ToUTF16(j->url().spec()), [all...] |
/external/chromium_org/chrome/browser/profiles/ |
profile_io_data.cc | 206 const std::string& spec = stripped_url.possibly_invalid_spec(); local 210 if (offset < static_cast<int>(spec.size())) 211 relative_path.assign(spec.substr(offset + bundled_path_prefix.length())); [all...] |
/external/chromium_org/content/common/ |
page_state_serialization.cc | 288 std::string spec; local 289 if (obj->pickle.ReadString(&obj->iter, &spec)) 290 return GURL(spec);
|
/external/chromium_org/url/ |
url_canon_unittest.cc | 944 const char spec[] = "192.168.0.1"; local [all...] |