Searched defs:Build (Results 1 - 25 of 111) sorted by last modified time

12345

/external/vixl/src/a64/
H A Ddebugger-a64.cc242 // and Build. Commands must also define kHelp and kAliases.
273 static DebugCommand* Build(std::vector<Token*> args);
287 static DebugCommand* Build(std::vector<Token*> args);
305 static DebugCommand* Build(std::vector<Token*> args);
317 static DebugCommand* Build(std::vector<Token*> args);
339 static DebugCommand* Build(std::vector<Token*> args);
369 static DebugCommand* Build(std::vector<Token*> args);
1216 return Command::Build(args); \
1259 DebugCommand* HelpCommand::Build(std::vector<Token*> args) { function in class:vixl::HelpCommand
1276 DebugCommand* ContinueCommand::Build(st function in class:vixl::ContinueCommand
1304 DebugCommand* StepCommand::Build(std::vector<Token*> args) { function in class:vixl::StepCommand
1327 DebugCommand* DisasmCommand::Build(std::vector<Token*> args) { function in class:vixl::DisasmCommand
1407 DebugCommand* PrintCommand::Build(std::vector<Token*> args) { function in class:vixl::PrintCommand
1496 DebugCommand* ExamineCommand::Build(std::vector<Token*> args) { function in class:vixl::ExamineCommand
[all...]
/external/skia/src/core/
H A DSkMipMap.cpp123 SkMipMap* SkMipMap::Build(const SkBitmap& src) { function in class:SkMipMap
/external/skia/src/gpu/gl/
H A DGrGLProgramDesc.cpp39 void GrGLProgramDesc::Build(const GrDrawState& drawState, function in class:GrGLProgramDesc
/external/sfntly/cpp/src/sfntly/
H A Dfont.cc254 CALLER_ATTACH Font* Font::Builder::Build() { function in class:sfntly::Font::Builder
378 table.Attach(down_cast<Table*>(builder->second->Build()));
/external/sfntly/cpp/src/sfntly/table/
H A Dfont_data_table.cc80 CALLER_ATTACH FontDataTable* FontDataTable::Builder::Build() { function in class:sfntly::FontDataTable::Builder
H A Dtable_based_table_builder.cc43 CALLER_ATTACH FontDataTable* TableBasedTableBuilder::Build() { function in class:sfntly::TableBasedTableBuilder
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/lldb/scripts/
H A Dbuildbot.py20 return "Build error: %s (referring to %s)" % (self.m_string, self.m_path)
22 return "Build error (referring to %s)" % (self.m_path)
24 return "Build error: %s" % (self.m_string)
25 return "Build error"
44 raise BuildError(string="Build directory exists", path=self.m_build_directory_path)
84 def Build(self): member in class:LLDBBuildBot
131 self.Build()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/include/clang/Frontend/
H A DCompilerInstance.h216 void setBuildGlobalModuleIndex(bool Build) { argument
217 BuildGlobalModuleIndex = Build;
/external/clang/lib/Analysis/
H A DCFGStmtMap.cpp78 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) { function in class:CFGStmtMap
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp70 bool Build(InitListExpr *ILE);
71 void Build(const APValue &Val, const RecordDecl *RD, bool IsPrimaryBase,
349 bool ConstStructBuilder::Build(InitListExpr *ILE) { function in class:__anon17836::ConstStructBuilder
405 void ConstStructBuilder::Build(const APValue &Val, const RecordDecl *RD, function in class:__anon17836::ConstStructBuilder
438 Build(Val.getStructBase(Base.Index), Base.Decl, IsPrimaryBase,
532 if (!Builder.Build(ILE))
546 Builder.Build(Val, RD, false, CD, CharUnits::Zero());
612 // Build a struct with the union sub-element as the first member,
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp1729 // Build a base path if necessary.
1748 // Build up a textual representation of the ambiguous paths, e.g.,
3199 // Build a reference to this field within the parameter.
3805 // Build the list of bases and members in the order that they'll
4817 // Build an exception specification pointing back at this member.
7641 auto Build = [&](bool Invalid) { local
7650 auto BuildInvalid = [&]{ return Build(true); };
7651 auto BuildValid = [&]{ return Build(false); };
7714 // Build it and process it as an inheriting constructor.
8447 // Build a
[all...]
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc400 LPlatformChunk* LChunkBuilder::Build() { function in class:v8::internal::LChunkBuilder
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.cc560 LPlatformChunk* LChunkBuilder::Build() { function in class:v8::internal::LChunkBuilder
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-unittest.cc27 InstructionSelectorTest::Stream InstructionSelectorTest::StreamBuilder::Build( function in class:v8::internal::compiler::InstructionSelectorTest::StreamBuilder
119 Stream s = m.Build(kAllInstructions);
131 Stream s = m.Build(kAllInstructions);
149 Stream s = m.Build(kAllInstructions);
167 Stream s = m.Build(kAllInstructions);
176 Stream s = m.Build(kAllInstructions);
190 Stream s = m.Build(kAllInstructions);
230 Stream s = m.Build(kAllInstructions);
250 Stream s = m.Build(kAllInstructions);
271 Stream s1 = m1.Build(kAllInstruction
[all...]
H A Dinstruction-selector-unittest.h63 Stream Build(CpuFeature feature) { function in class:v8::internal::compiler::InstructionSelectorTest::FINAL
64 return Build(InstructionSelector::Features(feature));
66 Stream Build(CpuFeature feature1, CpuFeature feature2) { function in class:v8::internal::compiler::InstructionSelectorTest::FINAL
67 return Build(InstructionSelector::Features(feature1, feature2));
69 Stream Build(StreamBuilderMode mode = kTargetInstructions) { function in class:v8::internal::compiler::InstructionSelectorTest::FINAL
70 return Build(InstructionSelector::Features(), mode);
72 Stream Build(InstructionSelector::Features features,
80 return builder.Build();
88 return builder.Build();
98 return builder.Build();
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc431 LPlatformChunk* LChunkBuilder::Build() { function in class:v8::internal::LChunkBuilder
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc407 LPlatformChunk* LChunkBuilder::Build() { function in class:v8::internal::LChunkBuilder
/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.cc407 LPlatformChunk* LChunkBuilder::Build() { function in class:v8::internal::LChunkBuilder
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc426 LPlatformChunk* LChunkBuilder::Build() { function in class:v8::internal::LChunkBuilder
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.cc442 LPlatformChunk* LChunkBuilder::Build() { function in class:v8::internal::LChunkBuilder
/external/chromium_org/tools/gyp/test/lib/
H A DTestMac.py50 self._cache['Version'], self._cache['Build'] = self._XcodeVersion()
53 def Build(self): member in class:XcodeInfo
54 if 'Build' not in self._cache:
55 self._cache['Version'], self._cache['Build'] = self._XcodeVersion()
56 return self._cache['Build']
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_packet.cc730 RawPacket RtcpPacket::Build() const { function in class:webrtc::rtcp::RtcpPacket
737 void RtcpPacket::Build(uint8_t* packet, function in class:webrtc::rtcp::RtcpPacket
/external/chromium_org/third_party/skia/src/core/
H A DSkMipMap.cpp123 SkMipMap* SkMipMap::Build(const SkBitmap& src) { function in class:SkMipMap

Completed in 457 milliseconds

12345