HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 1 - 25 of 326) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Support/
SystemUtils.cpp 46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr);
47 Result.eraseComponent();
49 if (!Result.isEmpty()) {
50 Result.appendComponent(ExeName);
51 Result.appendSuffix(sys::Path::GetEXESuffix());
54 return Result;
  /external/llvm/utils/not/
not.cpp 19 int Result = sys::Program::ExecuteAndWait(Program, argv + 1, 0, 0, 0, 0,
21 if (Result < 0) {
26 return Result == 0;
  /external/clang/lib/Basic/
VersionTuple.cpp 20 std::string Result;
22 llvm::raw_string_ostream Out(Result);
25 return Result;
FileSystemStatCache.cpp 108 LookupResult Result = statChained(Path, StatBuf, FileDescriptor);
114 if (Result == CacheMissing)
115 return Result;
121 return Result;
  /hardware/ti/omap3/dspbridge/libbridge/
perfutils.c 40 INT Result = 0;
42 Result = gettimeofday(tv, &tz);
43 if (Result != 0)
46 return Result;
69 fprintf(stdout, "LOG: RESULT: %lu\n", totalTimeuSec);
  /external/clang/tools/libclang/
CIndexCXX.cpp 101 ClassTemplatePartialSpecializationDecl *> Result
103 if (Result.is<ClassTemplateDecl *>())
104 Template = Result.get<ClassTemplateDecl *>();
106 Template = Result.get<ClassTemplatePartialSpecializationDecl *>();
CXSourceLocation.h 35 CXSourceLocation Result = { { (void*) &SM, (void*) &LangOpts, },
37 return Result;
  /external/libnfc-nxp/src/
phFriNfc_IntNdefMap.c 122 NFCSTATUS Result = NFCSTATUS_SUCCESS;
159 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
164 Result = ((NdefMap->CardState ==
168 Result);
169 return Result;
phFriNfc_MapTools.c 67 NFCSTATUS Result = NFCSTATUS_SUCCESS;
118 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
123 Result = ((NdefMap->CardState ==
127 Result);
128 return Result;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_IDCT8x8blk_s.s 52 Result RN 0
68 MOV Result, #OMX_Sts_NoErr
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_IDCT8x8blk_s.s 52 Result RN 0
68 MOV Result, #OMX_Sts_NoErr
  /cts/libs/vogar-expect/src/vogar/
Result.java 20 * The result of a test or benchmark execution.
22 public enum Result {
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
32 if (0 == Result) {
  /external/llvm/include/llvm/ADT/
SetOperations.h 52 S1Ty Result;
56 Result.insert(*SI);
57 return Result;
  /external/llvm/lib/Analysis/
Analysis.cpp 82 LLVMBool Result = verifyModule(*unwrap(M),
89 return Result;
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnTextureCoords.h 44 struct Result {
45 Result()
72 static Result compute(const LoopBlinnClassifier::Result& classification,
  /external/webkit/Source/WebKit/chromium/public/
WebStorageArea.h 49 enum Result {
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*)
72 setItem(key, newValue, url, result, oldValue);
75 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
77 setItem(key, newValue, url, result, oldValue, 0);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocationFactory.h 30 * \brief Reloc is the result of applying functions.
32 enum Result
  /frameworks/compile/mclinker/lib/Target/X86/
X86RelocationFactory.h 30 * \brief Reloc is the result of applying functions.
32 enum Result
  /libcore/luni/src/main/java/javax/xml/transform/
Result.java 18 // $Id: Result.java 446598 2006-09-15 12:55:40Z jeremias $
24 * needed to build a transformation result tree.</p>
28 public interface Result {
32 * result tree disables output escaping.
34 * <p>Normally, result tree serialization escapes & and < (and
44 * <p>Result DOM trees may also have PI_DISABLE_OUTPUT_ESCAPING and
54 * if the result tree enables output escaping at some point after having
63 * Set the system identifier for this Result.
65 * <p>If the Result is not to be written to a file, the system identifier is optional.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
TagVerifier.java 28 Result verifyTag(Tag tag) throws FormatException, IOException;
31 public static class Result {
39 public Result(CharSequence expectedContent, CharSequence actualContent, boolean isMatch) {
  /external/chromium/chrome/browser/debugger/
devtools_remote_service.h 36 // Operation result returned in the "result" field.
37 struct Result {
extension_ports_remote_service.h 57 // Operation result returned in the "result" field in messages sent
67 } Result;
  /external/chromium/chrome/browser/remoting/
directory_add_request.h 21 enum Result {
43 typedef Callback2<Result, const std::string&>::Type DoneCallback;
  /external/chromium/chrome/common/extensions/
update_manifest.h 37 // The result of parsing one <app> tag in an xml update check manifest.
38 struct Result {
39 Result();
40 ~Result();
54 std::vector<Result> list;
62 // Parses an update manifest xml string into Result data. Returns a bool

Completed in 390 milliseconds

1 2 3 4 5 6 7 8 91011>>