HomeSort by relevance Sort by last modified time
    Searched defs:AddInteger (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/browser/geolocation/
network_location_request.cc 178 int age = kint32min; // Invalid so AddInteger() will ignore.
200 void AddInteger(const std::string& property_name, int value,
232 AddInteger("signalStrength", (*iter)->radio_signal_strength, wifi_dict);
233 AddInteger("age", age_milliseconds, wifi_dict);
234 AddInteger("channel", (*iter)->channel, wifi_dict);
235 AddInteger("signalToNoiseRatio", (*iter)->signal_to_noise, wifi_dict);
  /external/llvm/lib/Support/
FoldingSet.cpp 60 void FoldingSetNodeID::AddInteger(signed I) {
63 void FoldingSetNodeID::AddInteger(unsigned I) {
66 void FoldingSetNodeID::AddInteger(long I) {
67 AddInteger((unsigned long)I);
69 void FoldingSetNodeID::AddInteger(unsigned long I) {
71 AddInteger(unsigned(I));
73 AddInteger((unsigned long long)I);
78 void FoldingSetNodeID::AddInteger(long long I) {
79 AddInteger((unsigned long long)I);
81 void FoldingSetNodeID::AddInteger(unsigned long long I)
    [all...]

Completed in 49 milliseconds