HomeSort by relevance Sort by last modified time
    Searched refs:cases (Results 51 - 75 of 213) sorted by null

1 23 4 5 6 7 8 9

  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 838 SwitchList cases = new SwitchList(count); local
875 SwitchList cases = new SwitchList(npairs); local
    [all...]
BaseMachine.java 57 /** {@code null-ok;} auxiliary switch cases argument */
246 public final void auxSwitchArg(SwitchList cases) {
247 if (cases == null) {
248 throw new NullPointerException("cases == null");
251 auxCases = cases;
345 * Gets the switch cases auxiliary argument.
RopperMachine.java 559 SwitchList cases = getAuxCases(); local
565 if (cases != null) {
566 if (cases.size() == 0) {
572 IntList values = cases.getValues();
    [all...]
  /external/dropbear/libtomcrypt/src/hashes/
md4.c 261 } cases[] = {
288 for(i = 0; i < (int)(sizeof(cases) / sizeof(cases[0])); i++) {
290 md4_process(&md, (unsigned char *)cases[i].input, (unsigned long)strlen(cases[i].input));
292 if (XMEMCMP(digest, cases[i].digest, 16) != 0) {
  /cts/tools/utils/
DescriptionGenerator.java 54 * Input: The source files of the test cases. It will be represented
253 * information of all the test package, test suite and test cases.
411 * @param cases A collection of test cases included by the test suite class.
413 void appendTestCases(Node elem, Collection<TestMethod> cases) {
414 if (cases.isEmpty()) {
418 for (TestMethod caze : cases) {
502 * @param cases The test cases included in this test suite.
504 TestClass(String name, Collection<TestMethod> cases) {
528 ArrayList<TestMethod> cases = new ArrayList<TestMethod>(); local
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 5 // In most cases, you should not need to change these default options in
  /external/sqlite/android/
Android.mk 40 # test cases in PhoneNumberUtilsTest.cpp.
  /external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
cells.js 1 description('Test behavior of the HTMLTableRowElement cells attribute in cases where there is unusual nesting.');
  /external/webkit/LayoutTests/fast/url/script-tests/
segments.js 3 cases = [
107 for (var i = 0; i < cases.length; ++i) {
108 shouldBe("segments('" + cases[i][0] + "')",
109 "'" + JSON.stringify(cases[i][1]) + "'");
  /external/v8/tools/
test.py 57 def __init__(self, cases):
58 self.cases = cases
59 self.queue = Queue(len(cases))
60 for case in cases:
63 self.remaining = len(cases)
64 self.total = len(cases)
154 print 'Running %i tests' % len(self.cases)
227 def __init__(self, cases, templates):
228 super(CompactProgressIndicator, self).__init__(cases)
    [all...]
  /system/core/sh/
nodes.h 82 union node *cases; member in struct:ncase
nodes.c 156 calcsize(n->ncase.cases);
254 new->ncase.cases = copynode(n->ncase.cases);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_unittest.cc 399 } cases[] = { local
411 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i) {
412 m1.relevance = cases[i].r1;
413 m2.relevance = cases[i].r2;
414 EXPECT_EQ(cases[i].expected_result,
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
ll-star.rb 28 * long in theory, but is <=10 in most cases. Works great.
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
XmlGenerator.java 166 private void writeTestCases(PrintWriter writer, Collection<TestCase> cases,
168 Collection<TestCase> sorted = sortCollection(cases);
  /external/libffi/
Libffi.mk 16 # point OS-specific issues started to creep in. In some cases there
  /external/v8/test/mjsunit/regress/
regress-260.js 29 // conditions twice, even in cases where the loop condition is
  /external/v8/test/mjsunit/
shifts.js 30 // test a few corners cases with shifts
  /ndk/tests/device/test-gnustl_shared-exception/jni/
Android.mk 47 # 3 libs cases
  /ndk/tests/device/test-gnustl_static-exception/jni/
Android.mk 47 # 3 libs cases
  /frameworks/base/tools/aidl/
AST.cpp 635 cases.push_back(c);
645 int N = this->cases.size();
648 string s = this->cases[i];
676 int N = this->cases.size();
678 this->cases[i]->Write(to);
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
Runtime.pm 91 special cases that are not (yet) handled, etc.
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
profile-mode.rb 23 * long in theory, but is <=10 in most cases. Works great.
  /external/icu4c/test/cintltst/
cnormtst.c 171 const char* const cases[][3], int32_t lengthOfCases) {
180 source=CharsToUChars(cases[x][0]);
197 assertEqual(result, cases[x][expIndex], x);
204 assertEqual(result, cases[x][expIndex], x);
533 * Here we pick some specific cases and test the C API.
553 /* normal case with length>=0 (length -1 used for special cases below) */
580 /* specific cases */
741 /* test cases to improve test code coverage */
1440 } cases[]={ local
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 131 // Register any test cases with the test runner

Completed in 586 milliseconds

1 23 4 5 6 7 8 9