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

/external/chromium_org/components/autofill/core/browser/
H A Dautofill_xml_parser.cc133 char* attr_end = NULL; local
134 int value = strtol(attribute, &attr_end, 10);
135 if (attr_end != NULL && attr_end == attribute) {
173 char* attr_end = NULL; local
174 double value = strtod(attribute, &attr_end);
175 if (attr_end != NULL && attr_end == attribute) {
/external/clang/include/clang/AST/
H A DDeclBase.h441 return attr_range(attr_begin(), attr_end());
447 attr_iterator attr_end() const { function in class:clang::Decl
474 return specific_attr_iterator<T>(attr_end());

Completed in 2568 milliseconds