/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | CallLogFacade.java | 26 import android.provider.CallLog.Calls; 61 mContentResolver.registerContentObserver(Calls.CONTENT_URI, true, mCallLogStatusReceiver); in CallLogFacade() 66 Uri uri = ContentUris.withAppendedId(Calls.CONTENT_URI, id); in buildUri() 73 mContentResolver.delete(Calls.CONTENT_URI, null, null); in callLogsEraseAll() 85 values.put(Calls.TYPE, type); in callLogsPut() 86 values.put(Calls.NUMBER, number); in callLogsPut() 87 values.put(Calls.DATE, time); in callLogsPut() 88 mContentResolver.insert(Calls.CONTENT_URI, values); in callLogsPut() 98 String[] query = new String[] {Calls.NUMBER, Calls.DATE, Calls.TYPE}; in callLogsGet() 102 Calls.CONTENT_URI, in callLogsGet() [all …]
|
/external/clang/unittests/AST/ |
D | ExternalASTSourceTest.cpp | 68 TestSource(unsigned &Calls) : Calls(Calls) {} in TEST() 73 ++Calls; in TEST() 77 unsigned &Calls; in TEST() member 80 unsigned Calls = 0; in TEST() local 81 ASSERT_TRUE(testExternalASTSource(new TestSource(Calls), "int j, k = j;")); in TEST() 82 EXPECT_EQ(1u, Calls); in TEST()
|
/external/python/cpython2/Doc/library/ |
D | fm.rst | 33 Initialization function. Calls :c:func:`fminit`. It is normally not necessary to 40 Return a font handle object. Calls ``fmfindfont(fontname)``. 52 method below). Calls ``fmprstr(string)``. 57 Sets the font search path. Calls ``fmsetpath(string)``. (XXX Does not work!?!) 69 Returns a handle for a scaled version of this font. Calls ``fmscalefont(fh, 76 font handle object is deleted. Calls ``fmsetfont(fh)``. 81 Returns this font's name. Calls ``fmgetfontname(fh)``. 87 there is none. Calls ``fmgetcomment(fh)``. 99 Returns the width, in pixels, of *string* when drawn in this font. Calls
|
/external/llvm/lib/Transforms/Scalar/ |
D | PlaceSafepoints.cpp | 262 std::vector<CallInst *> &Calls, in scanOneBB() argument 269 Calls.push_back(CI); in scanOneBB() 289 std::vector<CallInst *> &Calls, in scanInlinedCode() argument 291 Calls.clear(); in scanInlinedCode() 294 scanOneBB(Start, End, Calls, Seen, Worklist); in scanInlinedCode() 298 scanOneBB(&*BB->begin(), End, Calls, Seen, Worklist); in scanInlinedCode() 650 std::vector<CallInst *> Calls; // new calls in INITIALIZE_PASS_DEPENDENCY() local 662 scanInlinedCode(&*Start, &*After, Calls, BBs); in INITIALIZE_PASS_DEPENDENCY() 663 assert(!Calls.empty() && "slow path not found for safepoint poll"); in INITIALIZE_PASS_DEPENDENCY() 670 for (auto *CI : Calls) { in INITIALIZE_PASS_DEPENDENCY() [all …]
|
/external/mockito/src/main/java/org/mockito/internal/verification/ |
D | VerificationModeFactory.java | 28 public static Calls calls(int wantedNumberOfInvocations) { in calls() 29 return new Calls( wantedNumberOfInvocations ); in calls()
|
D | Calls.java | 20 public class Calls implements VerificationMode, VerificationInOrderMode { class 24 public Calls(int wantedNumberOfInvocations) { in Calls() method in Calls
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocSizeofChecker.cpp | 53 CallVec Calls; member in __anon0d8a9eaa0111::CastedAllocFinder 63 Calls.push_back(CallRecord(Parent, cast<Expr>(S), AllocCall.first, in VisitChild() 182 for (CastedAllocFinder::CallVec::iterator i = Finder.Calls.begin(), in checkASTCodeBody() 183 e = Finder.Calls.end(); i != e; ++i) { in checkASTCodeBody()
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | PtrState.cpp | 86 Calls.clear(); in clear() 102 Calls.insert(Other.Calls.begin(), Other.Calls.end()); in Merge()
|
D | PtrState.h | 77 SmallPtrSet<Instruction *, 2> Calls; member 156 void InsertCall(Instruction *I) { RRI.Calls.insert(I); } in InsertCall()
|
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/ |
D | MachODump.cpp | 155 SmallVector<uint64_t, 16> Calls; in createMCFunctionAndSaveCalls() local 158 InstrAnalysis, DebugOut, Calls); in createMCFunctionAndSaveCalls() 163 for (unsigned i = 0, e = Calls.size(); i != e; ++i) in createMCFunctionAndSaveCalls() 164 FunctionMap.insert(std::make_pair(Calls[i], (MCFunction*)0)); in createMCFunctionAndSaveCalls() 502 SmallVector<uint64_t, 16> Calls; in DisassembleInputMachO() local 508 Calls); in DisassembleInputMachO() 511 for (unsigned i = 0, e = Calls.size(); i != e; ++i) { in DisassembleInputMachO() 512 std::pair<uint64_t, MCFunction*> p(Calls[i], (MCFunction*)0); in DisassembleInputMachO()
|
D | MCFunction.cpp | 34 SmallVectorImpl<uint64_t> &Calls) { in createFunctionFromMC() argument 80 Calls.push_back(targ); in createFunctionFromMC()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ShadowStackGC.cpp | 130 SmallVector<Instruction*,16> Calls; in Next() local 138 Calls.push_back(CI); in Next() 140 if (Calls.empty()) in Next() 161 for (unsigned I = Calls.size(); I != 0; ) { in Next() 162 CallInst *CI = cast<CallInst>(Calls[--I]); in Next()
|
/external/llvm/lib/CodeGen/ |
D | ShadowStackGCLowering.cpp | 134 SmallVector<Instruction *, 16> Calls; in Next() local 141 Calls.push_back(CI); in Next() 143 if (Calls.empty()) in Next() 165 for (unsigned I = Calls.size(); I != 0;) { in Next() 166 CallInst *CI = cast<CallInst>(Calls[--I]); in Next()
|
/external/clang/lib/Sema/ |
D | SemaCoroutine.cpp | 197 ReadySuspendResumeResult Calls = {true, {}}; in buildCoawaitCalls() local 207 return Calls; in buildCoawaitCalls() 208 Calls.Results[I] = Result.get(); in buildCoawaitCalls() 211 Calls.IsInvalid = false; in buildCoawaitCalls() 212 return Calls; in buildCoawaitCalls()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | ppc64-calls.ll | 14 ; Calls to local function does not require the TOC restore 'nop' 24 ; Calls to weak function requires a TOC restore 'nop' because they
|
/external/python/cpython3/Tools/pybench/ |
D | Setup.py | 21 from Calls import *
|
/external/python/cpython2/Tools/pybench/ |
D | Setup.py | 21 from Calls import *
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | ObjCARC.cpp | 1167 SmallPtrSet<Instruction *, 2> Calls; member 1186 Calls.clear(); in clear() 1284 RRI.Calls.insert(Other.RRI.Calls.begin(), Other.RRI.Calls.end()); in Merge() 2325 S.RRI.Calls.insert(Inst); in VisitBottomUp() 2511 S.RRI.Calls.insert(Inst); in VisitTopDown() 2732 AI = RetainsToMove.Calls.begin(), in MoveCalls() 2733 AE = RetainsToMove.Calls.end(); AI != AE; ++AI) { in MoveCalls() 2739 AI = ReleasesToMove.Calls.begin(), in MoveCalls() 2740 AE = ReleasesToMove.Calls.end(); AI != AE; ++AI) { in MoveCalls() 2812 LI = NewRetainRRI.Calls.begin(), in PerformCodePlacement() [all …]
|
/external/autotest/client/site_tests/platform_CrosDisksFormat/ |
D | control | 18 Calls cros-disks to format supported filesystems
|
/external/autotest/client/site_tests/platform_CrosDisksArchive/ |
D | control | 18 Calls cros-disks to mount supported archive files
|
/external/clang/docs/ |
D | ControlFlowIntegrityDesign.rst | 8 Forward-Edge CFI for Virtual Calls 277 Forward-Edge CFI for Indirect Function Calls 386 - Calls made from uninstrumented DSOs are not checked and just work. 387 - Calls inside any instrumented DSO are fully protected. 388 - Calls between different instrumented DSOs are also protected, with 391 - Calls from an instrumented DSO to an uninstrumented one are 393 - Calls from an instrumented DSO outside of any known DSO are
|
/external/autotest/client/site_tests/platform_CrosDisksRename/ |
D | control | 18 Calls cros-disks to rename supported filesystems
|
/external/slf4j/slf4j-migrator/ |
D | LIMITATIONS.txt | 33 - Calls to PropertyConfigurator or DomConfigurator cannot be migrated since
|
/external/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | leaf-function.ll | 6 ; Calls of functions with the "gc-leaf-function" attribute shouldn't be turned
|
/external/autotest/client/site_tests/platform_CrosDisksFilesystem/ |
D | control | 18 Calls cros-disks to mount supported filesystems
|