HomeSort by relevance Sort by last modified time
    Searched refs:Found (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /external/llvm/lib/Support/
Triple.cpp 697 bool Found[4];
698 Found[0] = Arch != UnknownArch;
699 Found[1] = Vendor != UnknownVendor;
700 Found[2] = OS != UnknownOS;
701 Found[3] = Environment != UnknownEnvironment;
706 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
707 if (Found[Pos])
712 if (Idx < array_lengthof(Found) && Found[Idx])
760 while (i < array_lengthof(Found) && Found[i]
    [all...]
  /external/freetype/src/sfnt/
ttkern.c 251 goto Found;
272 goto Found;
291 Found:
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
ttkern.c 251 goto Found;
272 goto Found;
291 Found:
  /external/pdfium/third_party/freetype/src/sfnt/
ttkern.c 251 goto Found;
272 goto Found;
291 Found:
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 148 const StaticDiagInfoRec *Found = &StaticDiagInfo[ID + Offset];
149 // If the diag id doesn't match we found a different diag, abort. This can
152 if (Found->DiagID != DiagID)
154 return Found;
514 /// Return \c true if any diagnostics were found in this group, even if they
547 auto Found = std::lower_bound(std::begin(OptionTable), std::end(OptionTable),
552 if (Found == std::end(OptionTable) || Found->getName() != Group)
553 return true; // Option not found.
555 return ::getDiagnosticsInGroup(Flavor, Found, Diags)
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp     [all...]
SemaLookup.cpp 298 // operators can be found.
324 assert(ResultKind != Found || Decls.size() == 1);
344 /// will have the same context if they were found within the same scope.
354 // declaration must have been found there.
583 // But it's still an error if there are distinct tag types found,
615 ResultKind = LookupResult::Found;
812 // given lookup result. Returns true if any matches were found.
814 bool Found = false;
827 Found = true;
831 if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R)
    [all...]
SemaTemplateInstantiateDecl.cpp 459 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
460 if (!Found.empty()) {
461 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
    [all...]
  /external/libxml2/doc/
buildDocBookCatalog 87 found=`find $1 -name docbookx.dtd -exec grep -l "$s" {} \;`
88 for dtd in $found; do
90 echo Found DocBook XML $VERSION DTD in $docbookdir
262 found=`find $top -name iso-amsb.ent`
263 if [ "$found" = "" ] ; then
264 found=`find /usr/share/xml -name iso-amsb.ent`
266 if [ "$found" = "" ] ; then
267 found=`find $HOME -name iso-amsb.ent`
269 if [ "$found" = "" ] ; then
270 found=`find /usr/local -name iso-amsb.ent
    [all...]
  /external/llvm/tools/llvm-readobj/
StreamWriter.h 86 bool Found = false;
90 Found = true;
95 if (Found) {
  /external/llvm/lib/Target/X86/
X86FixupLEAs.cpp 46 /// which writes it in the current basic block. If found,
219 bool Found;
220 Found = getPreviousInstr(CurInst, MFI);
221 while (Found && I != CurInst) {
231 Found = getPreviousInstr(CurInst, MFI);
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 651 unsigned Found = ~0u;
654 Found = r;
658 if (Found == ~0u) {
659 Found = Rows.size();
660 Rows.resize(Found + 1);
664 RowMap.push_back(Found);
713 unsigned Found = ~0u;
720 Found = SIdx;
724 if (Found == ~0u) {
726 Found = SIdx
    [all...]
  /external/avahi/avahi-sharp/
ServiceResolver.cs 72 public event ServiceInfoHandler Found
202 case ResolverEvent.Found:
  /external/clang/lib/Driver/
Job.cpp 56 // Match found.
68 // Match found.
176 auto Found = std::find_if(InputFilenames.begin(), InputFilenames.end(),
178 if (Found != InputFilenames.end() &&
  /system/vold/bench/
benchgen.py 327 print "Found", len(files), "data files accessed, total size", (size/1024), "kB"
333 print "Found syscalls:"
  /external/llvm/lib/CodeGen/
MachineInstr.cpp     [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/
pfrobjs.c 183 /* If no family name was found in the `undocumented' auxiliary
515 FoundPair: /* we found an item, now parse it and find the value if any */
543 goto Found;
566 goto Found;
584 Found:
  /external/curl/tests/
http_pipe.py 35 information can be found here:
39 Source code can be found here:
130 (Boolean) True if a request was found.
159 (Boolean) True if it found the end of the request or a HTTP header.
299 result += self._BuildResponse('404 Not Found', ['Content-Length: 7'], 'Go away')
309 status: (String) Response code and descrtion (e.g. "404 Not Found")
  /external/chromium-trace/catapult/third_party/Paste/paste/
recursive.py 120 start_response("404 Not Found", [('Content-type', 'text/plain')])
121 return [b'Page not found']
133 a ``404 Not found`` status message.
163 start_response("404 Not Found", [('Content-type', 'text/plain')])
164 return [b'Page not found']
167 return StatusKeeper(app, status='404 Not Found', url='/error')
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/
t1parse.c 209 /* found previously */
383 goto Found;
393 /* we haven't found the correct `eexec'; go back and continue */
413 Found:
  /external/pdfium/third_party/freetype/src/type1/
t1parse.c 209 /* found previously */
383 goto Found;
393 /* we haven't found the correct `eexec'; go back and continue */
413 Found:
  /external/clang/lib/Frontend/
FrontendAction.cpp 271 bool Found = false;
280 Found = true;
285 if (!Found) {
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 249 StringRef Found =
251 assert(Found == Path);
252 (void)Found;
  /external/llvm/lib/Analysis/
StratifiedSets.h 615 SmallVector<BuilderLink *, 8> Found;
619 Found.push_back(Current);
638 for (const auto &Ptr : Found)
  /external/llvm/lib/Transforms/Scalar/
PlaceSafepoints.cpp 458 std::vector<CallSite> &Found /*rval*/) {
459 assert(Found.empty() && "must be empty!");
470 Found.push_back(CS);
809 assert(!calls.empty() && "slow path not found for safepoint poll");
    [all...]

Completed in 935 milliseconds

12 3 4 5 6