HomeSort by relevance Sort by last modified time
    Searched refs:Comp (Results 26 - 48 of 48) sorted by null

12

  /external/llvm/lib/Target/Mips/
MipsCCState.cpp 33 auto Comp = [](const char *S1, const char *S2) { return strcmp(S1, S2) < 0; };
34 assert(std::is_sorted(std::begin(LibCalls), std::end(LibCalls), Comp));
36 CallSym, Comp);
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.cnstr/
init.pass.cpp 99 typedef test_compare<std::equal_to<int>> Comp;
100 typedef std::unordered_map<int, std::string, HF, Comp, A> C;
130 typedef test_compare<std::equal_to<int>> Comp;
131 typedef std::unordered_map<int, std::string, HF, Comp, A> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
init.pass.cpp 99 typedef test_compare<std::equal_to<int>> Comp;
100 typedef std::unordered_map<int, std::string, HF, Comp, A> C;
130 typedef test_compare<std::equal_to<int>> Comp;
131 typedef std::unordered_map<int, std::string, HF, Comp, A> C;
  /frameworks/compile/slang/
slang_rs_context.h 262 std::vector<RSExportType *> getReduceResultTypes(FilterIn Filt, Compare Comp) const {
265 std::sort(Return.begin(), Return.end(), Comp);
267 [Comp](const RSExportType *a, const RSExportType *b) {
268 return !Comp(a, b) && !Comp(b, a);
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 280 ICmpInst* Comp = new ICmpInst(ICmpInst::ICMP_SLT,
291 NewNode->getInstList().push_back(Comp);
293 BranchInst::Create(LBranch, RBranch, Comp, NewNode);
310 ICmpInst* Comp = nullptr;
313 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val,
319 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High,
323 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High,
332 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound,
339 BranchInst::Create(Succ, Default, Comp, NewLeaf);
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/
init.pass.cpp 143 typedef test_compare<std::equal_to<int>> Comp;
144 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
190 assert(c.key_eq() == Comp());
198 typedef test_compare<std::equal_to<int>> Comp;
199 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
247 assert(c.key_eq() == Comp());
range.pass.cpp 149 typedef test_compare<std::equal_to<int>> Comp;
150 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
198 assert(c.key_eq() == Comp());
206 typedef test_compare<std::equal_to<int>> Comp;
207 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
257 assert(c.key_eq() == Comp());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/
init.pass.cpp 143 typedef test_compare<std::equal_to<int>> Comp;
144 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
190 assert(c.key_eq() == Comp());
198 typedef test_compare<std::equal_to<int>> Comp;
199 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
247 assert(c.key_eq() == Comp());
range.pass.cpp 149 typedef test_compare<std::equal_to<int>> Comp;
150 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
198 assert(c.key_eq() == Comp());
206 typedef test_compare<std::equal_to<int>> Comp;
207 typedef std::unordered_multimap<int, std::string, HF, Comp, A> C;
257 assert(c.key_eq() == Comp());
  /external/clang/test/SemaCXX/
new-delete.cpp 165 class Comp : public Tier {};
173 const Comp *dict;
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 104 ATTRIBUTE Ascend-PPP-VJ-Slot-Comp 210 integer
197 VALUE Ascend-Link-Compression Link-Comp-None 0
198 VALUE Ascend-Link-Compression Link-Comp-Stac 1
199 VALUE Ascend-Link-Compression Link-Comp-Stac-Draft-9 2
200 VALUE Ascend-Link-Compression Link-Comp-MS-Stac 3
259 VALUE Ascend-PPP-VJ-Slot-Comp VJ-Slot-Comp-No 1
  /external/llvm/lib/Support/
Triple.cpp 717 StringRef Comp = Components[Idx];
721 Arch = parseArch(Comp);
725 Vendor = parseVendor(Comp);
729 OS = parseOS(Comp);
730 IsCygwin = Comp.startswith("cygwin");
731 IsMinGW32 = Comp.startswith("mingw");
735 Environment = parseEnvironment(Comp);
738 ObjectFormat = parseFormat(Comp);
793 assert(Pos < Components.size() && Components[Pos] == Comp &&
    [all...]
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /cts/tools/cts-media/
get_achievable_rates.py 345 Comp = namedtuple('Comp', 'is_decoder google mime name')
347 lambda e: Comp(is_decoder=e.is_decoder, google='.google.' in e.codec, mime=e.mime, name=e.codec))
348 for comp in sorted(by_comp):
349 section = 'Decoders' if comp.is_decoder else 'Encoders'
355 yield ' <MediaCodec name="%s" type="%s" update="true">' % (comp.name, comp.mime)
356 by_size = createLookup(by_comp[comp], lambda e: e.size)
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 395 template <typename Comp>
396 void sort(Comp comp) {
397 BasicBlocks.sort(comp);
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 433 int (*Comp)(const PathDiagnostic *const *, const PathDiagnostic *const *) =
441 array_pod_sort(BatchDiags.begin(), BatchDiags.end(), Comp);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]
SemaDeclAttr.cpp 179 Compare Comp) {
180 if (Comp(getNumAttributeArgs(Attr), Num)) {
    [all...]
  /external/dlmalloc/
malloc.c     [all...]

Completed in 1128 milliseconds

12