Searched defs:unsafe (Results 1 - 4 of 4) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlprinter.cc154 size_t unsafe = text.find_first_of("<>&\"", safe); local
155 if (unsafe == std::string::npos)
156 unsafe = text.length();
157 *pout_ << text.substr(safe, unsafe - safe);
158 if (unsafe == text.length())
160 switch (text[unsafe]) {
166 safe = unsafe + 1;
176 size_t unsafe = text.find_first_of("<>&", safe); local
177 if (unsafe == std::string::npos)
178 unsafe
[all...]
/external/llvm/include/llvm/CodeGen/PBQP/Heuristics/
H A DBriggs.h105 UnsafeArray unsafe, reverseUnsafe; member in struct:PBQP::Heuristics::Briggs::EdgeData
324 ed.unsafe.clear();
325 ed.unsafe.resize(numRegs, 0);
333 ed.unsafe[i] = 1;
365 EdgeData::UnsafeArray &unsafe = local
366 nIsNode1 ? ed.unsafe : ed.reverseUnsafe;
370 if (unsafe[r]) {
392 EdgeData::UnsafeArray &unsafe = local
393 nIsNode1 ? ed.unsafe : ed.reverseUnsafe;
397 if (unsafe[
[all...]
/external/icu4c/i18n/
H A Ducol_sit.cpp865 USet *unsafe,
871 uset_clear(unsafe);
878 uset_applyPattern(unsafe, cccpattern, 24, USET_IGNORE_SPACE, status);
881 uset_addRange(unsafe, 0xe40, 0xe44);
882 uset_addRange(unsafe, 0xec0, 0xec4);
884 uset_addRange(unsafe, 0xd800, 0xdfff);
892 // to get unsafe code points, we need to
893 // break the strings apart and add them to the unsafe set
901 uset_add(unsafe, c);
909 return uset_size(unsafe);
864 ucol_getUnsafeSet( const UCollator *coll, USet *unsafe, UErrorCode *status) argument
[all...]
/external/kernel-headers/original/linux/
H A Dmodule.h312 /* Am I unsafe to unload? */
313 int unsafe; member in struct:module
446 if (mod && !(mod)->unsafe) { \
448 "Module %s cannot be unloaded due to unsafe usage in" \
450 (mod)->unsafe = 1; \

Completed in 102 milliseconds