Home | History | Annotate | Download | only in Common

Lines Matching full:temp

72       wchar_t temp[12];

73 ConvertUInt32ToHex(prop.ulVal, temp);
74 return temp;
95 wchar_t temp[16];
97 temp[0] = kPosixTypes[(a >> 12) & 0xF];
100 temp[7 - i] = MY_ATTR_CHAR(a, i + 2, L'r');
101 temp[8 - i] = MY_ATTR_CHAR(a, i + 1, L'w');
102 temp[9 - i] = MY_ATTR_CHAR(a, i + 0, L'x');
104 if ((a & 0x800) != 0) temp[3] = ((a & (1 << 6)) ? 's' : 'S');
105 if ((a & 0x400) != 0) temp[6] = ((a & (1 << 3)) ? 's' : 'S');
106 if ((a & 0x200) != 0) temp[9] = ((a & (1 << 0)) ? 't' : 'T');
107 temp[10] = 0;
108 res = temp;
113 ConvertUInt32ToHex(a, temp);
114 res = UString(temp) + L' ' + res;