HomeSort by relevance Sort by last modified time
    Searched defs:Optional (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/ADT/
Optional.h 1 //===-- Optional.h - Simple variant for passing optional values ---*- C++ -*-=//
10 // This file provides Optional, a template class modeled in the spirit of
12 // a value can be optional.
24 class Optional {
28 explicit Optional() : x(), hasVal(false) {}
29 Optional(const T &y) : x(y), hasVal(true) {}
31 static inline Optional create(const T* y) {
32 return y ? Optional(*y) : Optional();
    [all...]
  /external/chromium/third_party/libevent/
event_rpcgen.py 195 # Optional entries do not have to be set
196 if entry.Optional():
202 if entry.Optional():
332 def Optional(self):
403 if self.Optional():
439 'optional and array around line %d' ) % (
692 if self.Optional():
959 if self.Optional():
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 339 /// \brief A code completion string that is entirely optional. For example,
340 /// an optional code completion string that describes the default arguments
401 /// The optional code completion string is owned by the chunk, and will
403 CodeCompletionString *Optional;
413 /// \brief Create a new optional chunk.
414 static Chunk CreateOptional(CodeCompletionString *Optional);
558 /// \brief Add a new optional chunk.
559 void AddOptionalChunk(CodeCompletionString *Optional) {
560 Chunks.push_back(Chunk::CreateOptional(Optional));
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 178 class Optional {
182 Optional() : IsKnown(false), Val(0) {}
183 Optional(const T& val) : IsKnown(true), Val(val) {}
198 static Optional<uint64_t> GetCFNumberSize(ASTContext &Ctx, uint64_t i) {
219 return Optional<uint64_t>();
277 Optional<uint64_t> TargetSize = GetCFNumberSize(Ctx, NumberKind);
589 llvm::Optional<ExplodedNode*> errorNode;
  /external/llvm/include/llvm/Support/
CommandLine.h 86 Optional = 0x01, // Zero or One occurrence
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 114 enum ImplementationControl { None, Required, Optional };
138 /// @required/@optional
    [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 387 milliseconds