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

1 2 3 4 5 6

  /external/icu4c/test/cintltst/
crestst.h 52 int32_t pass; variable
  /external/genext2fs/
test-mount.sh 23 pass () { function
47 pass dtest $size $blocks
75 pass ftest $fname $blocks
  /external/icu4c/test/intltest/
restest.h 51 int32_t pass; member in class:ResourceBundleTest
restsnew.h 54 int32_t pass; member in class:NewResourceBundleTest
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
KeyManagerFactorySpiTests.java 61 char[] pass = { 'a', 'b', 'c' }; local
69 kmfSpi.engineInit(kStore, pass);
88 kmfSpi.engineInit(kStore, pass);
96 mfp = new MyKeyManagerFactorySpi.Parameters(kStore, pass);
  /external/chromium/chrome/browser/chromeos/login/
screen_locker_tester.cc 43 views::Textfield* pass = GetPasswordField(); local
44 pass->SetText(ASCIIToUTF16(password.c_str()));
49 views::Textfield* pass = GetPasswordField(); local
50 return UTF16ToUTF8(pass->text());
55 views::Textfield* pass = GetPasswordField(); local
60 pass, key_event);
  /external/e2fsprogs/contrib/
make-sparse.c 26 int pass = 0; local
36 if (pass++ >= 3)
40 pass = 0;
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCase.java 34 private boolean pass; field in class:TestCase
37 return pass;
41 pass = value;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KSPasswordProtectionTest.java 55 char [] pass = {'a', 'b', 'c'}; local
56 KeyStore.PasswordProtection ksPWP = new KeyStore.PasswordProtection(pass);
59 assertEquals("Incorrect password length", pass.length, rPass.length);
60 for (int i = 0; i < pass.length; i++) {
62 .concat(")"), pass[i], rPass[i]);
  /external/openssh/
readpass.c 55 char *pass; local
107 pass = xstrdup(buf);
109 return pass;
  /external/webkit/Source/JavaScriptCore/API/tests/
testapi.js 31 function pass(msg) function
33 print("PASS: " + msg, "green");
52 pass(a + " should be " + b + " and is.");
63 pass(a + " threw: " + e);
107 pass("MyObject.myPropertyName was enumerated");
112 pass("MyObject.regularType was enumerated");
130 pass("getting property descriptor of throwOnGet threw exception");
141 pass("getting property descriptor of hasPropertyLie threw exception");
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KSPasswordProtectionTest.java 48 char [] pass = {'a', 'b', 'c'}; local
49 KeyStore.PasswordProtection ksPWP = new KeyStore.PasswordProtection(pass);
52 assertEquals("Incorrect password length", pass.length, rPass.length);
53 for (int i = 0; i < pass.length; i++) {
55 .concat(")"), pass[i], rPass[i]);
  /system/vold/
Fat.cpp 55 int pass = 1; local
78 if (pass++ <= 3) {
79 SLOGW("Filesystem modified - rechecking (pass %d)",
80 pass);
  /external/dropbear/libtomcrypt/src/hashes/
tiger.c 579 static void pass(ulong64 *a, ulong64 *b, ulong64 *c, ulong64 *x, int mul) function
    [all...]
  /external/e2fsprogs/util/
copy_sparse.c 68 int pass = 0; local
78 if (pass++ >= 3)
82 pass = 0;
  /external/llvm/lib/Target/
TargetMachineC.cpp 157 PassManager pass; local
168 pass.add(new TargetData(*td));
186 if (TM->addPassesToEmitFile(pass, destf, ft)) {
192 pass.run(*Mod);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationVerifier.java 80 pass(); method
167 private void pass() { method in class:LocationVerifier
169 mCb.pass();
GpsTestActivity.java 37 public void pass(); method in interface:PassFailLog
156 public void pass() { method in class:GpsTestActivity
  /external/bluetooth/bluez/sbc/
sbctester.c 277 int pass_rms, pass_absolute, pass, accuracy; local
348 pass = pass_rms && pass_absolute;
349 printf("Verdict: %s\n", pass ? "pass" : "fail");
  /external/chromium/chrome/browser/ui/webui/chromeos/
enterprise_enrollment_ui.cc 131 std::string pass; local
135 !params_dict->GetString("pass", &pass) ||
142 controller->OnAuthSubmitted(user, pass, captcha, access_code);
  /external/ipsec-tools/src/racoon/
sainfo.c 76 * First pass is for sainfo from a specified peer, second for others.
85 int pass = 1; variable
88 pass = 2;
120 "getsainfo pass #%i\n", pass);
131 if (pass == 2)
135 } else if (pass == 1)
155 if ((anonymous == NULL) && (pass == 1)) {
156 pass++;
  /external/libpng/contrib/gregbook/
readpng2.h 95 int pass; member in struct:_mainprog_info
  /external/libselinux/src/
label_android_property.c 85 int pass, unsigned lineno)
111 if (pass == 1) {
112 /* On the second pass, process and store the specification in spec. */
142 unsigned int lineno = 0, maxnspec, pass; local
171 * After the first pass, the spec array is malloced to the appropriate
172 * size. Second pass is to populate the spec array and check for
176 for (pass = 0; pass < 2; pass++) {
181 if (process_line(rec, path, line_buf, pass, ++lineno) != 0)
    [all...]
  /external/llvm/lib/CodeGen/
Spiller.cpp 52 MachineFunctionPass *pass; member in class:__anon8981::SpillerBase
62 SpillerBase(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm)
63 : pass(&pass), mf(&mf), vrm(&vrm)
65 lis = &pass.getAnalysis<LiveIntervals>();
172 TrivialSpiller(MachineFunctionPass &pass, MachineFunction &mf,
174 : SpillerBase(pass, mf, vrm) {}
186 llvm::Spiller* llvm::createSpiller(MachineFunctionPass &pass,
190 case trivial: return new TrivialSpiller(pass, mf, vrm);
191 case inline_: return createInlineSpiller(pass, mf, vrm)
    [all...]
  /external/opencv/cv/src/
cvpgh.cpp 158 int i, count, pass; local
207 for( pass = 1; pass <= 2; pass++ )
227 if( pass == 2 )
247 if( pass == 2 )
267 if( pass == 2 )
294 else /* 1st pass */
303 if( pass == 1 )
312 if( pass == 1
    [all...]

Completed in 534 milliseconds

1 2 3 4 5 6