Searched refs:Result (Results 1 - 25 of 297) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DSystemUtils.cpp46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr); local
47 Result.eraseComponent();
49 if (!Result.isEmpty()) {
50 Result.appendComponent(ExeName);
51 Result.appendSuffix(sys::Path::GetEXESuffix());
54 return Result;
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/lib/DBICTest/Taint/Namespaces/Result/
H A DTest.pm2 DBICTest::Taint::Namespaces::Result::Test;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/
H A DLoopBlinnTextureCoords.h44 struct Result { struct in class:WebCore::LoopBlinnTextureCoords
45 Result() function in struct:WebCore::LoopBlinnTextureCoords::Result
72 static Result compute(const LoopBlinnClassifier::Result& classification,
H A DLoopBlinnClassifier.cpp39 LoopBlinnClassifier::Result LoopBlinnClassifier::classify(const FloatPoint& c0,
93 return Result(kPoint, d1, d2, d3);
98 return Result(kLine, d1, d2, d3);
99 return Result(kQuadratic, d1, d2, d3);
103 return Result(kCusp, d1, d2, d3);
112 return Result(kLoop, d1, d2, d3);
114 return Result(kSerpentine, d1, d2, d3);
118 return Result(kSerpentine, d1, d2, d3);
121 return Result(kLoop, d1, d2, d3);
H A DLoopBlinnClassifier.h54 struct Result { struct in class:WebCore::LoopBlinnClassifier
56 Result(CurveType inputCurveType, float inputD1, float inputD2, float inputD3) function in struct:WebCore::LoopBlinnClassifier::Result
73 static Result classify(const FloatPoint& c0,
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DMachineRelocation.h58 void *Result; // If this has been resolved to a resolved pointer member in union:llvm::MachineRelocation::__anon9933
87 MachineRelocation Result; local
88 Result.Offset = offset;
89 Result.ConstantVal = cst;
90 Result.TargetReloType = RelocationType;
91 Result.AddrType = isGV;
92 Result.MayNeedFarStub = MayNeedFarStub;
93 Result.GOTRelative = GOTrelative;
94 Result.TargetResolve = false;
95 Result
107 MachineRelocation Result; local
124 MachineRelocation Result; local
144 MachineRelocation Result; local
163 MachineRelocation Result; local
182 MachineRelocation Result; local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/lib/DBICNSTest/Bogus/
H A DB.pm1 package DBICNSTest::Result::B;
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/lib/DBICNSTest/Result/
H A DA.pm1 package DBICNSTest::Result::A;
H A DB.pm1 package DBICNSTest::Result::B;
/macosx-10.9.5/llvmCore-3425.0.33/utils/not/
H A Dnot.cpp19 int Result = sys::Program::ExecuteAndWait(Program, argv + 1, 0, 0, 0, 0, local
21 if (Result < 0) {
26 return Result == 0;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Object/
H A DObjectFile.h106 error_code getNext(RelocationRef &Result) const;
108 error_code getAddress(uint64_t &Result) const;
109 error_code getOffset(uint64_t &Result) const;
110 error_code getSymbol(SymbolRef &Result) const;
111 error_code getType(uint64_t &Result) const;
116 error_code getHidden(bool &Result) const;
121 error_code getTypeName(SmallVectorImpl<char> &Result) const;
122 error_code getAdditionalInfo(int64_t &Result) const;
128 error_code getValueString(SmallVectorImpl<char> &Result) const;
149 error_code getNext(SectionRef &Result) cons
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/t/lib/DBICTestMethods/Namespaces/Schema/Result/
H A DFoo.pm1 package DBICTestMethods::Namespaces::Schema::Result::Foo;
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Ddnlcps.d58 @Result[execname, pid] = lquantize(this->code, 0, 1, 1);
66 printa(" CMD: %-16s PID: %d\n%@d\n", @Result);
/macosx-10.9.5/dtrace-118.1/DTTk/Kernel/
H A Ddnlcps.d58 @Result[execname, pid] = lquantize(this->code, 0, 1, 1);
66 printa(" CMD: %-16s PID: %d\n%@d\n", @Result);
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DAttributes.cpp32 std::string Result; local
34 Result += "zeroext ";
36 Result += "signext ";
38 Result += "noreturn ";
40 Result += "nounwind ";
42 Result += "uwtable ";
44 Result += "returns_twice ";
46 Result += "inreg ";
48 Result += "noalias ";
50 Result
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DStringSwitch.h48 const T *Result; member in class:llvm::StringSwitch
52 : Str(S), Result(0) { }
56 if (!Result && N-1 == Str.size() &&
58 Result = &Value;
66 if (!Result && Str.size() >= N-1 &&
68 Result = &Value;
76 if (!Result && Str.size() >= N-1 &&
78 Result = &Value;
112 if (Result)
113 return *Result;
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/examples/Schema/MyDatabase/Main/Result/
H A DArtist.pm1 package MyDatabase::Main::Result::Artist;
14 __PACKAGE__->has_many('cds' => 'MyDatabase::Main::Result::Cd');
H A DCd.pm1 package MyDatabase::Main::Result::Cd;
14 __PACKAGE__->belongs_to('artist' => 'MyDatabase::Main::Result::Artist');
15 __PACKAGE__->has_many('tracks' => 'MyDatabase::Main::Result::Track');
H A DTrack.pm1 package MyDatabase::Main::Result::Track;
14 __PACKAGE__->belongs_to('cd' => 'MyDatabase::Main::Result::Cd');
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp63 LineNumberInfo Result; local
65 Result.Offset = Address - StartAddress;
66 Result.LineNumber = Loc.getLine();
68 return Result;
76 iJIT_Method_Load Result; local
77 memset(&Result, 0, sizeof(iJIT_Method_Load));
79 Result.method_id = Wrapper.iJIT_GetNewMethodID();
80 Result.method_name = const_cast<char*>(FnName);
81 Result.method_load_address = reinterpret_cast<void*>(FnStart);
82 Result
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DDictionary.h51 template <typename Result>
52 bool get(const char* propertyName, Result&) const;
53 template <typename Result>
54 bool get(const String& propertyName, Result&) const;
74 template <typename Result>
75 bool Dictionary::get(const char* propertyName, Result& result) const
83 template <typename Result>
84 bool Dictionary::get(const String& propertyName, Result& result) const
H A DJSDictionary.h67 template <typename Result>
68 bool tryGetProperty(const char* propertyName, Result&) const;
69 template <typename T, typename Result>
70 bool tryGetProperty(const char* propertyName, T* context, void (*setter)(T* context, const Result&)) const;
73 template <typename Result>
74 bool get(const char* propertyName, Result&) const;
82 template <typename Result>
84 static void identitySetter(Result* context, const Result& result)
96 template <typename T, typename Result>
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DLazyValueInfo.cpp366 LVILatticeVal &Result);
534 LVILatticeVal Result; local
588 LVILatticeVal Result; // Start Undefined. local
612 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
614 Result.markOverdefined();
616 BBLV = Result;
629 Result.mergeIn(EdgeResult);
633 if (Result.isOverdefined()) {
640 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
643 BBLV = Result;
658 LVILatticeVal Result; // Start Undefined. local
722 LVILatticeVal Result; local
775 getEdgeValueLocal(Value *Val, BasicBlock *BBFrom, BasicBlock *BBTo, LVILatticeVal &Result) argument
866 getEdgeValue(Value *Val, BasicBlock *BBFrom, BasicBlock *BBTo, LVILatticeVal &Result) argument
914 LVILatticeVal Result = getBlockValue(V, BB); local
925 LVILatticeVal Result; local
1033 LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB); local
1049 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB); local
1067 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Object/
H A DCOFFObjectFile.cpp91 SymbolRef &Result) const {
95 Result = SymbolRef(Symb, this);
100 StringRef &Result) const {
102 return getSymbolName(symb, Result);
106 uint64_t &Result) const {
115 Result = UnknownAddressOrSize;
117 Result = Section->PointerToRawData + symb->Value;
119 Result = symb->Value;
124 uint64_t &Result) const {
133 Result
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/bugpoint/
H A DBugDriver.cpp60 std::string Result; local
62 if (i) Result += " ";
63 Result += "-";
64 Result += Passes[i];
66 return Result;
88 Module *Result = ParseIRFile(Filename, Err, Ctxt); local
89 if (!Result)
94 if (Result) {
96 Triple TheTriple(Result->getTargetTriple());
104 Result
[all...]

Completed in 296 milliseconds

1234567891011>>