HomeSort by relevance Sort by last modified time
    Searched refs:Unit (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/clang/test/CodeGenCXX/
array-value-initialize.cpp 32 struct Unit
34 Unit() {}
35 Unit(const Unit& v) {}
41 Unit leafPos[1];
  /external/clang/lib/Frontend/
ASTMerge.cpp 46 ASTUnit *Unit = ASTUnit::LoadFromASTFile(ASTFiles[I], Diags,
48 if (!Unit)
53 Unit->getASTContext(),
54 Unit->getFileManager(),
57 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
70 delete Unit;
ASTUnit.cpp 814 /// of all macros that have been defined by the translation unit.
850 ASTUnit &Unit;
855 : Unit(_Unit), Hash(Hash) {
871 Unit.addTopLevelDecl(D);
877 Unit.addFileLevelDecl(D);
902 ASTUnit &Unit;
907 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
908 return new TopLevelDeclTrackerConsumer(Unit,
909 Unit.getCurrentTopLevelHashValue());
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 240 /// getOrCreateMainFile - Get the file info for main compile unit.
278 /// CreateCompileUnit - Create new compile unit.
325 // Create new compile unit.
446 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
469 return getOrCreateType(QualType(T, 0), Unit);
472 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
482 llvm::DIFile Unit) {
485 Ty->getPointeeType(), Unit);
490 llvm::DIFile Unit) {
492 Ty->getPointeeType(), Unit);
    [all...]
CGDebugInfo.h 100 llvm::DIType CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit);
139 llvm::DIFile Unit);
141 CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit);
258 /// CreateCompileUnit - Create new compile unit.
265 /// getOrCreateMainFile - Get the file info for main compile unit.
284 llvm::DIType CreateMemberType(llvm::DIFile Unit, QualType FType,
  /external/clang/tools/libclang/
Indexing.cpp 355 ASTUnit *Unit = ASTUnit::create(CInvok.getPtr(), Diags,
357 OwningPtr<CXTUOwner> CXTU(new CXTUOwner(MakeCXTranslationUnit(CXXIdx, Unit)));
394 Unit,
402 printDiagsToStderr(Unit);
431 static void indexPreprocessingRecord(ASTUnit &Unit, IndexingContext &IdxCtx) {
432 Preprocessor &PP = Unit.getPreprocessor();
442 bool OnlyLocal = !Unit.isMainFileAST() && Unit.getOnlyLocalDecls();
463 static void indexTranslationUnit(ASTUnit &Unit, IndexingContext &IdxCtx) {
467 bool OnlyLocal = !Unit.isMainFileAST() && Unit.getOnlyLocalDecls()
    [all...]
CIndexHigh.cpp 215 ASTUnit *Unit = static_cast<ASTUnit*>(TU->TUData);
216 SourceManager &SM = Unit->getSourceManager();
246 ASTUnit &Unit;
251 FindFileMacroRefVisitData(ASTUnit &Unit, const FileEntry *File,
254 : Unit(Unit), File(File), Macro(Macro), visitor(visitor) { }
257 return Unit.getASTContext();
313 ASTUnit *Unit = static_cast<ASTUnit*>(TU->TUData);
314 SourceManager &SM = Unit->getSourceManager();
325 FindFileMacroRefVisitData data(*Unit, File, Macro, Visitor)
    [all...]
CIndexDiagnostic.cpp 201 unsigned clang_getNumDiagnostics(CXTranslationUnit Unit) {
202 if (!Unit->TUData)
204 return lazyCreateDiags(Unit, /*checkIfChanged=*/true)->getNumDiagnostics();
207 CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit, unsigned Index) {
208 CXDiagnosticSet D = clang_getDiagnosticSetFromTU(Unit);
219 CXDiagnosticSet clang_getDiagnosticSetFromTU(CXTranslationUnit Unit) {
220 if (!Unit->TUData)
222 return static_cast<CXDiagnostic>(lazyCreateDiags(Unit));
CIndexer.h 100 void printDiagsToStderr(ASTUnit *Unit);
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 5 require 'test/unit'
10 class TestTokenSource < Test::Unit::TestCase
37 class TestLexer < Test::Unit::TestCase
test-dfa.rb 5 require 'test/unit'
21 class TestDFA < Test::Unit::TestCase
test-scope.rb 5 require 'test/unit'
8 class TestDFA < Test::Unit::TestCase
test-streams.rb 5 require 'test/unit'
11 class TestStringStream < Test::Unit::TestCase
201 class TestFileStream < Test::Unit::TestCase
232 class TestInputStream < Test::Unit::TestCase
242 class TestCommonTokenStream < Test::Unit::TestCase
  /external/icu4c/i18n/
decNumber.c 167 /* lsu -- least significant Unit (of coefficient) */
170 /* msu -- most significant Unit (of coefficient) */
212 static Unit uarrone[1]={1}; /* Unit array of 1, used for incrementing */
222 /* QUOT10 -- macro to return the quotient of unit u divided by 10**n */
251 static Int decGetDigits(Unit *, Int);
263 static void decReverse(Unit *, Unit *);
264 static void decSetCoeff(decNumber *, decContext *, const Unit *,
269 static Int decShiftToLeast(Unit *, Int, Int)
    [all...]
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 255 OwningPtr<ASTUnit> Unit(
257 if (!Unit)
263 ASTContext &Ctx = Unit->getASTContext();
267 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
275 Unit->getPreprocessor());
290 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
296 TransformActions testAct(*Diags, capturedDiags, Ctx, Unit->getPreprocessor());
297 MigrationPass pass(Ctx, OrigGCMode, Unit->getSema(), testAct, ARCMTMacroLocs);
562 OwningPtr<ASTUnit> Unit(
565 if (!Unit)
    [all...]
  /external/llvm/lib/Analysis/
DbgInfoPrinter.cpp 122 DICompileUnit Unit;
134 Unit = Var.getCompileUnit();
145 Unit = Var.getCompileUnit();
156 Unit = Var.getCompileUnit();
163 StringRef F = Unit.getFilename();
166 StringRef D = Unit.getDirectory();
  /external/llvm/test/
Makefile 67 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/test lit.site.cfg Unit/lit.site.cfg
107 check-local-lit:: lit.site.cfg Unit/lit.site.cfg
111 check-local-all:: lit.site.cfg Unit/lit.site.cfg extra-lit-site-cfgs
177 Unit/lit.site.cfg: $(PROJ_OBJ_DIR)/Unit/.dir FORCE
179 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > unit.tmp
180 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> unit.tmp
181 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp
182 @$(ECHOPATH) s=@LLVMGCCDIR@=$(LLVMGCCDIR)=g >> unit.tmp
183 @$(ECHOPATH) s=@LLVM_BUILD_MODE@=$(BuildMode)=g >> unit.tm
    [all...]
  /external/clang/test/
Makefile 32 all:: lit.site.cfg Unit/lit.site.cfg
51 Unit/lit.site.cfg: FORCE
52 @echo "Making Clang 'Unit/lit.site.cfg' file..."
54 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > unit.tmp
55 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> unit.tmp
56 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp
57 @$(ECHOPATH) s=@LLVM_LIBS_DIR@=$(LibDir)=g >> unit.tmp
58 @$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> unit.tmp
59 @$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> unit.tmp
60 @$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> unit.tm
    [all...]
  /external/llvm/unittests/
Makefile.unittest 10 # This file is included by all of the unit test makefiles.
14 # Set up variables for building a unit test.
51 $(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg)
54 $(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 
  /external/libvpx/examples/includes/geshi/geshi/
ruby.php 106 'Test::Unit::TestCase', 'Test::Unit', 'Test', 'Thread',
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 15 Unit: {},
312 DrNicTest.Unit.Logger = function(element) {
317 DrNicTest.Unit.Logger.prototype.start = function(testName) {
323 DrNicTest.Unit.Logger.prototype.setStatus = function(status) {
330 DrNicTest.Unit.Logger.prototype.finish = function(status, summary) {
336 DrNicTest.Unit.Logger.prototype.message = function(message) {
342 DrNicTest.Unit.Logger.prototype.summary = function(summary) {
348 DrNicTest.Unit.Logger.prototype.getLastLogLine = function() {
354 DrNicTest.Unit.Logger.prototype.getMessageCell = function() {
359 DrNicTest.Unit.Logger.prototype._createLogTable = function()
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 9 require 'test/unit'
154 class Functional < ::Test::Unit::TestCase
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 32 """Unit test for the gtest_xml_output module"""
118 Unit test for Google Test's XML output functionality.
  /external/openssl/apps/
openssl.cnf 145 organizationalUnitName = Organizational Unit Name (eg, section)

Completed in 387 milliseconds

1 2 3