Searched defs:AddInteger (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DFoldingSet.cpp60 void FoldingSetNodeID::AddInteger(signed I) { function in class:FoldingSetNodeID
63 void FoldingSetNodeID::AddInteger(unsigned I) { function in class:FoldingSetNodeID
66 void FoldingSetNodeID::AddInteger(long I) { function in class:FoldingSetNodeID
67 AddInteger((unsigned long)I);
69 void FoldingSetNodeID::AddInteger(unsigned long I) { function in class:FoldingSetNodeID
71 AddInteger(unsigned(I));
73 AddInteger((unsigned long long)I);
78 void FoldingSetNodeID::AddInteger(long long I) { function in class:FoldingSetNodeID
79 AddInteger((unsigned long long)I);
81 void FoldingSetNodeID::AddInteger(unsigne function in class:FoldingSetNodeID
[all...]
/external/chromium_org/content/browser/geolocation/
H A Dnetwork_location_request.cc178 int age = kint32min; // Invalid so AddInteger() will ignore.
200 void AddInteger(const std::string& property_name, int value, function in namespace:content::__anon7619
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);

Completed in 8135 milliseconds