Home | History | Annotate | Download | only in grxmlcompile

Lines Matching full:value

43     int value;
48 myHash.getValue(1, &value);
49 std::cout << "Index 1 has value= " << value <<std::endl;
51 std::cout << "value " << value << " has index " << i <<std::endl;
55 myHash.getNumericIndexByValue(value, &j);
56 std::cout << "value " << value << " has numeric index " << j <<std::endl;
68 string value = "hello";
72 myHash.insert(1, value);
75 myHash.getValue(1, &value);
76 std::cout << "Index 1 has value= " << value <<std::endl;
77 myHash.getIndex( value, &i );
78 std::cout << "value " << value << " has index " << i <<std::endl;
82 myHash.getNumericIndexByValue(value, &j);
83 std::cout << "value " << value << " has numeric index " << j <<std::endl;
86 myHash.getFirst(&i, &value);
87 std::cout << "First iterator values are " << i <<", " << value <<std::endl;
88 if (myHash.getNext(&i, &value)) {
89 std::cout << "Iterator values are " << i <<", " << value <<std::endl;
95 myHash.getFirst(&i, &value);
96 std::cout << "First iterator values are " << i <<", " << value <<std::endl;
97 if (myHash.getNext(&i, &value)) {
98 std::cout << "Iterator values are " << i <<", " << value <<std::endl;
169 cout << "'" << i << "' has value of " << s <<endl;