Home
last modified time | relevance | path

Searched refs:Calls (Results 1 – 25 of 131) sorted by relevance

123456

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DCallLogFacade.java26 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/
DExternalASTSourceTest.cpp68 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/
Dfm.rst33 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/
DPlaceSafepoints.cpp262 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/
DVerificationModeFactory.java28 public static Calls calls(int wantedNumberOfInvocations) { in calls()
29 return new Calls( wantedNumberOfInvocations ); in calls()
DCalls.java20 public class Calls implements VerificationMode, VerificationInOrderMode { class
24 public Calls(int wantedNumberOfInvocations) { in Calls() method in Calls
/external/clang/lib/StaticAnalyzer/Checkers/
DMallocSizeofChecker.cpp53 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/
DPtrState.cpp86 Calls.clear(); in clear()
102 Calls.insert(Other.Calls.begin(), Other.Calls.end()); in Merge()
DPtrState.h77 SmallPtrSet<Instruction *, 2> Calls; member
156 void InsertCall(Instruction *I) { RRI.Calls.insert(I); } in InsertCall()
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMachODump.cpp155 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()
DMCFunction.cpp34 SmallVectorImpl<uint64_t> &Calls) { in createFunctionFromMC() argument
80 Calls.push_back(targ); in createFunctionFromMC()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DShadowStackGC.cpp130 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/
DShadowStackGCLowering.cpp134 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/
DSemaCoroutine.cpp197 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/
Dppc64-calls.ll14 ; 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/
DSetup.py21 from Calls import *
/external/python/cpython2/Tools/pybench/
DSetup.py21 from Calls import *
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DObjCARC.cpp1167 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/
Dcontrol18 Calls cros-disks to format supported filesystems
/external/autotest/client/site_tests/platform_CrosDisksArchive/
Dcontrol18 Calls cros-disks to mount supported archive files
/external/clang/docs/
DControlFlowIntegrityDesign.rst8 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/
Dcontrol18 Calls cros-disks to rename supported filesystems
/external/slf4j/slf4j-migrator/
DLIMITATIONS.txt33 - Calls to PropertyConfigurator or DomConfigurator cannot be migrated since
/external/llvm/test/Transforms/RewriteStatepointsForGC/
Dleaf-function.ll6 ; Calls of functions with the "gc-leaf-function" attribute shouldn't be turned
/external/autotest/client/site_tests/platform_CrosDisksFilesystem/
Dcontrol18 Calls cros-disks to mount supported filesystems

123456