Home | History | Annotate | Download | only in aapt

Lines Matching defs:ignore

60 // The default to use if no other ignore pattern is defined.
63 // The ignore pattern that can be passed via --ignore-assets in Main.cpp
95 bool ignore = false;
107 !ignore && token != NULL;
128 ignore = strncasecmp(token, path + plen - n, n) == 0;
132 ignore = strncasecmp(token, path, n - 1) == 0;
134 ignore = strcasecmp(token, path) == 0;
138 if (ignore && chatty) {
146 return ignore;