| /third_party/python/Lib/test/ |
| H A D | test_ntpath.py | 852 self.assertFalse(ntpath.ismount(drive.upper()))
|
| H A D | test_fileinput.py | 156 line = line[:-1].upper()
|
| H A D | _test_multiprocessing.py | 844 self.child_conn.send(s.upper()) 3565 client.send(msg.upper()) 3571 client.sendall(msg.upper()) 3596 self.assertEqual(new_conn.recv(), msg.upper()) 3611 self.assertEqual(buf, msg.upper())
|
| H A D | test_ftplib.py | 476 arg = line.upper()
|
| H A D | test_nntplib.py | 511 #meth = getattr(self.handler, "handle_" + cmd.upper(), None) 512 meth = getattr(self, "handle_" + cmd.upper(), None)
|
| H A D | test_bigmem.py | 462 s = s.upper()
|
| /third_party/skia/third_party/externals/egl-registry/api/ |
| H A D | reg.py | 488 tdecl += '(' + self.genOpts.apientryp + 'PFN' + text.upper() + 'PROC' + tail + ')'
|
| /third_party/python/Python/ |
| H A D | ast_opt.c | 797 CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.upper); in astfold_expr()
|
| H A D | compile.c | 6073 if (e->v.Slice.upper && !check_ann_expr(c, e->v.Slice.upper)) { in check_ann_subscr() 6270 if (s->v.Slice.upper) { in compiler_slice() 6271 VISIT(c, expr, s->v.Slice.upper); in compiler_slice()
|
| /third_party/node/deps/v8/src/compiler/ |
| H A D | wasm-compiler.cc | 1671 // upper 32bits in BuildChangeEndiannessStore() 2572 Node* upper = BuildChangeSmiToInt32( in BuildDecodeException32BitValue() local 2575 upper = gasm_->Word32Shl(upper, Int32Constant(16)); in BuildDecodeException32BitValue() 2579 Node* value = gasm_->Word32Or(upper, lower); in BuildDecodeException32BitValue() 2585 Node* upper = Binop(wasm::kExprI64Shl, in BuildDecodeException64BitValue() local 2591 return Binop(wasm::kExprI64Ior, upper, lower); in BuildDecodeException64BitValue() 3827 // In memory64 mode on 32-bit systems, the upper 32 bits need to be zero to in BoundsCheckMem() 4142 // TODO(titzer): TF zeroes the upper bits of 64-bit loads for subword sizes. in LoadMem()
|
| /third_party/libinput/src/ |
| H A D | evdev-mt-touchpad.c | 3622 hi = r.upper; in tp_init_pressure() 3677 hi = r.upper; in tp_init_touch_size()
|
| /third_party/libinput/test/ |
| H A D | litest.c | 1068 if (t->range.upper != t->range.lower) in litest_run_suite() 1072 t->range.upper); in litest_run_suite()
|
| /third_party/node/deps/v8/src/codegen/x64/ |
| H A D | macro-assembler-x64.cc | 1590 uint32_t upper = static_cast<uint32_t>(src >> 32); in CallRecordWriteStub() local 1591 if (upper == 0) { in CallRecordWriteStub()
|
| /third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
| H A D | ecp_nistz256-armv8.pl | 575 adds $acc0,$acc0,$acc4 // accumulate upper half 1602 adds $acc0,$acc0,$acc4 // accumulate upper half
|
| /third_party/openssl/crypto/ec/asm/ |
| H A D | ecp_nistz256-armv8.pl | 600 adds $acc0,$acc0,$acc4 // accumulate upper half 1636 adds $acc0,$acc0,$acc4 // accumulate upper half
|
| /third_party/node/src/ |
| H A D | js_native_api_v8.cc | 3900 (tag.lower == typeTag->lower && tag.upper == typeTag->upper); 3902 *result = (tag.lower == typeTag->lower && 0 == typeTag->upper); 3904 *result = (0 == typeTag->lower && 0 == typeTag->upper);
|
| /third_party/node/deps/v8/src/heap/ |
| H A D | heap.cc | 277 size_t lower = 0, upper = heap_size; in GenerationSizesFromHeapSize() local 278 while (lower + 1 < upper) { in GenerationSizesFromHeapSize() 279 size_t old_generation = lower + (upper - lower) / 2; in GenerationSizesFromHeapSize() 288 upper = old_generation; in GenerationSizesFromHeapSize()
|
| /third_party/node/deps/v8/src/wasm/baseline/ |
| H A D | liftoff-compiler.cc | 2705 // Emit br table for upper half: 4174 // Get the upper half word into tmp_reg and extend to a Smi. 4211 LiftoffRegister upper = pinned.set(__ GetUnusedRegister(kGpReg, pinned)); 4212 Load16BitExceptionValue(upper, values_array, index, pinned); 4213 __ emit_i32_shli(upper.gp(), upper.gp(), 16); 4215 __ emit_i32_or(dst, upper.gp(), dst);
|
| /third_party/googletest/googlemock/scripts/generator/cpp/ |
| H A D | ast.py | 1073 elif modifier_token.name == modifier_token.name.upper(): 1074 # HACK(nnorwitz): assume that all upper-case names
|
| /third_party/icu/tools/unicode/py/ |
| H A D | preparseucd.py | 2039 icu_values.append(("U_GC_" + vname.upper() + "_MASK", vname))
|
| /third_party/lame/ |
| H A D | config.guess | 898 echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
|
| /third_party/node/ |
| H A D | configure.py | 2090 output['defines'] += [builtin_id.upper() + '=' + getattr(options, builtin_id)]
|
| /third_party/python/Lib/test/support/ |
| H A D | __init__.py | 1499 self._env = {k.upper(): os.getenv(k) for k in os.environ}
|
| /third_party/python/Lib/idlelib/ |
| H A D | editor.py | 1704 s = re.sub(r"-[a-z]\b", lambda m: m.group().upper(), s)
|
| /third_party/skia/third_party/externals/libpng/ |
| H A D | config.guess | 895 echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
|