HomeSort by relevance Sort by last modified time
    Searched refs:code1 (Results 1 - 25 of 26) sorted by null

1 2

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerHashCodeTest.java 40 int code1 = aNumber1.hashCode(); local
47 assertTrue("hash codes for the same object differ", code1 == code2);
58 int code1 = aNumber1.hashCode(); local
61 assertTrue("hash codes for equal objects are unequal", code1 == code2);
74 int code1 = aNumber1.hashCode(); local
77 assertTrue("hash codes for unequal objects are equal", code1 != code2);
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Transitions.py 56 code0, code1 = event
58 j = self.split(code1)
72 code0, code1 = event
74 j = self.split(code1)
92 Return the mapping as an iterable of ((code1, code2), state_set) and
103 code1 = map[i + 2]
105 result.append(((code0, code1), set))
106 code0 = code1
207 def dump_range(self, code0, code1, set, file):
210 if code1 == maxint
    [all...]
Regexps.py 40 code1 = ord(char_list[i])
41 code2 = code1 + 1
46 result.append(code1)
50 def uppercase_range(code1, code2):
52 If the range of characters from code1 to code2-1 includes any
55 code3 = max(code1, ord('a'))
63 def lowercase_range(code1, code2):
65 If the range of characters from code1 to code2-1 includes any
68 code3 = max(code1, ord('A'))
86 def CodeRange(code1, code2)
    [all...]
Machines.py 173 code0, code1 = event
176 elif code1 != maxint:
177 while code0 < code1:
  /external/strace/
ioctl.c 37 unsigned long code1 = (long) a; local
39 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0;
  /external/strace/linux/
ioctlsort.c 26 unsigned long code1 = ((struct ioctlent *) a)->code; local
30 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : strcmp(name1, name2);
  /external/chromium_org/third_party/re2/re2/
perl_groups.cc 8 static URange16 code1[] = { /* \d */ member in namespace:re2
23 { "\\d", +1, code1, 1 },
24 { "\\D", -1, code1, 1 },