Lines Matching refs:temp

29 	const char * temp = keyword(999);
30 //printf("%s\n",temp);
31 TEST_ASSERT_EQUAL_STRING("(keyword not found)",temp);
35 const char * temp = keyword(T_Server);
36 //printf("%s",temp); //143 or 401 ?
37 TEST_ASSERT_EQUAL_STRING("server",temp);
62 int temp = lex_pop_file();
64 TEST_ASSERT_FALSE(temp);
70 int temp = is_integer("123");
71 TEST_ASSERT_TRUE(temp);
72 temp = is_integer("-999");
73 TEST_ASSERT_TRUE(temp);
74 temp = is_integer("0"); //what about -0?
75 TEST_ASSERT_TRUE(temp);
76 temp = is_integer("16.5");
77 TEST_ASSERT_FALSE(temp);
78 temp = is_integer("12ab");
79 TEST_ASSERT_FALSE(temp);
80 temp = is_integer("2147483647");
81 TEST_ASSERT_TRUE(temp);
82 temp = is_integer("2347483647"); //too big for signed int
83 TEST_ASSERT_FALSE(temp);
88 int temp;
89 temp = is_u_int("-123");
90 TEST_ASSERT_FALSE(temp);
91 temp = is_u_int("0");
92 TEST_ASSERT_TRUE(temp); //-0 fails btw
93 temp = is_u_int("2347483647"); //fits into u_int
94 TEST_ASSERT_TRUE(temp);
95 temp = is_u_int("112347483647"); //too big even for uint
96 TEST_ASSERT_TRUE(temp);
100 int temp;
101 temp = is_double("0");
102 TEST_ASSERT_TRUE(temp);
103 temp = is_double("123");
104 TEST_ASSERT_TRUE(temp);
105 temp = is_double("123.45"); //DOESN'T WORK WITH 123,45, not sure if intented?
106 TEST_ASSERT_TRUE(temp);
107 temp = is_double("-123.45"); //DOESN'T WORK WITH 123,45, not sure if intented?
108 TEST_ASSERT_TRUE(temp);
112 int temp ;
113 temp = is_special('a');
114 TEST_ASSERT_FALSE(temp);
115 temp = is_special('?');
116 TEST_ASSERT_FALSE(temp);
121 int temp;
123 temp = is_EOC('\n');
124 TEST_ASSERT_TRUE(temp);
127 temp = is_EOC(';');
128 TEST_ASSERT_TRUE(temp);
130 temp = is_EOC('A');
131 TEST_ASSERT_FALSE(temp);
132 temp = is_EOC('1');
133 TEST_ASSERT_FALSE(temp);