Searched refs:Code (Results 1 - 25 of 148) sorted by relevance

123456

/macosx-10.10.1/llvmCore-3425.0.34/autoconf/m4/
H A Dconfig_project.m46 AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),
10 AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),
/macosx-10.10.1/llvmCore-3425.0.34/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.h22 uint32_t Code; member in class:llvm::DWARFAbbreviationDeclaration
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
31 uint32_t getCode() const { return Code; }
45 bool isValid() const { return Code != 0 && Tag != 0; }
H A DDWARFAbbreviationDeclaration.cpp25 Code = code;
27 if (Code) {
/macosx-10.10.1/llvmCore-3425.0.34/projects/sample/autoconf/m4/
H A Dconfig_project.m46 AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),
10 AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dcoderepository.h6 * This file contains Original Code and/or Modifications of Original Code
13 * The Original Code and all software distributed under the License are
62 // CodeRepository<Code> represents all code objects within the PathList search path,
63 // represented forcibly as objects of type Code.
65 template <class Code>
66 class CodeRepository : public vector<RefPointer<Code> >, public PathList {
84 template <class Code>
85 void CodeRepository<Code>::update()
87 vector<RefPointer<Code> > resul
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dcoderepository.h6 * This file contains Original Code and/or Modifications of Original Code
13 * The Original Code and all software distributed under the License are
62 // CodeRepository<Code> represents all code objects within the PathList search path,
63 // represented forcibly as objects of type Code.
65 template <class Code>
66 class CodeRepository : public vector<RefPointer<Code> >, public PathList {
84 template <class Code>
85 void CodeRepository<Code>::update()
87 vector<RefPointer<Code> > resul
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp35 void *Code; member in struct:__anon10552::FunctionEmittedEvent
41 void *Code; member in struct:__anon10552::FunctionFreedEvent
53 void *Code, size_t Size,
55 FunctionEmittedEvent Event = {NextIndex++, &F, Code, Size, Details};
106 EXPECT_EQ(F1_addr, Listener.EmittedEvents[0].Code);
113 EXPECT_EQ(F2_addr, Listener.EmittedEvents[1].Code);
119 EXPECT_EQ(F1_addr, Listener.FreedEvents[0].Code);
122 EXPECT_EQ(F2_addr, Listener.FreedEvents[1].Code);
159 EXPECT_EQ(F1_addr, Listener1.EmittedEvents[0].Code);
165 EXPECT_EQ(F2_addr, Listener1.FreedEvents[0].Code);
52 NotifyFunctionEmitted(const Function &F, void *Code, size_t Size, const EmittedFunctionDetails &Details) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Dcs.cpp6 * This file contains Original Code and/or Modifications of Original Code
13 * The Original Code and all software distributed under the License are
37 : Code("SecCode"),
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dcs.cpp6 * This file contains Original Code and/or Modifications of Original Code
13 * The Original Code and all software distributed under the License are
37 : Code("SecCode"),
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Transforms/Utils/
H A DCmpInstAnalysis.h56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/macosx-10.10.1/swig-12/Lib/
H A Dstd_except.i36 %define %std_exception_map(Exception, Code)
38 SWIG_exception(Code, $1.what());
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DISDOpcodes.h757 inline bool isSignedIntSetCC(CondCode Code) { argument
758 return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE;
763 inline bool isUnsignedIntSetCC(CondCode Code) { argument
764 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_transform/
H A Dbase64.tcl45 my Code encodebuf encode $data 3
49 my Code decodebuf decode $data 4
83 method Code {bufvar op data n} {
/macosx-10.10.1/llvmCore-3425.0.34/lib/TableGen/
H A DStringMatcher.cpp55 StringRef Code = Matches[0]->second; local
57 std::pair<StringRef, StringRef> Split = Code.split('\n');
60 Code = Split.second;
61 while (!Code.empty()) {
62 Split = Code.split('\n');
64 Code = Split.second;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp151 static void WriteStringRecord(unsigned Code, StringRef Str, argument
155 // Code: [strchar x N]
163 Stream.EmitRecord(Code, Vals, AbbrevToUse);
257 unsigned Code = 0; local
261 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
262 case Type::HalfTyID: Code = bitc::TYPE_CODE_HALF; break;
263 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;
264 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break;
265 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break;
266 case Type::FP128TyID: Code
725 EmitAPInt(SmallVectorImpl<uint64_t> &Vals, unsigned &Code, unsigned &AbbrevToUse, const APInt &Val, bool EmitSizeForWideNumbers = false ) argument
836 unsigned Code = -1U; local
1045 unsigned Code = 0; local
1173 unsigned Code, Abbrev; // will unused. local
1417 unsigned Code; local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
74 switch (Code) {
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Ddialog2.tcl13 set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below. Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}]
H A Ddialog1.tcl9 info 0 OK Cancel {Show Code}]
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Ddialog2.tcl13 set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below. Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}]
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/
H A DMCPureStreamer.cpp201 SmallString<256> Code; local
202 raw_svector_ostream VecOS(Code);
206 IF->getCode() = Code;
214 SmallString<256> Code; local
215 raw_svector_ostream VecOS(Code);
224 DF->getContents().append(Code.begin(), Code.end());
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dmake_posix_availability.sh7 # This file contains Original Code and/or Modifications of Original Code
14 # The Original Code and all software distributed under the License are
44 * This file contains Original Code and/or Modifications of Original Code
56 * The Original Code and all software distributed under the License are
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitPrivate.h68 #define WEBKIT_DEFINE_TYPE_WITH_CODE(TypeName, type_name, TYPE_PARENT, Code) _WEBKIT_DEFINE_TYPE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PARENT, 0) {Code;} _WEBKIT_DEFINE_TYPE_EXTENDED_END()
70 #define _WEBKIT_DEFINE_TYPE_EXTENDED(TypeName, type_name, TYPE_PARENT, flags, Code) _WEBKIT_DEFINE_TYPE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PARENT, flags) {Code;} _WEBKIT_DEFINE_TYPE_EXTENDED_END()
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp209 void const* Code,
215 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size);
221 void const* Code,
228 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info);
207 op_write_native_code(const char* Name, uint64_t Addr, void const* Code, const unsigned int Size) argument
220 op_write_debug_line_info( void const* Code, size_t NumEntries, struct debug_line_info const* Info) argument
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/MC/
H A DMCWin64EH.h1 //===- MCWin64EH.h - Machine Code Win64 EH support --------------*- C++ -*-===//
51 MCWin64EHInstruction(OpType Op, MCSymbol *L, bool Code) argument
52 : Operation(Op), Label(L), Offset(Code ? 1 : 0) {
/macosx-10.10.1/swig-12/Lib/std/
H A Dstd_common.i166 %define %typemap_traits(Code,Type...)
167 %typemaps_asvalfrom(%arg(Code),
180 %define %typemap_traits_ptr(Code,Type...)
181 %typemaps_asptrfrom(%arg(Code),

Completed in 231 milliseconds

123456