HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 151 - 175 of 1269) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/lib/Tooling/
FileMatchTrie.cpp 111 StringRef Result = MatchingChild->getValue().findEquivalent(
114 if (!Result.empty() || IsAmbiguous)
115 return Result;
119 StringRef Result;
122 if (Result.empty()) {
123 Result = AllChildren[i];
130 return Result;
181 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
184 return Result;
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_print_settings_manager.cc 28 PP_Size result; local
29 result.width = DeviceUnitsInPoints(print_size.width(), device_units_per_inch);
30 result.height =
32 return result;
37 PP_Rect result; local
38 result.point.x =
40 result.point.y =
42 result.size =
44 return result;
56 PepperPrintSettingsManager::Result ComputeDefaultPrintSettings()
    [all...]
  /external/clang/unittests/Tooling/
RewriterTestContext.h 81 SourceLocation Result = Sources.translateFileLineCol(
83 assert(Result.isValid());
84 return Result;
88 std::string Result;
89 llvm::raw_string_ostream OS(Result);
92 return Result;
  /external/llvm/lib/Analysis/
Analysis.cpp 81 LLVMBool Result = verifyModule(*unwrap(M), OutMessages ? &MsgsOS : DebugOS);
87 if (Action == LLVMAbortProcessAction && Result)
93 return Result;
97 LLVMBool Result = verifyFunction(
101 if (Action == LLVMAbortProcessAction && Result)
104 return Result;
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 51 Function *Result = Function::Create(
55 BasicBlock *BB = BasicBlock::Create(Context, Name, Result);
58 return Result;
69 Function *Result = startFunction<Signature>(M, "caller");
73 Function::arg_iterator arg_iter = Result->arg_begin();
74 for(;arg_iter != Result->arg_end(); ++arg_iter)
79 return Result;
86 Function *Result = startFunction<int32_t(void)>(M, "main");
89 endFunctionWithRet(Result, ReturnVal);
91 return Result;
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_MifareULMap.c 202 NFCSTATUS Result = NFCSTATUS_SUCCESS;
206 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP, NFCSTATUS_INVALID_PARAMETER);
246 return Result;
262 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
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,
389 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
404 Result = phFriNfc_MfUL_H_SelectSector(NdefMap,
    [all...]
phFriNfc_MifStdFormat.c 220 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT,
241 Result = phFriNfc_MfStd_H_WrRdAuth(NdefSmtCrdFmt);
243 return Result;
520 NFCSTATUS Result = NFCSTATUS_SUCCESS;
534 Result = phFriNfc_OvrHal_Transceive( NdefSmtCrdFmt->LowerDevice,
543 return Result;
549 NFCSTATUS Result = Status;
557 Result = phFriNfc_OvrHal_Reconnect( NdefSmtCrdFmt->LowerDevice,
562 Result = phFriNfc_OvrHal_Disconnect( NdefSmtCrdFmt->LowerDevice,
567 return Result;
    [all...]
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 126 Counters Result;
128 Result.Named.VM = !!(TSFlags & SIInstrFlags::VM_CNT);
131 Result.Named.EXP = !!(TSFlags & SIInstrFlags::EXP_CNT &&
144 Result.Named.LGKM = Size > 4 ? 2 : 1;
148 Result.Named.LGKM = 1;
152 Result.Named.LGKM = 0;
155 return Result;
197 RegInterval Result;
198 Result.first = TRI->getEncodingValue(Reg);
199 Result.second = Result.first + Size / 4
    [all...]
AMDGPUIntrinsicInfo.cpp 44 std::string Result(names[IntrID - Intrinsic::num_intrinsics]);
45 return Result;
  /external/clang/lib/AST/
ExprConstant.cpp 19 // * An evaluated result, valid only if constant folding has not failed.
23 // where it is possible to determine the evaluated result regardless.
837 APValue &Result = Temporaries[Key];
838 assert(Result.isUninit() && "temporary created multiple times");
839 Info.CleanupStack.push_back(Cleanup(&Result, IsLifetimeExtended));
840 return Result;
    [all...]
  /external/llvm/include/llvm/IR/
PassManager.h 261 /// \brief Abstract concept of an analysis result.
263 /// This concept is parameterized over the IR unit that this result pertains
268 /// \brief Method to try and mark a result as invalid.
275 /// took care to update or preserve the analysis result in some way.
277 /// \returns true if the result is indeed invalid (the default).
299 /// \brief Wrapper to model the analysis result concept.
302 /// implementation so that the actual analysis result doesn't need to provide
315 explicit AnalysisResultModel(ResultT Result) : Result(std::move(Result)) {}
    [all...]
  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunner.java 21 import org.junit.runner.Result;
43 Result result = jUnitCore.run(request); local
44 String status = result.wasSuccessful() ? PASSED_TEST_MARKER : FAILED_TEST_MARKER;
  /external/chromium_org/chrome/browser/services/gcm/
fake_gcm_profile_service.cc 27 GCMClient::Result result);
29 GCMClient::Result result);
32 GCMClient::Result result);
91 GCMClient::Result result) {
92 RegisterFinished(app_id, registration_id, result);
95 GCMClient::Result result)
135 GCMClient::Result result = GCMClient::SUCCESS; local
    [all...]
  /external/chromium_org/third_party/skia/tools/
PictureBenchmark.h 54 void setTimerResultType(TimerData::Result resultType) { fTimerResult = resultType; }
63 TimerData::Result fTimerResult;
  /external/clang/tools/libclang/
CXSourceLocation.h 35 CXSourceLocation Result = { { &SM, &LangOpts, },
37 return Result;
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
32 if (0 == Result) {
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 64 /// isInstructionTriviallyDead - Return true if the result produced by the
183 /// in the base pointer). Return the result as a signed integer of intptr size.
191 Value *Result = Constant::getNullValue(IntPtrTy);
219 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
228 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
241 Result = Builder->CreateAdd(Op, Result, GEP->getName()+".offs");
243 return Result;
    [all...]
  /external/skia/tools/
PictureBenchmark.h 53 void setTimerResultType(TimerData::Result resultType) { fTimerResult = resultType; }
62 TimerData::Result fTimerResult;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_IDCT8x8blk_s.s 66 Result RN 0
82 MOV Result, #OMX_Sts_NoErr
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_IDCT8x8blk_s.s 66 Result RN 0
82 MOV Result, #OMX_Sts_NoErr
  /libcore/luni/src/main/java/java/sql/
SQLXML.java 24 import javax.xml.transform.Result;
82 * Returns a {@link Result} for writing this object's data.
85 <T extends Result> T setResult(Class<T> resultClass) throws SQLException;
  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXResult.java 22 import javax.xml.transform.Result;
27 * <p>Acts as an holder for a transformation Result.</p>
31 public class SAXResult implements Result {
36 * the Transformer supports Result output of this type.
66 * Get the {@link org.xml.sax.ContentHandler} that is the Result.
  /libcore/luni/src/main/java/javax/xml/transform/stream/
StreamResult.java 25 import javax.xml.transform.Result;
28 * <p>Acts as an holder for a transformation result,
33 public class StreamResult implements Result {
37 * the Transformer supports Result output of this type.
115 * Set the writer that is to receive the result. Normally,
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 87 TokenInfo Result;
88 Result.Range.Start = currentLocation();
91 Result.Kind = TokenInfo::TK_CodeCompletion;
92 Result.Text = StringRef(CodeCompletionLocation, 0);
94 return Result;
98 Result.Kind = TokenInfo::TK_Eof;
99 Result.Text = "";
100 return Result;
105 Result.Kind = TokenInfo::TK_Comma;
106 Result.Text = Code.substr(0, 1)
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
screenshot_taker.h 31 enum Result {
45 Result screenshot_result,
65 ScreenshotTakerObserver::Result screenshot_result,
97 ScreenshotTakerObserver::Result screenshot_result,

Completed in 2546 milliseconds

1 2 3 4 5 67 8 91011>>