Lines Matching refs:temp

116 	const char* temp;
118 while (from->FindString("largv", idx++, &temp) == B_OK) {
119 if (temp) {
120 char* copy = new char[strlen(temp) + 1];
121 strcpy(copy, temp);
617 int32 temp;
618 for (int32 i = 0; from->FindInt32("ooffsets", i, &temp) == B_OK; i++) {
619 fOverrideOffsets.AddItem((void*)(addr_t)temp);
621 if (from->FindInt32("overrides", i, &temp) != B_OK)
622 temp = ' ';
624 fOverrides.AddItem((void*)(addr_t)temp);
626 if (from->FindInt32("omods", i, &temp) != B_OK)
627 temp = -1;
629 fOverrideModifiers.AddItem((void*)(addr_t)temp);
631 if (from->FindInt32("okeys", i, &temp) != B_OK)
632 temp = 0;
634 fOverrideKeyCodes.AddItem((void*)(addr_t)temp);
882 BMessage temp(*keyMessage);
887 temp.RemoveName("modifiers");
888 temp.AddInt32("modifiers", fModCodes[i]);
889 temp.RemoveName("key");
890 temp.AddInt32("key", fKeyCodes[i]);
891 temp.RemoveName("raw_char");
892 temp.AddInt32("raw_char", (int32) nextChar);
893 temp.RemoveName("byte");
927 temp.RemoveName("byte");
930 temp.AddInt8("byte", t[m]);
932 temp.RemoveName("states");
933 temp.AddData("states", B_UINT8_TYPE, &fStates[i * 16], 16, true, 16);
934 temp.RemoveName("bytes");
935 temp.AddString("bytes", t);
936 temp.what = B_KEY_DOWN;
937 outList->AddItem(new BMessage(temp));
938 temp.what = B_KEY_UP;
939 outList->AddItem(new BMessage(temp));
973 const char* temp;
974 if (from->FindString("mimeType", 0, &temp) == B_OK)
975 fMimeType = temp;
1323 char* temp = new char[strlen(arg) + 1];
1324 strcpy(temp, arg);
1327 char* percent = strchr(temp, '%');
1331 while (beginNum >= temp) {
1348 char* pixel = temp;
1355 delete [] temp;
1630 const char* temp;
1632 if (from->FindString("signature", 0, &temp) == B_OK)
1633 fSignature = temp;