HomeSort by relevance Sort by last modified time
    Searched defs:Unknown (Results 26 - 49 of 49) sorted by null

12

  /external/clang/lib/StaticAnalyzer/Checkers/
IteratorsChecker.cpp 40 enum Kind { BeginValid, EndValid, Invalid, Undefined, Unknown } K;
49 bool isUnknown() const { return K == Unknown; }
80 return RefState(Unknown, 0);
276 // Assume unknown until we find something definite.
301 // a valid iterator and mark it if so, else mark as Unknown.
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 92 /// Unknown - This marker indicates that the query dependency
93 /// is unknown.
94 Unknown = 0xc
123 PairTy(reinterpret_cast<Instruction*>(Unknown), Other));
153 && Value.getPointer() == reinterpret_cast<Instruction*>(Unknown);
283 /// pointer. May be UnknownSize if the sizes are unknown.
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 148 typedef enum { Unknown, Prologue, Call } ParmContext;
  /external/v8/src/mips/
disasm-mips.cc 125 void Unknown(Instruction* instr);
455 // For currently unimplemented decodings the disassembler calls Unknown(instr)
456 // which will just print "unknown" of the instruction bits.
457 void Decoder::Unknown(Instruction* instr) {
458 Format(instr, "unknown");
521 Unknown(instr);
532 Unknown(instr);
573 Format(instr, "unknown.cop1.d");
598 Unknown(instr);
606 Unknown(instr)
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 83 enum Value { Unknown = 0x0, /* 00 */
  /external/llvm/lib/VMCore/
ConstantFold.cpp     [all...]
  /external/v8/src/arm/
disasm-arm.cc 118 void Unknown(Instruction* instr);
669 Unknown(instr); \
674 // For currently unimplemented decodings the disassembler calls Unknown(instr)
675 // which will just print "unknown" of the instruction bits.
676 void Decoder::Unknown(Instruction* instr) {
677 Format(instr, "unknown");
711 Unknown(instr); // not used by V8
810 Unknown(instr); // not used by V8
819 Unknown(instr); // not used by V8
823 Unknown(instr); // not used by V
    [all...]
  /external/v8/src/
dateparser.h 230 static DateToken Unknown() {
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.h 215 enum DisplayMode { Unknown, None, Poster, PosterWaitingForVideo, Video };
  /external/webkit/Source/WebCore/loader/cache/
CachedResource.h 73 Unknown, // let cache decide what to do with it
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.h 253 enum MovieLoadType { Unknown, Download, StoredStream, LiveStream };
  /external/clang/lib/AST/
DumpXML.cpp 166 llvm_unreachable("unknown type kind!");
647 bool Unknown = false;
649 case TSK_ImplicitInstantiation: Unknown = false; break;
650 case TSK_Undeclared: Unknown = true; break;
659 Unknown ? "uninstantiated" : "instantiation");
675 bool Unknown = false;
677 case TSK_ImplicitInstantiation: Unknown = false; break;
678 case TSK_Undeclared: Unknown = true; break;
687 Unknown ? "uninstantiated" : "instantiation");
  /external/valgrind/main/exp-dhat/
dh_main.c 206 Unknown because no retirement yet
210 enum { Unknown=999, Exactly, Mixed } xsize_tag;
247 api->xsize_tag = Unknown;
249 if (0) VG_(printf)("api %p --> Unknown\n", api);
337 case Unknown:
780 # error "Unknown endianness"
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
LockPatternKeyguardView.java 169 * Unknown (uninitialized) value
171 Unknown
183 private UnlockMode mUnlockScreenMode = UnlockMode.Unknown;
206 // If we were previously in a locked state but now it's Unknown, it means the phone
210 if (mode == Mode.UnlockScreen && getUnlockMode() == UnlockMode.Unknown) {
825 case Unknown:
829 throw new IllegalStateException("unknown unlock mode " + unlockMode);
850 if (mode == Mode.UnlockScreen && unlockMode != UnlockMode.Unknown) {
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 582 static const TargetCXXABI Unknown = static_cast<TargetCXXABI>(-1);
587 .Default(Unknown);
588 if (ABI == Unknown) return false;
  /external/clang/lib/Parse/
ParseDecl.cpp 553 enum { Introduced, Deprecated, Obsoleted, Unknown };
554 AvailabilityChange Changes[Unknown];
645 Index = Unknown;
647 if (Index < Unknown) {
680 for (unsigned Index = Introduced; Index != Unknown; ++Index) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 239 Unknown,
268 : AllocaSize(Size), TD(td), IsNotTrivial(false), ScalarKind(Unknown),
296 // If an alloca has only memset / memcpy uses, it may still have an Unknown
298 if (ScalarKind == Unknown)
    [all...]
  /external/tinyxml/
tinyxml.h 140 Unknown (leaf)
147 Unknown (leaf)
422 unsupported types are picked up by UNKNOWN.)
429 UNKNOWN,
443 Unknown: the tag contents
464 Unknown: the tag contents
623 UNKNOWN, TEXT, and DECLARATION.
639 const TiXmlUnknown* ToUnknown() const { return ( this && type == UNKNOWN ) ? (const TiXmlUnknown*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
646 TiXmlUnknown* ToUnknown() { return ( this && type == UNKNOWN ) ? (TiXmlUnknown*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
    [all...]
  /external/valgrind/main/memcheck/
mc_errors.c 130 struct { } Unknown;
803 VG_(printf)("Error:\n unknown Memcheck error code %d\n",
805 VG_(tool_panic)("unknown error code in mc_pp_Error)");
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 55 Unknown = 0, // Not binary operator.
497 tok::TokenKind SkipToTok = tok::unknown);
637 tok::TokenKind SkipToTok = tok::unknown);
    [all...]
  /external/valgrind/main/exp-sgcheck/
sg_main.c 807 Inv_Unknown, /* unknown location */
821 } Unknown;
850 VG_(printf)("Unknown");
894 known. If unknown, generate an empty string. 'buf' must be at
911 return; /* unknown */
952 VG_(sprintf)(buf, "%s", "unknown");
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 

Completed in 2887 milliseconds

12