HomeSort by relevance Sort by last modified time
    Searched defs:plain (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/v8/test/mjsunit/
regexp-not-sticky-yet.js 42 var plain = /foobar/; variable
43 assertEquals("/foobar/", "" + plain);
  /external/chromium_org/v8/test/mjsunit/harmony/
regexp-sticky.js 35 var plain = /foobar/; variable
37 assertTrue(!!"foobar".match(plain));
38 assertTrue(!!"..foobar".match(plain));
  /external/chromium_org/chrome/common/extensions/api/networking_private/
networking_private_crypto_unittest.cc 15 // |plain| data.
17 const std::string& plain,
22 return decrypted == plain;
147 std::string plain; local
151 plain = kTestData;
153 public_key, plain, &encrypted_output));
154 EXPECT_TRUE(VerifyByteString(kPrivateKey, plain, encrypted_output));
157 plain = kEmptyData;
159 public_key, plain, &encrypted_output));
  /external/chromium_org/chrome/browser/renderer_host/pepper/
pepper_flash_clipboard_message_filter.cc 167 bool plain = clipboard->IsFormatAvailable( local
171 available = plain || plainw;
  /external/openssl/crypto/rc2/
rc2test.c 120 static unsigned char plain[CFB_TEST_SIZE]= variable
225 idea_cfb64_encrypt(plain,cfb_buf1,(long)12,&eks,
227 idea_cfb64_encrypt(&(plain[12]),&(cfb_buf1[12]),
244 if (memcmp(plain,cfb_buf2,CFB_TEST_SIZE) != 0)
  /external/chromium_org/components/invalidation/
gcm_network_channel_unittest.cc 390 std::string plain; local
395 EXPECT_TRUE(Base64DecodeURLSafe(base64, &plain));
396 EXPECT_EQ(input, plain);
404 EXPECT_TRUE(Base64DecodeURLSafe(base64, &plain));
405 EXPECT_EQ(input, plain);
411 EXPECT_TRUE(Base64DecodeURLSafe(base64, &plain));
412 EXPECT_EQ(input, plain);
  /external/chromium_org/third_party/icu/source/i18n/
regexcmp.h 72 plain = -1, // No special handling enumerator in enum:RegexCompile::EParenClass
  /external/icu/icu4c/source/i18n/
regexcmp.h 72 plain = -1, // No special handling enumerator in enum:RegexCompile::EParenClass
  /external/wpa_supplicant_8/src/wps/
wps_enrollee.c 205 struct wpabuf *msg, *plain; local
209 plain = wpabuf_alloc(200);
210 if (plain == NULL)
215 wpabuf_free(plain);
222 wps_build_e_snonce1(wps, plain) ||
223 wps_build_key_wrap_auth(wps, plain) ||
224 wps_build_encr_settings(wps, msg, plain) ||
227 wpabuf_free(plain);
231 wpabuf_free(plain);
318 static int wps_build_ap_settings(struct wps_data *wps, struct wpabuf *plain)
348 struct wpabuf *msg, *plain; local
    [all...]
wps_common.c 359 struct wpabuf *plain; local
361 plain = wpabuf_alloc(500);
362 if (plain == NULL) {
372 if (wps_build_cred(&data, plain) ||
373 (rf_band && wps_build_rf_bands_attr(plain, rf_band)) ||
374 (channel && wps_build_ap_channel(plain, channel)) ||
375 wps_build_mac_addr(plain, wps->dev.mac_addr) ||
376 wps_build_wfa_ext(plain, 0, NULL, 0)) {
378 wpabuf_free(plain);
407 return plain;
    [all...]
wps_registrar.c 1762 struct wpabuf *msg, *plain; local
1837 struct wpabuf *plain = wpabuf_alloc(500); local
1903 struct wpabuf *msg, *plain; local
1941 struct wpabuf *msg, *plain; local
1977 struct wpabuf *msg, *plain; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_decorators.py 272 def plain(x): function in function:TestClassDecorators.test_simple
275 @plain
test_zipfile.py 1179 plain = 'zipfile.py encryption test' variable in class:DecryptionTests
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_decorators.py 272 def plain(x): function in function:TestClassDecorators.test_simple
275 @plain
test_zipfile.py 1179 plain = 'zipfile.py encryption test' variable in class:DecryptionTests
    [all...]
  /external/openssl/crypto/des/
destest.c 290 static unsigned char plain[24]= variable
612 for (i=0; i<sizeof(plain); i++)
613 des_cfb_encrypt(&(plain[i]),&(cfb_buf1[i]),
615 if (memcmp(cfb_cipher8,cfb_buf1,sizeof(plain)) != 0)
622 for (i=0; i<sizeof(plain); i++)
625 if (memcmp(plain,cfb_buf2,sizeof(plain)) != 0)
639 des_ofb_encrypt(plain,ofb_buf1,64,sizeof(plain)/8,ks,&ofb_tmp);
653 if (memcmp(plain,ofb_buf2,sizeof(ofb_buf2)) != 0
    [all...]
  /external/ppp/pppd/plugins/radius/
radius.c 734 u_char plain[32]; local
743 memcpy(plain, vp->strvalue, sizeof(plain));
751 plain[i] ^= buf[i];
759 plain[i + 16] ^= buf[i];
766 mppe_set_keys(challenge, &plain[8]);
789 u_char plain[32]; local
807 memcpy(plain, crypt, 32);
816 plain[i] ^= buf[i];
818 if (plain[0] != sizeof(mppe_send_key) /* 16 */)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
ikev2.c 1109 struct wpabuf *plain = wpabuf_alloc(data->IDr_len + 1000); local
1110 if (plain == NULL) {
1114 if (ikev2_build_idr(data, plain,
1118 &data->keys, 0, msg, plain,
1120 wpabuf_free(plain);
1124 wpabuf_free(plain);
1142 struct wpabuf *msg, *plain; local
1151 plain = wpabuf_alloc(data->IDr_len + 1000);
1152 if (plain == NULL) {
1157 if (ikev2_build_idr(data, plain, IKEV2_PAYLOAD_AUTHENTICATION) |
1185 struct wpabuf *plain = wpabuf_alloc(100); local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
ikev2.c 1127 struct wpabuf *msg, *plain; local
1164 plain = wpabuf_alloc(data->IDr_len + 1000);
1165 if (plain == NULL) {
1170 if (ikev2_build_idi(data, plain, IKEV2_PAYLOAD_AUTHENTICATION) ||
1171 ikev2_build_auth(data, plain, IKEV2_PAYLOAD_NO_NEXT_PAYLOAD) ||
1173 &data->keys, 1, msg, plain,
1175 wpabuf_free(plain);
1179 wpabuf_free(plain);
  /external/chromium_org/chrome/installer/util/
google_update_settings_unittest.cc 393 const wchar_t* const plain[] = { local
403 COMPILE_ASSERT(arraysize(full) == arraysize(plain), bad_full_array_size);
409 COMPILE_ASSERT(arraysize(multifail) == arraysize(plain),
416 COMPILE_ASSERT(arraysize(multifail_full) == arraysize(plain),
419 plain,
437 outputs = plain;
451 outputs = plain;
453 for (int input_idx = 0; input_idx < arraysize(plain); ++input_idx) {
    [all...]
  /external/deqp/modules/gles3/functional/
es3fASTCDecompressionCases.cpp 329 deUint32 plain[64]; member in union:deqp::gles3::Functional::ASTCDecompressionCaseInternal::ASTCBlockGeneratorInternal::ISEInput::__anon3693
792 input.isGivenInBlockForm ? DE_NULL : &input.value.plain[5*blockNdx],
804 input.isGivenInBlockForm ? DE_NULL : &input.value.plain[3*blockNdx],
812 encodeISEBitBlock(dst, params.numBits, input.isGivenInBlockForm ? input.value.block[i].bitValues[0] : input.value.plain[i]);
886 result.weight.value.plain[i] = (i*weightRangeMax + (numWeights-1)/2) / (numWeights-1);
889 result.weight.value.plain[i] = weightRangeMax - (i*weightRangeMax + (numWeights-1)/2) / (numWeights-1);
894 result.weight.value.plain[i] = (i*weightRangeMax + (numWeights-1)/2) / (numWeights-1);
907 result.endpoint.value.plain[i] = (i*colorEndpointRangeMax + (numColorEndpointValues-1)/2) / (numColorEndpointValues-1);
    [all...]
  /external/smack/src/org/jivesoftware/smack/
XMPPConnection.java 800 * existing plain connection and perform a handshake. This method won't return until the
874 Socket plain = socket; local
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 976 u8 *plain, *ppos, *res; local
998 ppos = plain = os_malloc(plen);
999 if (plain == NULL)
1001 plain[0] = 0;
1026 if (plain[0] == 0 || plain[0] > plen - 1) {
1028 os_free(plain);
1032 res = os_malloc(plain[0]);
1034 os_free(plain);
1037 os_memcpy(res, plain + 1, plain[0])
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py 527 """Mark up some plain text, given a context of symbols to look for.
1370 def plain(text): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py 527 """Mark up some plain text, given a context of symbols to look for.
1370 def plain(text): function
    [all...]

Completed in 1097 milliseconds

1 2