Searched defs:Result (Results 26 - 50 of 342) sorted by relevance

1234567891011>>

/external/clang/lib/Basic/
H A DObjCRuntime.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
H A DVersionTuple.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
/external/clang/lib/Lex/
H A DPPCaching.cpp48 void Preprocessor::CachingLex(Token &Result) { argument
53 Result = CachedTokens[CachedLexPos++];
58 Lex(Result);
63 CachedTokens.push_back(Result);
/external/chromium/chrome/browser/debugger/
H A Ddebugger_remote_service.h85 } Result; typedef in class:DebuggerRemoteService
90 // Writes the attachment result (one of Result enum values) into |response|.
/external/chromium/chrome/browser/first_run/
H A Dtry_chrome_dialog_view.h43 enum Result { enum in class:TryChromeDialogView
60 static Result Show(size_t version, ProcessSingleton* process_singleton);
72 Result ShowModal(ProcessSingleton* process_singleton);
104 Result result_;
/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/clang/include/clang/Lex/
H A DPTHLexer.h53 bool LexEndOfFile(Token &Result);
93 void IndirectLex(Token &Result) { Lex(Result); } argument
/external/clang/lib/AST/
H A DExternalASTSource.cpp58 SmallVectorImpl<Decl*> &Result) {
56 FindExternalLexicalDecls(const DeclContext *DC, bool (*isKindWeWant)(Decl::Kind), SmallVectorImpl<Decl*> &Result) argument
/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...]
H A Dedit_distance.h96 unsigned Result = Previous[n]; local
97 return Result;
/external/llvm/include/llvm/Transforms/Utils/
H A DLocal.h182 Value *Result = Constant::getNullValue(IntPtrTy); local
204 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
213 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
226 Result = Builder->CreateAdd(Op, Result, GEP->getName()+".offs");
228 return Result;
/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp43 long Result = 0; local
45 Result += *Args[i];
46 return Result;
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/
H A Dwin_ce_semaphore.c103 BOOL Result = TRUE; local
117 Result = FALSE;
132 return Result;
189 BOOL Result = TRUE; local
190 if (hSynch->hEvent != NULL) Result = Result && CloseHandle (hSynch->hEvent);
191 if (hSynch->hMutex != NULL) Result = Result && CloseHandle (hSynch->hMutex);
192 if (hSynch->hSemph != NULL) Result = Result
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
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/webkit/Source/WebCore/platform/haiku/
H A DContextMenuHaiku.cpp68 int Result() function in class:WebCore::ContextMenuReceiver
/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h141 // Result: the function's return type.
156 typedef R Result; typedef in struct:testing::internal::Function
/external/clang/include/clang/Sema/
H A DTemplateDeduction.h69 TemplateArgumentList *Result = Deduced; local
71 return Result;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h49 llvm::APSInt Result(Value, Value.isUnsigned());
50 apply(Result); variable
51 return 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/tools/libclang/
H A DCXString.cpp45 CXString Result; local
50 Result.data = Spelling;
51 Result.private_flags = (unsigned) CXS_Malloc;
53 Result.data = (void*) String.data();
54 Result.private_flags = (unsigned) CXS_Unmanaged;
56 return Result;
/external/clang/unittests/AST/
H A DDeclPrinterTest.cpp47 virtual void run(const MatchFinder::MatchResult &Result) { argument
48 const Decl *D = Result.Nodes.getDeclAs<Decl>("id");
56 PrintDecl(Out, Result.Context, D);
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.h38 virtual void run(const MatchFinder::MatchResult &Result) { argument
40 *Verified = FindResultReviewer->run(&Result.Nodes);
/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp183 std::vector<std::string> Result = unescapeJsonCommandLine(""); local
184 EXPECT_TRUE(Result.empty());
188 std::vector<std::string> Result = unescapeJsonCommandLine("a b c"); local
189 ASSERT_EQ(3ul, Result.size());
190 EXPECT_EQ("a", Result[0]);
191 EXPECT_EQ("b", Result[1]);
192 EXPECT_EQ("c", Result[2]);
196 std::vector<std::string> Result = unescapeJsonCommandLine(" a b "); local
197 ASSERT_EQ(2ul, Result.size());
198 EXPECT_EQ("a", Result[
212 std::vector<std::string> Result = unescapeJsonCommandLine("\\\\\\" a b \\\\\\""); local
218 std::vector<std::string> Result = unescapeJsonCommandLine( local
226 std::vector<std::string> Result = unescapeJsonCommandLine( local
233 std::vector<std::string> Result = unescapeJsonCommandLine( local
240 std::vector<std::string> Result = unescapeJsonCommandLine( local
276 std::vector<CompileCommand> Result = local
319 std::vector<CompileCommand> Result = local
338 std::vector<CompileCommand> Result = local
[all...]
/external/junit/src/org/junit/runner/
H A DResult.java13 * A <code>Result</code> collects and summarizes information from running multiple
17 public class Result implements Serializable { class in inherits:Serializable
74 public void testRunFinished(Result result) throws Exception {
/external/libnfc-nxp/src/
H A DphFriNfc_MifareULMap.c202 NFCSTATUS Result = NFCSTATUS_SUCCESS; local
206 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, NFCSTATUS_INVALID_PARAMETER);
246 return Result;
262 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, local
305 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
315 Result = ((NdefMap->Offset == PH_FRINFC_NDEFMAP_SEEK_BEGIN)?
320 return Result;
338 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, local
389 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
404 Result
1290 NFCSTATUS Result = PHNFCSTVAL( CID_FRI_NFC_NDEF_MAP, local
[all...]

Completed in 8411 milliseconds

1234567891011>>