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

1234567891011>>

/external/llvm/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;
/external/webkit/Source/WebCore/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,
/external/llvm/include/llvm/CodeGen/
H A DMachineRelocation.h58 void *Result; // If this has been resolved to a resolved pointer member in union:llvm::MachineRelocation::__anon8450
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...]
/external/easymock/src/org/easymock/internal/
H A DExpectedInvocationAndResult.java26 Result result;
29 Result result) {
38 public Result getResult() {
H A DIMocksBehavior.java21 void addExpected(ExpectedInvocation expected, Result result, Range count);
23 void addStub(ExpectedInvocation expected, Result result);
32 Result addActual(Invocation invocation);
H A DResult.java23 public class Result implements IAnswer<Object>, Serializable { class in inherits:IAnswer,Serializable
31 private Result(IAnswer<?> value, boolean shouldFillInStackTrace) { method in class:Result
36 public static Result createThrowResult(final Throwable throwable) {
50 return new Result(new ThrowingAnswer(), true);
53 public static Result createReturnResult(final Object value) {
67 return new Result(new ReturningAnswer(), true);
70 public static Result createDelegatingResult(final Object value) {
95 return new Result(new DelegatingAnswer(), false);
98 public static Result createAnswerResult(IAnswer<?> answer) {
99 return new Result(answe
[all...]
/external/llvm/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;
/external/clang/lib/Lex/
H A DMacroArgs.cpp48 MacroArgs *Result; local
51 Result = (MacroArgs*)malloc(sizeof(MacroArgs) +
54 new (Result) MacroArgs(UnexpArgTokens.size(), VarargsElided);
56 Result = *ResultEnt;
58 *ResultEnt = Result->ArgCache;
59 Result->NumUnexpArgTokens = UnexpArgTokens.size();
60 Result->VarargsElided = VarargsElided;
66 const_cast<Token*>(Result->getUnexpArgument(0)));
68 return Result;
117 const Token *Result local
156 std::vector<Token> &Result = PreExpArgTokens[Arg]; local
206 SmallString<128> Result; local
[all...]
H A DLexer.cpp210 std::string Result = Str; local
212 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
213 if (Result[i] == '\\' || Result[i] == Quote) {
214 Result.insert(Result.begin()+i, '\\');
218 return Result;
305 std::string Result;
306 Result.reserve(Tok.getLength());
312 Result
1467 LexIdentifier(Token &Result, const char *CurPtr) argument
1549 LexNumericConstant(Token &Result, const char *CurPtr) argument
1591 LexUDSuffix(Token &Result, const char *CurPtr) argument
1631 LexStringLiteral(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1684 LexRawStringLiteral(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1763 LexAngledStringLiteral(Token &Result, const char *CurPtr) argument
1798 LexCharConstant(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1857 SkipWhitespace(Token &Result, const char *CurPtr) argument
1904 SkipBCPLComment(Token &Result, const char *CurPtr) argument
2031 SaveBCPLComment(Token &Result, const char *CurPtr) argument
2133 SkipBlockComment(Token &Result, const char *CurPtr) argument
2301 ReadToEndOfLine(SmallVectorImpl<char> *Result) argument
2355 LexEndOfFile(Token &Result, const char *CurPtr) argument
2555 LexTokenInternal(Token &Result) argument
[all...]
/external/llvm/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...]
/external/stlport/test/unit/
H A Dfadapter.h14 template <class Result>
17 Result (*ptr)();
19 explicit pointer_to_void_function(Result (*x)()) : ptr(x) {}
20 Result operator()() const { return ptr(); }
21 Result operator()(__void_tag) const { return ptr(); }
32 template <class Result>
33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) {
34 return pointer_to_void_function<Result>(x);
38 template <class Result>
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-call.cpp12 template<typename T, typename Result>
15 Result result = f0(t);
24 template<typename T, typename Result>
27 Result &result = f0(t); // expected-error {{undeclared identifier}} \
38 template<typename T, typename Result>
41 Result &result = f0(t);
/external/junit/src/org/junit/experimental/results/
H A DFailureList.java8 import org.junit.runner.Result;
19 public Result result() {
20 Result result= new Result();
/external/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp41 const ast_matchers::MatchFinder::MatchResult &Result) {
42 if (const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId)) {
44 *Result.SourceManager,
54 const ast_matchers::MatchFinder::MatchResult &Result) {
55 const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId);
56 const Stmt *ToMatch = Result.Nodes.getStmtAs<Stmt>(ToId);
59 *Result.SourceManager, *FromMatch, *ToMatch));
67 const ast_matchers::MatchFinder::MatchResult &Result) {
68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) {
71 Replace.insert(replaceStmtWithStmt(*Result
40 run( const ast_matchers::MatchFinder::MatchResult &Result) argument
53 run( const ast_matchers::MatchFinder::MatchResult &Result) argument
66 run( const ast_matchers::MatchFinder::MatchResult &Result) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dexplicit-instantiation.cpp6 template<typename T, typename U, typename Result>
8 Result operator()(const T& t, const U& u) const;
11 template<typename T, typename U, typename Result>
12 Result plus<T, U, Result>::operator()(const T& t, const U& u) const {
/external/llvm/lib/VMCore/
H A DAttributes.cpp30 std::string Result; local
32 Result += "zeroext ";
34 Result += "signext ";
36 Result += "noreturn ";
38 Result += "nounwind ";
40 Result += "uwtable ";
42 Result += "returns_twice ";
44 Result += "inreg ";
46 Result += "noalias ";
48 Result
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTTypeTraits.h96 DynTypedNode Result; local
97 Result.Tag = NT_Decl;
98 new (Result.Storage.buffer) const Decl*(&Node);
99 return Result;
110 DynTypedNode Result; local
111 Result.Tag = NT_Stmt;
112 new (Result.Storage.buffer) const Stmt*(&Node);
113 return Result;
123 DynTypedNode Result; local
124 Result
[all...]
/external/llvm/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...]
/external/clang/include/clang/Lex/
H A DLexer.h134 void Lex(Token &Result) { argument
136 Result.startToken();
141 Result.setFlag(Token::StartOfLine);
147 LexTokenInternal(Result);
155 void IndirectLex(Token &Result) { Lex(Result); } argument
160 bool LexFromRawLexer(Token &Result) { argument
162 Lex(Result);
203 void ReadToEndOfLine(SmallVectorImpl<char> *Result = 0);
434 void LexTokenInternal(Token &Result);
441 FormTokenWithChars(Token &Result, const char *TokEnd, tok::TokenKind Kind) argument
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp349 std::string &Result);
351 void RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result);
355 std::string &Result);
357 bool RewriteObjCFieldDeclType(QualType &Type, std::string &Result);
360 std::string &Result);
401 std::string &Result);
403 std::string &Result);
406 StringRef prefix, StringRef ClassName, std::string &Result);
408 std::string &Result);
409 void RewriteClassSetupInitHook(std::string &Result);
784 WriteInternalIvarName(const ObjCInterfaceDecl *IDecl, ObjCIvarDecl *IvarDecl, std::string &Result) argument
1936 std::string Result; local
3700 RewriteObjCFieldDeclType(QualType &Type, std::string &Result) argument
3769 RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result) argument
3799 RewriteLocallyDefinedNamedAggregates(FieldDecl *fieldDecl, std::string &Result) argument
3834 RewriteObjCInternalStruct(ObjCInterfaceDecl *CDecl, std::string &Result) argument
3889 RewriteIvarOffsetSymbols(ObjCInterfaceDecl *CDecl, std::string &Result) argument
5760 Write_ProtocolExprReferencedMetadata(ASTContext *Context, ObjCProtocolDecl *PDecl, std::string &Result) argument
5994 RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, std::string &Result) argument
6113 WriteModernMetadataDeclarations(ASTContext *Context, std::string &Result) argument
6191 Write_protocol_list_t_TypeDecl(std::string &Result, long super_protocol_count) argument
6200 Write_method_list_t_TypeDecl(std::string &Result, unsigned int method_count) argument
6210 Write__prop_list_t_TypeDecl(std::string &Result, unsigned int property_count) argument
6220 Write__ivar_list_t_TypeDecl(std::string &Result, unsigned int ivar_count) argument
6230 Write_protocol_list_initializer(ASTContext *Context, std::string &Result, ArrayRef<ObjCProtocolDecl *> SuperProtocols, StringRef VarName, StringRef ProtocolName) argument
6253 Write_method_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef TopLevelDeclName, bool MethodImpl) argument
6294 Write_prop_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCPropertyDecl *> Properties, const Decl *Container, StringRef VarName, StringRef ProtocolName) argument
6342 Write__class_ro_t_initializer(ASTContext *Context, std::string &Result, unsigned int flags, const std::string &InstanceStart, const std::string &InstanceSize, ArrayRef<ObjCMethodDecl *>baseMethods, ArrayRef<ObjCProtocolDecl *>baseProtocols, ArrayRef<ObjCIvarDecl *>ivars, ArrayRef<ObjCPropertyDecl *>Properties, StringRef VarName, StringRef ClassName) argument
6409 Write_class_t(ASTContext *Context, std::string &Result, StringRef VarName, const ObjCInterfaceDecl *CDecl, bool metaclass) argument
6549 Write_category_t(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ObjCCategoryDecl *CatDecl, ObjCInterfaceDecl *ClassDecl, ArrayRef<ObjCMethodDecl *> InstanceMethods, ArrayRef<ObjCMethodDecl *> ClassMethods, ArrayRef<ObjCProtocolDecl *> RefedProtocols, ArrayRef<ObjCPropertyDecl *> ClassProperties) argument
6631 Write__extendedMethodTypes_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef ProtocolName) argument
6657 Write_IvarOffsetVar(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCIvarDecl *> Ivars, ObjCInterfaceDecl *CDecl) argument
6693 Write__ivar_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCIvarDecl *> Ivars, StringRef VarName, ObjCInterfaceDecl *CDecl) argument
6742 RewriteObjCProtocolMetaData(ObjCProtocolDecl *PDecl, std::string &Result) argument
6907 RewriteObjCProtocolListMetaData( const ObjCList<ObjCProtocolDecl> &Protocols, StringRef prefix, StringRef ClassName, std::string &Result) argument
6964 RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl, std::string &Result) argument
7132 RewriteClassSetupInitHook(std::string &Result) argument
7148 RewriteMetaDataIntoBuffer(std::string &Result) argument
7226 WriteImageInfo(std::string &Result) argument
7237 RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, std::string &Result) argument
7330 RewriteCategorySetupInitHook(std::string &Result) argument
7353 RewriteObjCMethodsMetaData(MethodIterator MethodBegin, MethodIterator MethodEnd, bool IsInstanceMethod, StringRef prefix, StringRef ClassName, std::string &Result) argument
[all...]
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest.h38 struct Result { struct in class:UpdateManifest
39 Result();
40 ~Result();
54 std::vector<Result> list;
62 // Parses an update manifest xml string into Result data. Returns a bool
/external/clang/tools/libclang/
H A DCXComment.h33 CXComment Result; local
34 Result.ASTNode = C;
35 Result.TranslationUnit = TU;
36 return Result;
/external/llvm/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...]

Completed in 378 milliseconds

1234567891011>>