Lines Matching refs:temp

13 	const char * temp = keyword(999);
14 //printf("%s\n",temp);
15 TEST_ASSERT_EQUAL_STRING("(keyword #999 not found)",temp);
21 const char * temp = keyword(T_Server);
22 //printf("%s",temp); //143 or 401 ?
23 TEST_ASSERT_EQUAL_STRING("server",temp);
54 int temp = lex_pop_file();
56 TEST_ASSERT_FALSE(temp);
62 int temp = is_integer("123");
63 TEST_ASSERT_TRUE(temp);
64 temp = is_integer("-999");
65 TEST_ASSERT_TRUE(temp);
66 temp = is_integer("0"); //what about -0?
67 TEST_ASSERT_TRUE(temp);
68 temp = is_integer("16.5");
69 TEST_ASSERT_FALSE(temp);
70 temp = is_integer("12ab");
71 TEST_ASSERT_FALSE(temp);
72 temp = is_integer("2147483647");
73 TEST_ASSERT_TRUE(temp);
74 temp = is_integer("2347483647"); //too big for signed int
75 TEST_ASSERT_FALSE(temp);
81 int temp;
82 temp = is_u_int("-123");
83 TEST_ASSERT_FALSE(temp);
84 temp = is_u_int("0");
85 TEST_ASSERT_TRUE(temp); //-0 fails btw
86 temp = is_u_int("2347483647"); //fits into u_int
87 TEST_ASSERT_TRUE(temp);
88 temp = is_u_int("112347483647"); //too big even for uint
89 TEST_ASSERT_TRUE(temp);
95 int temp;
96 temp = is_double("0");
97 TEST_ASSERT_TRUE(temp);
98 temp = is_double("123");
99 TEST_ASSERT_TRUE(temp);
100 temp = is_double("123.45"); //DOESN'T WORK WITH 123,45, not sure if intented?
101 TEST_ASSERT_TRUE(temp);
102 temp = is_double("-123.45"); //DOESN'T WORK WITH 123,45, not sure if intented?
103 TEST_ASSERT_TRUE(temp);
109 int temp ;
110 temp = is_special('a');
111 TEST_ASSERT_FALSE(temp);
112 temp = is_special('?');
113 TEST_ASSERT_FALSE(temp);
120 int temp;
122 temp = is_EOC('\n');
123 TEST_ASSERT_TRUE(temp);
126 temp = is_EOC(';');
127 TEST_ASSERT_TRUE(temp);
129 temp = is_EOC('A');
130 TEST_ASSERT_FALSE(temp);
131 temp = is_EOC('1');
132 TEST_ASSERT_FALSE(temp);