Home
last modified time | relevance | path

Searched refs:Code (Results 1 – 25 of 452) sorted by relevance

12345678910>>...19

/freebsd-10-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
DParser.cpp59 : Code(MatcherCode), StartOfLine(MatcherCode), Line(1), Error(Error) { in CodeTokenizer()
81 if (Code.empty()) { in getNextToken()
87 switch (Code[0]) { in getNextToken()
90 Result.Text = Code.substr(0, 1); in getNextToken()
91 Code = Code.drop_front(); in getNextToken()
95 Result.Text = Code.substr(0, 1); in getNextToken()
96 Code = Code.drop_front(); in getNextToken()
100 Result.Text = Code.substr(0, 1); in getNextToken()
101 Code = Code.drop_front(); in getNextToken()
105 Result.Text = Code.substr(0, 1); in getNextToken()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTWriterStmt.cpp37 serialization::StmtCode Code; member in clang::ASTStmtWriter
68 Code = serialization::STMT_NULL; in VisitNullStmt()
79 Code = serialization::STMT_COMPOUND; in VisitCompoundStmt()
95 Code = serialization::STMT_CASE; in VisitCaseStmt()
101 Code = serialization::STMT_DEFAULT; in VisitDefaultStmt()
109 Code = serialization::STMT_LABEL; in VisitLabelStmt()
118 Code = serialization::STMT_ATTRIBUTED; in VisitAttributedStmt()
129 Code = serialization::STMT_IF; in VisitIfStmt()
142 Code = serialization::STMT_SWITCH; in VisitSwitchStmt()
151 Code = serialization::STMT_WHILE; in VisitWhileStmt()
[all …]
DASTWriterDecl.cpp42 serialization::DeclCode Code; member in clang::ASTDeclWriter
211 Code = serialization::DECL_TYPEDEF; in VisitTypedefDecl()
216 Code = serialization::DECL_TYPEALIAS; in VisitTypeAliasDecl()
273 Code = serialization::DECL_ENUM; in VisitEnumDecl()
297 Code = serialization::DECL_RECORD; in VisitRecordDecl()
312 Code = serialization::DECL_ENUM_CONSTANT; in VisitEnumConstantDecl()
420 Code = serialization::DECL_FUNCTION; in VisitFunctionDecl()
469 Code = serialization::DECL_OBJC_METHOD; in VisitObjCMethodDecl()
523 Code = serialization::DECL_OBJC_INTERFACE; in VisitObjCInterfaceDecl()
544 Code = serialization::DECL_OBJC_IVAR; in VisitObjCIvarDecl()
[all …]
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
DISDOpcodes.h752 inline bool isSignedIntSetCC(CondCode Code) { in isSignedIntSetCC() argument
753 return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE; in isSignedIntSetCC()
758 inline bool isUnsignedIntSetCC(CondCode Code) { in isUnsignedIntSetCC() argument
759 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE; in isUnsignedIntSetCC()
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp147 static void WriteStringRecord(unsigned Code, StringRef Str, in WriteStringRecord() argument
159 Stream.EmitRecord(Code, Vals, AbbrevToUse); in WriteStringRecord()
382 unsigned Code = 0; in WriteTypeTable() local
386 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break; in WriteTypeTable()
387 case Type::HalfTyID: Code = bitc::TYPE_CODE_HALF; break; in WriteTypeTable()
388 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break; in WriteTypeTable()
389 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break; in WriteTypeTable()
390 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break; in WriteTypeTable()
391 case Type::FP128TyID: Code = bitc::TYPE_CODE_FP128; break; in WriteTypeTable()
392 case Type::PPC_FP128TyID: Code = bitc::TYPE_CODE_PPC_FP128; break; in WriteTypeTable()
[all …]
/freebsd-10-stable/contrib/byacc/test/
Dbtyacc_demo.y16 typedef int Code; typedef
43 Code *code;
209 extern void finish_fn_def(Decl *fn_decl, Code *block);
224 extern Code * build_expr_code(Expr *expr);
225 extern Code * build_if(Expr *cond_expr, Code *then_stmt, Code *else_stmt);
226 extern Code * code_append(Code *stmt_list, Code *stmt);
/freebsd-10-stable/contrib/llvm/lib/TableGen/
DStringMatcher.cpp55 StringRef Code = Matches[0]->second; in EmitStringMatcherForChar() local
57 std::pair<StringRef, StringRef> Split = Code.split('\n'); in EmitStringMatcherForChar()
60 Code = Split.second; in EmitStringMatcherForChar()
61 while (!Code.empty()) { in EmitStringMatcherForChar()
62 Split = Code.split('\n'); in EmitStringMatcherForChar()
64 Code = Split.second; in EmitStringMatcherForChar()
DTGParser.cpp681 case tgtok::Code: Lex.Lex(); return StringRecTy::get(); in ParseType()
809 UnOpInit::UnaryOp Code; in ParseOperation() local
816 Code = UnOpInit::CAST; in ParseOperation()
828 Code = UnOpInit::HEAD; in ParseOperation()
832 Code = UnOpInit::TAIL; in ParseOperation()
836 Code = UnOpInit::EMPTY; in ParseOperation()
849 if (Code == UnOpInit::HEAD in ParseOperation()
850 || Code == UnOpInit::TAIL in ParseOperation()
851 || Code == UnOpInit::EMPTY) { in ParseOperation()
868 if (Code == UnOpInit::HEAD in ParseOperation()
[all …]
/freebsd-10-stable/contrib/llvm/lib/MC/
DMCPureStreamer.cpp200 SmallString<256> Code; in EmitInstToFragment() local
201 raw_svector_ostream VecOS(Code); in EmitInstToFragment()
205 IF->getContents() = Code; in EmitInstToFragment()
213 SmallString<256> Code; in EmitInstToData() local
214 raw_svector_ostream VecOS(Code); in EmitInstToData()
223 DF->getContents().append(Code.begin(), Code.end()); in EmitInstToData()
DMCAsmStreamer.cpp246 virtual void EmitWin64EHPushFrame(bool Code);
1207 void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) { in EmitWin64EHPushFrame() argument
1208 MCStreamer::EmitWin64EHPushFrame(Code); in EmitWin64EHPushFrame()
1211 if (Code) in EmitWin64EHPushFrame()
1225 SmallString<256> Code; in AddEncodingComment() local
1227 raw_svector_ostream VecOS(Code); in AddEncodingComment()
1235 FixupMap.resize(Code.size() * 8); in AddEncodingComment()
1236 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i) in AddEncodingComment()
1244 assert(Index < Code.size() * 8 && "Invalid offset in fixup!"); in AddEncodingComment()
1252 for (unsigned i = 0, e = Code.size(); i != e; ++i) { in AddEncodingComment()
[all …]
/freebsd-10-stable/sys/contrib/dev/acpica/
Dchanges.txt22 Example Code and Data Size: These are the sizes for the OS-independent
28 Non-Debug Version: 136.8K Code, 51.6K Data, 188.4K Total
29 Debug Version: 201.5K Code, 82.2K Data, 283.7K Total
31 Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
32 Debug Version: 200.9K Code, 82.2K Data, 283.1K Total
60 Example Code and Data Size: These are the sizes for the OS-independent
66 Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
67 Debug Version: 201.5K Code, 82.2K Data, 283.7K Total
69 Non-Debug Version: 137.1K Code, 51.5K Data, 188.6K Total
70 Debug Version: 201.0K Code, 82.0K Data, 283.0K Total
[all …]
/freebsd-10-stable/contrib/llvm/tools/llvm-bcanalyzer/
Dllvm-bcanalyzer.cpp419 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob); in ParseBlock() local
422 if (BlockStats.CodeFreq.size() <= Code) in ParseBlock()
423 BlockStats.CodeFreq.resize(Code+1); in ParseBlock()
424 BlockStats.CodeFreq[Code].NumInstances++; in ParseBlock()
425 BlockStats.CodeFreq[Code].TotalBits += in ParseBlock()
428 BlockStats.CodeFreq[Code].NumAbbrev++; in ParseBlock()
435 GetCodeName(Code, BlockID, *Stream.getBitStreamReader())) in ParseBlock()
438 outs() << "UnknownCode" << Code; in ParseBlock()
440 GetCodeName(Code, BlockID, *Stream.getBitStreamReader())) in ParseBlock()
441 outs() << " codeid=" << Code; in ParseBlock()
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugAbbrev.cpp44 m_idx_offset = abbrevDeclaration.Code(); in Extract()
47 if (prev_abbr_code + 1 != abbrevDeclaration.Code()) in Extract()
50 prev_abbr_code = abbrevDeclaration.Code(); in Extract()
78 if (pos->Code() == abbrCode) in GetAbbreviationDeclaration()
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileWrapper.cpp213 void const* Code, in op_write_native_code() argument
219 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size); in op_write_native_code()
225 void const* Code, in op_write_debug_line_info() argument
232 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info); in op_write_debug_line_info()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/
DTooling.cpp105 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code, in runToolOnCode() argument
108 ToolAction, Code, std::vector<std::string>(), FileName); in runToolOnCode()
122 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code, in runToolOnCodeWithArgs() argument
134 Code.toNullTerminatedStringRef(CodeStorage)); in runToolOnCodeWithArgs()
402 ASTUnit *buildASTFromCode(const Twine &Code, const Twine &FileName) { in buildASTFromCode() argument
403 return buildASTFromCodeWithArgs(Code, std::vector<std::string>(), FileName); in buildASTFromCode()
406 ASTUnit *buildASTFromCodeWithArgs(const Twine &Code, in buildASTFromCodeWithArgs() argument
418 Code.toNullTerminatedStringRef(CodeStorage)); in buildASTFromCodeWithArgs()
/freebsd-10-stable/contrib/sendmail/
DLICENSE20 (b) Redistributions are accompanied by a copy of the Source Code or by an
21 irrevocable offer to provide a copy of the Source Code for up to three
24 Code under substantially the same terms as this license. For the
25 purposes of redistribution "Source Code" means the complete compilable
29 2. Redistributions of Source Code must retain the copyright notices as they
30 appear in each Source Code file, these license terms, and the
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/
DDWARFAbbreviationDeclaration.cpp18 Code = 0; in clear()
31 Code = Data.getULEB128(OffsetPtr); in extract()
32 if (Code == 0) { in extract()
DDWARFAbbreviationDeclaration.h21 uint32_t Code; variable
34 uint32_t getCode() const { return Code; } in getCode()
/freebsd-10-stable/contrib/ntp/sntp/libevent/
DMakefile.am151 SYS_INCLUDES = -IWIN32-Code -IWIN32-Code/nmake
256 WIN32-Code/nmake/evconfig-private.h \
257 WIN32-Code/nmake/event2/event-config.h \
258 WIN32-Code/tree.h \
/freebsd-10-stable/contrib/atf/
DAUTHORS8 the Google Summer of Code 2007 program as a student.
13 of Code 2007 program.
17 Participant of the Google Summer of Code 2008 program. Mentored by The
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Notes/
DALLperl_notes.txt12 The following counts subroutines from the example program, Code/Perl/hello.pl,
21 Now a similar program is traced, Code/Perl/hello_strict.pl, which uses
35 # cat -n ../Code/Perl/hello_strict.pl
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp139 unsigned Code = ReadVBR(6); in skipRecord() local
140 (void)Code; in skipRecord()
198 unsigned Code = ReadVBR(6); in readRecord() local
202 return Code; in readRecord()
214 unsigned Code = (unsigned)Vals.pop_back_val(); in readRecord() local
276 return Code; in readRecord()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/
DTooling.h141 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
153 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
163 ASTUnit *buildASTFromCode(const Twine &Code,
173 ASTUnit *buildASTFromCodeWithArgs(const Twine &Code,
/freebsd-10-stable/contrib/llvm/include/llvm/Bitcode/
DBitstreamReader.h286 unsigned Code = ReadCode(); variable
287 if (Code == bitc::END_BLOCK) {
294 if (Code == bitc::ENTER_SUBBLOCK)
297 if (Code == bitc::DEFINE_ABBREV &&
305 return BitstreamEntry::getRecord(Code);
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/
DParser.h121 static bool parseExpression(StringRef Code, VariantValue *Value,
129 static bool parseExpression(StringRef Code, Sema *S,

12345678910>>...19