Searched refs:Flags (Results 251 - 275 of 4190) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/native_client_sdk/src/tools/
H A Dnacl_llvm.mk24 # $2 = Compile Flags
43 # $2 = POSIX Compile Flags
45 # $4 = VC Flags (unused)
72 # $3 = POSIX Link Flags
73 # $4 = VC Link Flags (unused)
H A Dhost_vc.mk42 # $2 = Compile Flags
56 # $2 = POSIX Compile Flags (unused)
57 # $3 = VC Compile Flags
/external/eigen/Eigen/src/Core/
H A DCwiseBinaryOp.h70 LhsFlags = _LhsNested::Flags,
71 RhsFlags = _RhsNested::Flags,
73 StorageOrdersAgree = (int(Lhs::Flags)&RowMajorBit)==(int(Rhs::Flags)&RowMajorBit),
83 Flags = (Flags0 & ~RowMajorBit) | (LhsFlags & RowMajorBit), enumerator in enum:Eigen::internal::traits::__anon20519
H A DSolveTriangular.h72 (int(Lhs::Flags) & RowMajorBit) ? RowMajor : ColMajor>
96 typedef internal::gemm_blocking_space<(Rhs::Flags&RowMajorBit) ? RowMajor : ColMajor,Scalar,Scalar,
101 triangular_solve_matrix<Scalar,Index,Side,Mode,LhsProductTraits::NeedToConjugate,(int(Lhs::Flags) & RowMajorBit) ? RowMajor : ColMajor,
102 (Rhs::Flags&RowMajorBit) ? RowMajor : ColMajor>
180 enum { copy = internal::traits<OtherDerived>::Flags & RowMajorBit && OtherDerived::IsVectorAtCompileTime };
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h269 /// Flags that modify the behavior of advance().
283 BitstreamEntry advance(unsigned Flags = 0) {
287 // Pop the end of the block unless Flags tells us not to.
288 if (!(Flags & AF_DontPopBlockAtEnd) && ReadBlockEnd())
297 !(Flags & AF_DontAutoprocessAbbrevs)) {
310 BitstreamEntry advanceSkippingSubblocks(unsigned Flags = 0) {
313 BitstreamEntry Entry = advance(Flags);
/external/eigen/Eigen/src/SuperLUSupport/
H A DSuperLUSupport.h153 eigen_assert( ((MatrixType::Flags&RowMajorBit)!=RowMajorBit) && "row-major dense matrices are not supported by SuperLU");
171 if ((MatrixType::Flags&RowMajorBit)==RowMajorBit)
194 if (MatrixType::Flags & Upper)
196 if (MatrixType::Flags & Lower)
199 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
230 if ((MatrixType::Flags&RowMajorBit)==RowMajorBit)
253 if (MatrixType::Flags & Upper)
255 if (MatrixType::Flags & Lower)
258 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
271 template<typename Scalar, int Flags, typenam
[all...]
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp66 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
129 uint32_t Flags = 0; local
132 Flags |= MachO::MH_SUBSECTIONS_VIA_SYMBOLS;
148 Write32(Flags);
232 unsigned Flags = Section.getTypeAndAttributes(); local
234 Flags |= MachO::S_ATTR_SOME_INSTRUCTIONS;
240 Write32(Flags);
330 uint16_t Flags = Data.getFlags(); local
382 Flags = (Flags
1009 uint32_t Flags = MachO::INDIRECT_SYMBOL_LOCAL; local
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc5387 // The Flags struct stores a copy of all Google Test flags.
5388 struct Flags { struct in namespace:testing
5389 // Constructs a Flags struct where each flag has its default value.
5390 Flags() : also_run_disabled_tests(false), function in struct:testing::Flags
5407 // Creates a Flags struct where the gtest_also_run_disabled_tests flag has
5409 static Flags AlsoRunDisabledTests(bool also_run_disabled_tests) {
5410 Flags flags;
5415 // Creates a Flags struct where the gtest_break_on_failure flag has
5417 static Flags BreakOnFailure(bool break_on_failure) {
5418 Flags flag
[all...]
/external/gtest/test/
H A Dgtest_unittest.cc5278 // The Flags struct stores a copy of all Google Test flags.
5279 struct Flags { struct in namespace:testing
5280 // Constructs a Flags struct where each flag has its default value.
5281 Flags() : also_run_disabled_tests(false), function in struct:testing::Flags
5298 // Creates a Flags struct where the gtest_also_run_disabled_tests flag has
5300 static Flags AlsoRunDisabledTests(bool also_run_disabled_tests) {
5301 Flags flags;
5306 // Creates a Flags struct where the gtest_break_on_failure flag has
5308 static Flags BreakOnFailure(bool break_on_failure) {
5309 Flags flag
[all...]
/external/openfst/src/include/fst/
H A Dmatcher.h97 // Flags used for basic matchers (see also lookahead.h).
122 virtual uint32 Flags() const { return 0; } function in class:fst::MatcherBase
498 virtual uint32 Flags() const { function in class:fst::RhoMatcher
500 return matcher_->Flags();
501 return matcher_->Flags() | kRequireMatch;
683 virtual uint32 Flags() const { function in class:fst::SigmaMatcher
685 return matcher_->Flags();
688 // return matcher_->Flags() | kRequireMatch;
689 return matcher_->Flags();
854 virtual uint32 Flags() cons function in class:fst::PhiMatcher
1074 uint32 Flags() const { return matcher_->Flags(); } function in class:fst::MultiEpsMatcher
1193 uint32 Flags() const { return base_->Flags() & kMatcherFlags; } function in class:fst::Matcher
[all...]
/external/webrtc/src/modules/audio_processing/
H A DAndroid.mk33 # Flags passed to both C and C++ files.
84 # Flags passed to both C and C++ files.
137 # Flags passed to both C and C++ files.
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc5204 // The Flags struct stores a copy of all Google Test flags.
5205 struct Flags { struct in namespace:testing
5206 // Constructs a Flags struct where each flag has its default value.
5207 Flags() : also_run_disabled_tests(false), function in struct:testing::Flags
5222 // Creates a Flags struct where the gtest_also_run_disabled_tests flag has
5224 static Flags AlsoRunDisabledTests(bool also_run_disabled_tests) {
5225 Flags flags;
5230 // Creates a Flags struct where the gtest_break_on_failure flag has
5232 static Flags BreakOnFailure(bool break_on_failure) {
5233 Flags flag
[all...]
/external/chromium_org/android_webview/native/
H A Dcancellation_signal_android_jar_jni_headers.target.darwin-arm64.mk43 # Flags passed to both C and C++ files.
120 # Flags passed to only C++ (and not C) files.
134 # Flags passed to both C and C++ files.
211 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.darwin-mips.mk43 # Flags passed to both C and C++ files.
123 # Flags passed to only C++ (and not C) files.
138 # Flags passed to both C and C++ files.
218 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.darwin-mips64.mk43 # Flags passed to both C and C++ files.
123 # Flags passed to only C++ (and not C) files.
138 # Flags passed to both C and C++ files.
218 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.darwin-x86.mk43 # Flags passed to both C and C++ files.
126 # Flags passed to only C++ (and not C) files.
140 # Flags passed to both C and C++ files.
223 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.darwin-x86_64.mk43 # Flags passed to both C and C++ files.
125 # Flags passed to only C++ (and not C) files.
139 # Flags passed to both C and C++ files.
221 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.linux-arm64.mk43 # Flags passed to both C and C++ files.
120 # Flags passed to only C++ (and not C) files.
134 # Flags passed to both C and C++ files.
211 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.linux-mips.mk43 # Flags passed to both C and C++ files.
123 # Flags passed to only C++ (and not C) files.
138 # Flags passed to both C and C++ files.
218 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.linux-mips64.mk43 # Flags passed to both C and C++ files.
123 # Flags passed to only C++ (and not C) files.
138 # Flags passed to both C and C++ files.
218 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.linux-x86.mk43 # Flags passed to both C and C++ files.
126 # Flags passed to only C++ (and not C) files.
140 # Flags passed to both C and C++ files.
223 # Flags passed to only C++ (and not C) files.
H A Dcancellation_signal_android_jar_jni_headers.target.linux-x86_64.mk43 # Flags passed to both C and C++ files.
125 # Flags passed to only C++ (and not C) files.
139 # Flags passed to both C and C++ files.
221 # Flags passed to only C++ (and not C) files.
/external/chromium_org/base/allocator/
H A Dallocator_extension_thunks.target.darwin-arm.mk29 # Flags passed to both C and C++ files.
119 # Flags passed to only C++ (and not C) files.
135 # Flags passed to both C and C++ files.
224 # Flags passed to only C++ (and not C) files.
H A Dallocator_extension_thunks.target.darwin-arm64.mk29 # Flags passed to both C and C++ files.
108 # Flags passed to only C++ (and not C) files.
123 # Flags passed to both C and C++ files.
201 # Flags passed to only C++ (and not C) files.
H A Dallocator_extension_thunks.target.darwin-mips.mk29 # Flags passed to both C and C++ files.
112 # Flags passed to only C++ (and not C) files.
128 # Flags passed to both C and C++ files.
210 # Flags passed to only C++ (and not C) files.

Completed in 9542 milliseconds

<<11121314151617181920>>