HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 126 - 150 of 3860) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/selinux/libsemanage/src/
semanageswig_python.i 111 %typemap(in, numinputs=0) char **(char *temp=NULL) {
112 $1 = &temp;
120 %typemap(in, numinputs=0) char ***(char **temp=NULL) {
121 $1 = &temp;
148 %typemap(in, numinputs=0) semanage_module_info_t **(semanage_module_info_t *temp=NULL) {
149 $1 = &temp;
160 %typemap(in, numinputs=0) semanage_module_key_t **(semanage_module_key_t *temp=NULL) {
161 $1 = &temp;
172 %typemap(in, numinputs=0) semanage_context_t **(semanage_context_t *temp=NULL) {
173 $1 = &temp;
    [all...]
  /external/toybox/tests/
rmdir.test 29 mkdir temp
30 touch temp/thing
32 "rmdir temp 2>/dev/null || [ -d temp ] && echo yes" "yes\n" "" ""
34 "rmdir -p temp/thing 2>/dev/null || [ -f temp/thing ] && echo yes" \
37 mkdir -p temp/one/two/three
39 "rmdir -p temp/one/two/three 2>/dev/null || [ -d temp ] && [ ! -e temp/one ] && echo yes"
    [all...]
  /external/v8/testing/gtest/samples/
sample2.cc 53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample2.cc 53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
  /frameworks/rs/
rsMatrix3x3.cpp 51 Matrix3x3 temp; local
62 temp.set(i, 0, ri0);
63 temp.set(i, 1, ri1);
64 temp.set(i, 2, ri2);
66 load(&temp);
71 float temp; local
74 temp = get(i, j);
76 set(j, i, temp);
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalEvent.java 29 ThermalEvent(int id, int type, int state, int temp, String zoneName, String profName) {
33 mZoneTemp = temp;
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
HvacPolicy.java 51 public float userToHardwareTemp(int temp) {
53 return fahrenheitToCelsius(temp);
57 return celsiusToFahrenheit(temp);
60 return temp;
63 public int hardwareToUserTemp(float temp) {
65 return (int) celsiusToFahrenheit(temp);
69 return (int) fahrenheitToCelsius(temp);
72 return (int) temp;
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/samples/
sample2.cc 53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/samples/
sample2.cc 53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
  /cts/apps/CtsVerifier/include/colorchecker/
vec3.h 37 Vec3<T> temp(mRed + param.r(), mGreen + param.g(), mBlue + param.b());
38 return temp;
42 Vec3<T> temp(mRed - param.r(), mGreen - param.g(), mBlue - param.b());
43 return temp;
47 Vec3<T> temp(mRed * param, mGreen * param, mBlue * param);
48 return temp;
53 Vec3<float> temp(mRed * static_cast<U>(param.r()),
56 return temp;
61 Vec3<float> temp; local
63 temp.set(static_cast<float>(mRed) / static_cast<float>(param)
71 Vec3<float> temp; local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetLocal.java 40 File temp = cache.get(url); local
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url); local
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 40 File temp = cache.get(url); local
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url); local
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
std_complex.i 32 %typemap(in) const complex<T>& (std::complex<T> temp) {
34 temp = std::complex<T>(PyComplex_RealAsDouble($input),
36 $1 = &temp;
38 temp = std::complex<T>(PyFloat_AsDouble($input), 0);
39 $1 = &temp;
41 temp = std::complex<T>(PyInt_AsLong($input), 0);
42 $1 = &temp;
  /prebuilts/misc/common/swig/include/2.0.11/php/
std_string.i 59 %typemap(in) string & ($*1_ltype temp) %{
61 temp.assign(Z_STRVAL_PP($input), Z_STRLEN_PP($input));
62 $1 = &temp;
65 %typemap(directorout) string & ($*1_ltype *temp) %{
67 temp = new $*1_ltype(Z_STRVAL_PP($input), Z_STRLEN_PP($input));
68 swig_acquire_ownership(temp);
69 $result = temp;
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/fstream.cons/
wchar_pointer.pass.cpp 24 std::wstring temp = get_wide_temp_file_name(); local
26 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
34 _wremove(temp.c_str());
36 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
44 _wremove(temp.c_str());
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/fstream.members/
open_wchar_pointer.pass.cpp 24 std::wstring temp = get_wide_temp_file_name(); local
28 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
37 _wremove(temp.c_str());
41 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
50 _wremove(temp.c_str());
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/
move_assign.pass.cpp 25 std::string temp = get_temp_file_name(); local
27 std::fstream fso(temp.c_str(), std::ios_base::in | std::ios_base::out
37 std::remove(temp.c_str());
39 std::wfstream fso(temp.c_str(), std::ios_base::in | std::ios_base::out
49 std::remove(temp.c_str());
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.cons/
move.pass.cpp 25 std::string temp = get_temp_file_name(); local
27 std::fstream fso(temp, std::ios_base::in | std::ios_base::out
36 std::remove(temp.c_str());
38 std::wfstream fso(temp, std::ios_base::in | std::ios_base::out
47 std::remove(temp.c_str());
pointer.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
33 std::remove(temp.c_str());
35 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out
43 std::remove(temp.c_str());
string.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::fstream fs(temp,
34 std::remove(temp.c_str());
36 std::wfstream fs(temp,
45 std::remove(temp.c_str());
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/
close.pass.cpp 23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str(), std::ios_base::out);
32 std::remove(temp.c_str());
36 fs.open(temp.c_str(), std::ios_base::out);
41 std::remove(temp.c_str());
open_pointer.pass.cpp 23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
36 std::remove(temp.c_str());
40 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
49 std::remove(temp.c_str());
open_string.pass.cpp 23 std::string temp = get_temp_file_name(); local
27 fs.open(temp, std::ios_base::in | std::ios_base::out
36 std::remove(temp.c_str());
40 fs.open(temp, std::ios_base::in | std::ios_base::out
49 std::remove(temp.c_str());
  /external/ltp/testcases/kernel/syscalls/fmtmsg/
fmtmsg01.c 51 FILE *temp; variable
97 fprintf(temp, "fmtmsg returned %d, expected 0\n\n", ret_val);
105 fprintf(temp, "Expected string: %s\n", str1);
106 fprintf(temp, "does not match\n");
107 fprintf(temp, "received string: %s\n\n", buf);
121 fprintf(temp, "Expected string: %s\n", str2);
122 fprintf(temp, "does not match\n");
123 fprintf(temp, "received string: %s\n\n", buf);
135 fprintf(temp, "addseverity returned %d, expected MM_NOTOK\n",
149 fprintf(temp, "addseverity returned %d, expected MM_OK\n"
    [all...]
  /external/ltp/testcases/misc/math/nextafter/
nextafter01.c 50 FILE *temp; variable
63 setup(); /* temp file is now open */
70 fprintf(temp, "nextafter returned %e, expected answer or 1.0\n",
81 fprintf(temp, "nextafter returned %e, expected answer or 1.0\n",
92 fprintf(temp, "nextafter 3 returned %e, expected 1.0\n",
111 temp = stderr;

Completed in 971 milliseconds

1 2 3 4 56 7 8 91011>>