Searched refs:leftmost (Results 1 – 25 of 54) sorted by relevance
123
/external/python/setuptools/setuptools/ |
D | ssl_support.py | 71 leftmost = parts[0] 74 wildcards = leftmost.count('*') 90 if leftmost == '*': 94 elif leftmost.startswith('xn--') or hostname.startswith('xn--'): 99 pats.append(re.escape(leftmost)) 102 pats.append(re.escape(leftmost).replace(r'\*', '[^.]*'))
|
/external/libxkbcommon/xkbcommon/test/data/symbols/ |
D | ctrl | 20 // Move Ctrl to the leftmost key on the middle row and CapsLock to the 21 // leftmost key on the bottom row. Only works if the geometry or keycodes 29 // Move Ctrl to the leftmost key on the bottom row and CapsLock to the 30 // leftmost key on the middle row. Only works if the geometry or keycodes
|
/external/python/cpython3/Modules/ |
D | _heapqmodule.c | 295 Py_ssize_t i, j, m, mhalf, leftmost; in cache_friendly_heapify() local 298 leftmost = keep_top_bit(m + 1) - 1; /* leftmost node in row of m */ in cache_friendly_heapify() 301 for (i = leftmost - 1 ; i >= mhalf ; i--) { in cache_friendly_heapify() 312 for (i = m - 1 ; i >= leftmost ; i--) { in cache_friendly_heapify()
|
/external/python/cpython2/Lib/ |
D | ssl.py | 214 leftmost = pieces[0] 217 wildcards = leftmost.count('*') 233 if leftmost == '*': 237 elif leftmost.startswith('xn--') or hostname.startswith('xn--'): 242 pats.append(re.escape(leftmost)) 245 pats.append(re.escape(leftmost).replace(r'\*', '[^.]*'))
|
/external/python/cpython3/Doc/library/ |
D | bisect.rst | 78 'Locate the leftmost value exactly equal to x' 99 'Find leftmost value greater than x' 106 'Find leftmost item greater than or equal to x'
|
D | functools.rst | 491 The leftmost positional arguments that will be prepended to the positional
|
D | collections.rst | 575 >>> d.popleft() # return and remove the leftmost item 579 >>> d[0] # peek at leftmost item
|
D | hashlib.rst | 366 BLAKE2s, 0 for the first, leftmost, leaf, or in sequential mode).
|
D | difflib.rst | 447 matches the leftmost ``'abcd'`` in the second sequence:
|
/external/python/cpython2/Doc/library/ |
D | bisect.rst | 80 'Locate the leftmost value exactly equal to x' 101 'Find leftmost value greater than x' 108 'Find leftmost item greater than or equal to x'
|
D | functools.rst | 177 The leftmost positional arguments that will be prepended to the positional
|
D | framework.rst | 298 topmost (leftmost) and bottommost (rightmost) visible values and it returns the
|
D | collections.rst | 358 >>> d.popleft() # return and remove the leftmost item 362 >>> d[0] # peek at leftmost item
|
D | re.rst | 538 preceded by an unescaped backslash, all characters from the leftmost such 651 Return the string obtained by replacing the leftmost non-overlapping occurrences
|
/external/curl/tests/ |
D | objnames.inc | 58 # 6) Five leftmost substrings which end in an underscore character are
|
/external/cros/system_api/dbus/power_manager/ |
D | power_supply_properties.proto | 60 // left side, while BACK_LEFT means the leftmost port on the back of the
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/ |
D | LanaiInstrInfo.td | 143 // bits set and the leftmost 16 bits 1's. 151 // i32hi16 predicate - true if the 32-bit immediate has only leftmost 16 160 // i32lo16 predicate - true if the 32-bit immediate has the leftmost 16
|
/external/llvm/lib/Target/Lanai/ |
D | LanaiInstrInfo.td | 145 // bits set and the leftmost 16 bits 1's. 153 // i32hi16 predicate - true if the 32-bit immediate has only leftmost 16 162 // i32lo16 predicate - true if the 32-bit immediate has the leftmost 16
|
/external/python/cpython3/Doc/reference/ |
D | expressions.rst | 194 However, aside from the iterable expression in the leftmost :keyword:`!for` clause, 198 The iterable expression in the leftmost :keyword:`!for` clause is evaluated 201 leftmost :keyword:`!for` clause cannot be evaluated in the enclosing scope as 202 they may depend on the values obtained from the leftmost iterable. For example: 364 leftmost :keyword:`!for` clause is immediately evaluated, so that an error 367 Subsequent :keyword:`!for` clauses and any filter condition in the leftmost 369 depend on the values obtained from the leftmost iterable. For example:
|
/external/skqp/docs/ |
D | SkCanvas_Reference.bmh | 3305 The leftmost image is smaller than center; only corners are drawn, all scaled to fit. 3370 The two leftmost images has four corners and sides to the left and right of center. 3371 The leftmost image scales the width of corners proportionately to fit. 3589 The two leftmost bitmap draws has four corners and sides to the left and right of center. 3590 The leftmost bitmap draw scales the width of corners proportionately to fit. 3760 The two leftmost bitmap draws has four corners and sides to the left and right of center. 3761 The leftmost bitmap draw scales the width of corners proportionately to fit. 3839 The leftmost image is smaller than center; only corners are drawn, all scaled to fit.
|
D | spelling.txt | 126 leaving left left-aligned left-bottom left-top leftmost legacy legal length lengthens
|
/external/skia/docs/ |
D | SkCanvas_Reference.bmh | 3248 The leftmost image is smaller than center; only corners are drawn, all scaled to fit. 3313 The two leftmost images has four corners and sides to the left and right of center. 3314 The leftmost image scales the width of corners proportionately to fit. 3532 The two leftmost bitmap draws has four corners and sides to the left and right of center. 3533 The leftmost bitmap draw scales the width of corners proportionately to fit. 3703 The two leftmost bitmap draws has four corners and sides to the left and right of center. 3704 The leftmost bitmap draw scales the width of corners proportionately to fit. 3782 The leftmost image is smaller than center; only corners are drawn, all scaled to fit.
|
D | spelling.txt | 126 leaving left left-aligned left-bottom left-top leftmost legacy legal length lengthens
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3collections.inl | 339 * the leftmost bit by which the current key for that node and the new key we are going 401 /* We have located the leftmost differing bit, indicated by the depth variable. So, we know what
|
D | antlr3baserecognizer.inl | 669 * no idea of the size, but you should remember that this will cause the leftmost
|
123