Searched defs:Result (Results 1 - 25 of 342) sorted by relevance

1234567891011>>

/external/clang/tools/libclang/
H A DCIndexCXX.cpp102 ClassTemplatePartialSpecializationDecl *> Result local
104 if (Result.is<ClassTemplateDecl *>())
105 Template = Result.get<ClassTemplateDecl *>();
107 Template = Result.get<ClassTemplatePartialSpecializationDecl *>();
H A DCXComment.h33 CXComment Result; local
34 Result.ASTNode = C;
35 Result.TranslationUnit = TU;
36 return Result;
H A DCXSourceLocation.h35 CXSourceLocation Result = { { (void*) &SM, (void*) &LangOpts, }, local
37 return Result;
/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/libnfc-nxp/src/
H A DphFriNfc_IntNdefMap.c122 NFCSTATUS Result = NFCSTATUS_SUCCESS; local
159 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
164 Result = ((NdefMap->CardState ==
168 Result);
169 return Result;
H A DphFriNfc_MapTools.c67 NFCSTATUS Result = NFCSTATUS_SUCCESS; local
118 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
123 Result = ((NdefMap->CardState ==
127 Result);
128 return Result;
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message); local
32 if (0 == Result) {
/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/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.h71 std::vector<T> Result; local
72 Result.push_back(A);
74 Result.push_back(Val);
76 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,
/external/chromium/chrome/browser/debugger/
H A Ddevtools_remote_service.h37 struct Result { struct in class:DevToolsRemoteService
H A Dextension_ports_remote_service.h67 } Result; typedef in class:ExtensionPortsRemoteService
/external/chromium/chrome/browser/remoting/
H A Ddirectory_add_request.h21 enum Result { enum in class:remoting::DirectoryAddRequest
43 typedef Callback2<Result, const std::string&>::Type DoneCallback;
/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/diagtool/
H A DDiagnosticNames.cpp56 const DiagnosticRecord *Result = local
60 assert(Result && "diagnostic not found; table may be out of date");
61 return *Result;
/external/easymock/src/org/easymock/internal/
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/libppp/src/
H A Dsig.c66 sig_type Result; local
74 Result = handler[sig - 1];
83 return Result;
/external/llvm/include/llvm/ADT/
H A DSetOperations.h52 S1Ty Result; local
56 Result.insert(*SI);
57 return Result;
/external/llvm/lib/Analysis/
H A DAnalysis.cpp83 LLVMBool Result = verifyModule(*unwrap(M), local
90 return Result;
/external/llvm/lib/Object/
H A DBinary.cpp44 OwningPtr<Binary> &Result) {
57 Result.swap(ret);
68 Result.swap(ret);
84 Result.swap(ret);
90 Result.swap(ret);
98 error_code object::createBinary(StringRef Path, OwningPtr<Binary> &Result) { argument
102 return createBinary(File.take(), Result);
43 createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result) argument
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp66 Module* Result = 0; local
69 Result = ParseIRFile(FNStr, Err, Context);
70 if (Result) return std::auto_ptr<Module>(Result); // Load successful!
/external/webkit/Source/JavaScriptCore/wtf/unicode/
H A DCollator.h46 enum Result { Equal = 0, Greater = 1, Less = -1 }; enum in class:WTF::Collator
54 Result collate(const ::UChar*, size_t, const ::UChar*, size_t) const;
/external/webkit/Source/WebKit/android/content/
H A Dcontent_detector.h56 struct Result { struct in class:ContentDetector
62 Result() : valid(false) {} function in struct:ContentDetector::Result
64 Result(const WebKit::WebRange& range, function in struct:ContentDetector::Result
77 Result FindTappedContent(const WebKit::WebHitTestInfo& hit_test);
/external/webkit/Source/WebKit/chromium/public/
H A DWebStorageArea.h49 enum Result { enum in class:WebKit::WebStorageArea
67 // Set the value that corresponds to a specific key. Result will either be ResultOK
70 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue, WebFrame*)
75 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp108 LookupResult Result = statChained(Path, StatBuf, FileDescriptor); local
114 if (Result == CacheMissing)
115 return Result;
121 return Result;

Completed in 2099 milliseconds

1234567891011>>