HomeSort by relevance Sort by last modified time
    Searched refs:Optional (Results 101 - 125 of 1936) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 14 #include "llvm/ADT/Optional.h"
31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
49 Optional<int64_t> ByteSizeOrValue;
59 Optional<int64_t> getByteSize(const DWARFUnit &U) const;
97 /// \returns Optional index of the attribute if found, None otherwise.
98 Optional<uint32_t> findAttributeIndex(dwarf::Attribute attr) const;
109 /// \returns Optional DWARF form value if the attribute was extracted.
110 Optional<DWARFFormValue> getAttributeValue(const uint32_t DIEOffset,
117 // Return an optional byte size of all attribute data in this abbreviation
120 Optional<size_t> getFixedAttributesByteSize(const DWARFUnit &U) const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 14 #include "llvm/ADT/Optional.h"
31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
49 Optional<int64_t> ByteSizeOrValue;
59 Optional<int64_t> getByteSize(const DWARFUnit &U) const;
97 /// \returns Optional index of the attribute if found, None otherwise.
98 Optional<uint32_t> findAttributeIndex(dwarf::Attribute attr) const;
109 /// \returns Optional DWARF form value if the attribute was extracted.
110 Optional<DWARFFormValue> getAttributeValue(const uint32_t DIEOffset,
117 // Return an optional byte size of all attribute data in this abbreviation
120 Optional<size_t> getFixedAttributesByteSize(const DWARFUnit &U) const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 14 #include "llvm/ADT/Optional.h"
31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
49 Optional<int64_t> ByteSizeOrValue;
59 Optional<int64_t> getByteSize(const DWARFUnit &U) const;
97 /// \returns Optional index of the attribute if found, None otherwise.
98 Optional<uint32_t> findAttributeIndex(dwarf::Attribute attr) const;
109 /// \returns Optional DWARF form value if the attribute was extracted.
110 Optional<DWARFFormValue> getAttributeValue(const uint32_t DIEOffset,
117 // Return an optional byte size of all attribute data in this abbreviation
120 Optional<size_t> getFixedAttributesByteSize(const DWARFUnit &U) const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 14 #include "llvm/ADT/Optional.h"
31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
49 Optional<int64_t> ByteSizeOrValue;
59 Optional<int64_t> getByteSize(const DWARFUnit &U) const;
97 /// \returns Optional index of the attribute if found, None otherwise.
98 Optional<uint32_t> findAttributeIndex(dwarf::Attribute attr) const;
109 /// \returns Optional DWARF form value if the attribute was extracted.
110 Optional<DWARFFormValue> getAttributeValue(const uint32_t DIEOffset,
117 // Return an optional byte size of all attribute data in this abbreviation
120 Optional<size_t> getFixedAttributesByteSize(const DWARFUnit &U) const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 14 #include "llvm/ADT/Optional.h"
31 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<int64_t> V)
49 Optional<int64_t> ByteSizeOrValue;
59 Optional<int64_t> getByteSize(const DWARFUnit &U) const;
97 /// \returns Optional index of the attribute if found, None otherwise.
98 Optional<uint32_t> findAttributeIndex(dwarf::Attribute attr) const;
109 /// \returns Optional DWARF form value if the attribute was extracted.
110 Optional<DWARFFormValue> getAttributeValue(const uint32_t DIEOffset,
117 // Return an optional byte size of all attribute data in this abbreviation
120 Optional<size_t> getFixedAttributesByteSize(const DWARFUnit &U) const
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProvisionBinding.java 21 import com.google.common.base.Optional;
84 Optional.<TypeMirror>absent());
93 Optional<TypeMirror> resolvedType) {
119 Optional<DependencyRequest> membersInjectionRequest =
132 Optional.<DeclaredType>absent(),
133 Optional.<TypeElement>absent(),
143 private Optional<DependencyRequest> membersInjectionRequest(DeclaredType type) {
147 return Optional.of(dependencyRequestFactory.forMembersInjectedType(type));
152 return Optional.of(dependencyRequestFactory.forMembersInjectedType(type));
155 return Optional.absent()
    [all...]
SourceFileGenerationException.java 18 import com.google.common.base.Optional;
40 private final Optional<? extends Element> associatedElement;
43 Optional<? extends Element> associatedElement) {
50 this(generatedClassNames, cause, Optional.<Element>absent());
55 this(generatedClassNames, cause, Optional.of(associatedElement));
62 public Optional<? extends Element> associatedElement() {
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
FieldWriter.java 19 import com.google.common.base.Optional;
27 private Optional<Snippet> initializer;
31 this.initializer = Optional.absent();
35 this.initializer = Optional.of(initializer);
39 this.initializer = Optional.of(Snippet.format(initializer, args));
  /external/webrtc/webrtc/base/
optional_unittest.cc 17 #include "webrtc/base/optional.h"
124 Optional<Logger> x;
133 Optional<Logger> x;
147 Optional<Logger> x(a);
163 Optional<Logger> x;
176 Optional<Logger> x(Logger(17));
194 Optional<Logger> x, y;
206 Optional<Logger> x(Logger(17));
207 Optional<Logger> y;
223 Optional<Logger> x
    [all...]
  /external/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /external/llvm/unittests/Support/
ProcessTest.cpp 36 Optional<std::string> val(Process::GetEnv("__LLVM_TEST_ENVIRON_VAR__"));
42 Optional<std::string> val(
51 Optional<std::string> val(Process::GetEnv("__LLVM_TEST_ENVIRON_VAR__"));
  /external/webrtc/webrtc/modules/audio_coding/acm2/
rent_a_codec.h 19 #include "webrtc/base/optional.h"
149 static inline rtc::Optional<int> CodecIndexFromId(CodecId codec_id) {
152 ? rtc::Optional<int>(i)
153 : rtc::Optional<int>();
156 static inline rtc::Optional<CodecId> CodecIdFromIndex(int codec_index) {
158 ? rtc::Optional<RentACodec::CodecId>(
160 : rtc::Optional<RentACodec::CodecId>();
163 static rtc::Optional<CodecId> CodecIdByParams(const char* payload_name,
166 static rtc::Optional<CodecInst> CodecInstById(CodecId codec_id);
167 static rtc::Optional<CodecId> CodecIdByInst(const CodecInst& codec_inst)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
array_util.cc 59 rtc::Optional<Point> GetDirectionIfLinear(
68 return rtc::Optional<Point>();
71 return rtc::Optional<Point>(first_pair_direction);
74 rtc::Optional<Point> GetNormalIfPlanar(
89 return rtc::Optional<Point>();
96 return rtc::Optional<Point>();
99 return rtc::Optional<Point>(normal_direction);
102 rtc::Optional<Point> GetArrayNormalIfExists(
104 const rtc::Optional<Point> direction = GetDirectionIfLinear(array_geometry);
106 return rtc::Optional<Point>(Point(direction->y(), -direction->x(), 0.f))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LockFileManager.h 12 #include "llvm/ADT/Optional.h"
58 Optional<std::pair<std::string, int> > Owner;
59 Optional<std::error_code> Error;
65 static Optional<std::pair<std::string, int> >
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
BinaryTreeTraverser.java 21 import com.google.common.base.Optional;
36 * Returns the left child of the specified node, or {@link Optional#absent()} if the specified
39 public abstract Optional<T> leftChild(T root);
42 * Returns the right child of the specified node, or {@link Optional#absent()} if the specified
45 public abstract Optional<T> rightChild(T root);
64 Optional<T> left = leftChild(root);
71 Optional<T> right = rightChild(root);
129 private void pushIfPresent(Optional<T> node) {
  /external/testng/src/test/java/test/issue107/
TestTestngCounter.java 5 import org.testng.annotations.Optional;
23 public void testParameterAsOptional(@Optional("Unknown") String key) {
  /external/testng/src/test/java/test/parameters/
InheritFromSuiteChild1.java 4 import org.testng.annotations.Optional;
18 public void inheritedparameter(String p1, String p2, @Optional("foobar")String p3, String p4) {
InheritFromSuiteChild2.java 4 import org.testng.annotations.Optional;
18 public void inheritedparameter(String p1, String p2, String p3, @Optional("abc")String p4) {

Completed in 562 milliseconds

1 2 3 45 6 7 8 91011>>