Searched
full:atoi (Results
376 -
400 of
3061) sorted by null
<<11121314151617181920>>
/frameworks/av/cmds/stagefright/ |
muxer.cpp | 271 trimStartTimeMs = atoi(optarg); 277 trimEndTimeMs = atoi(optarg); 283 rotationDegrees = atoi(optarg);
|
/frameworks/base/libs/hwui/ |
Properties.cpp | 78 return atoi(buf); 193 overrideAmbientShadowStrength = atoi(value); 197 overrideSpotShadowStrength = atoi(value);
|
/frameworks/native/cmds/service/ |
service.cpp | 133 int32_t code = atoi(argv[optind++]); 150 data.writeInt32(atoi(argv[optind++])); 226 launchFlags = atoi(value);
|
/frameworks/wilhelm/tests/sandbox/ |
multiplay.c | 125 numPlayers = atoi(&arg[2]); 127 mixVolumeLevel = atoi(&arg[2]); 129 playTimeInMilliseconds = atoi(&arg[2]) * 1000;
|
/hardware/qcom/display/msm8998/libqdutils/ |
qd_utils.cpp | 232 return atoi(line); 267 *panelBpp = static_cast<uint32_t>(atoi(tokens[1])); 269 *patternType = static_cast<uint32_t>(atoi(tokens[1]));
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/ |
omx_swvdec_utils.cpp | 64 omx_swvdec_loglevel = atoi(property_value); 298 m_dump_ip = atoi(property_value); 304 m_dump_op = atoi(property_value);
|
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/ |
omx_swvdec_utils.cpp | 66 omx_swvdec_loglevel = atoi(property_value); 203 m_dump_ip = atoi(property_value); 210 m_dump_op = atoi(property_value);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_string.py | 81 self.assertEqual(string.atoi(" 1 "), 1) 82 self.assertRaises(ValueError, string.atoi, " 1x") 83 self.assertRaises(ValueError, string.atoi, " x1 ")
|
test_strop.py | 13 self.assertTrue(strop.atoi(" 1 ") == 1) 14 self.assertRaises(ValueError, strop.atoi, " 1x") 15 self.assertRaises(ValueError, strop.atoi, " x1 ")
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_string.py | 81 self.assertEqual(string.atoi(" 1 "), 1) 82 self.assertRaises(ValueError, string.atoi, " 1x") 83 self.assertRaises(ValueError, string.atoi, " x1 ")
|
test_strop.py | 13 self.assertTrue(strop.atoi(" 1 ") == 1) 14 self.assertRaises(ValueError, strop.atoi, " 1x") 15 self.assertRaises(ValueError, strop.atoi, " x1 ")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_string.py | 81 self.assertEqual(string.atoi(" 1 "), 1) 82 self.assertRaises(ValueError, string.atoi, " 1x") 83 self.assertRaises(ValueError, string.atoi, " x1 ")
|
test_strop.py | 13 self.assertTrue(strop.atoi(" 1 ") == 1) 14 self.assertRaises(ValueError, strop.atoi, " 1x") 15 self.assertRaises(ValueError, strop.atoi, " x1 ")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_string.py | 81 self.assertEqual(string.atoi(" 1 "), 1) 82 self.assertRaises(ValueError, string.atoi, " 1x") 83 self.assertRaises(ValueError, string.atoi, " x1 ")
|
test_strop.py | 13 self.assertTrue(strop.atoi(" 1 ") == 1) 14 self.assertRaises(ValueError, strop.atoi, " 1x") 15 self.assertRaises(ValueError, strop.atoi, " x1 ")
|
/system/extras/iotop/ |
iotop.cpp | 131 delay = atoi(optarg); 137 limit = atoi(optarg); 140 cycles = atoi(optarg);
|
/system/media/audio_utils/tests/ |
fifo_tests.cpp | 45 frameCount = atoi(&arg[2]); 48 maxFramesPerRead = atoi(&arg[2]); 57 maxFramesPerWrite = atoi(&arg[2]);
|
/build/soong/cc/ |
ndk_library.go | 131 version, err := strconv.Atoi(apiLevel) 151 return strconv.Atoi(firstSupportedVersion) 172 unversionedUntil, err := strconv.Atoi(stub.properties.Unversioned_until) 177 version, err := strconv.Atoi(stub.properties.ApiLevel)
|
/cts/suite/audio_quality/lib/src/task/ |
TaskAsync.cpp | 64 mVolume = atoi(value.string());
|
TaskInput.cpp | 39 mRecordingTimeInMs = atoi(value);
|
/device/google/dragon/health/ |
healthd-dragon.cpp | 58 return atoi(buf) / 1000;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/ |
cvslib.py | 313 sum = sum + chr(string.atoi(hexsum[i:i+2], 16))
328 year = string.atoi(words[4])
330 day = string.atoi(words[2])
331 [hh, mm, ss] = map(string.atoi, string.splitfields(words[3], ':'))
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SplitFile/ |
splitfile.c | 127 splitpoint = atoi (argv[2]);
|
/external/autotest/client/tests/signaltest/src/ |
signaltest.c | 251 case 'b': tracelimit = atoi(optarg); break; 252 case 'l': max_cycles = atoi(optarg); break; 253 case 'p': priority = atoi(optarg); break; 255 case 't': num_threads = atoi(optarg); break;
|
/external/compiler-rt/lib/asan/tests/ |
asan_str_test.cc | 518 void RunAtoiOOBTest(PointerToCallAtoi Atoi) { 521 EXPECT_DEATH(Atoi(array + 11), RightOOBReadMessage(1)); 522 EXPECT_DEATH(Atoi(array - 1), LeftOOBReadMessage(1)); 524 EXPECT_DEATH(Atoi(array), RightOOBReadMessage(0)); 527 Atoi(array); 530 EXPECT_DEATH(Atoi(array), RightOOBReadMessage(0)); 532 EXPECT_DEATH(Atoi(array), RightOOBReadMessage(0)); 533 EXPECT_DEATH(Atoi(array + 9), RightOOBReadMessage(0)); 539 Ident(atoi(nptr));
|
Completed in 2143 milliseconds
<<11121314151617181920>>