Home
last modified time | relevance | path

Searched refs:Direct (Results 1 – 25 of 101) sorted by relevance

12345

/external/clang/test/Analysis/objc/
Ddirect-ivar-assignment-in-annotated-functions.m47 …(__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; us…
48 …_X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
49 …_Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
50 …_Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
51 …_nonSynth = 0; // expected-warning {{Direct assignment to an instance variable backing a property;…
/external/clang/test/Analysis/
Dobjc-properties.m66 …(__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; us…
67 …_X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
68 …_Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
69 …_Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
70 …_nonSynth = 0; // expected-warning {{Direct assignment to an instance variable backing a property;…
/external/clang/docs/analyzer/
DRegionStore.txt106 These are known as "Direct" bindings. However, RegionStore supports a second
111 When there is no Direct binding for a particular region, the store manager
119 manyInts[1] = 42; // Creates a Direct binding for manyInts[1].
120 print(manyInts[1]); // Retrieves the Direct binding for manyInts[1];
121 print(manyInts[0]); // There is no Direct binding for manyInts[1].
162 p.x = 42; // A Direct binding is made to the FieldRegion 'p.x'.
167 // There is no Direct binding, so we look for a Default
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.ascend103 ATTRIBUTE Ascend-IP-Direct 209 ipaddr
113 ATTRIBUTE Ascend-FR-Direct 219 integer
114 ATTRIBUTE Ascend-FR-Direct-Profile 220 string
115 ATTRIBUTE Ascend-FR-Direct-DLCI 221 integer
169 VALUE Ascend-FR-Direct FR-Direct-No 0
170 VALUE Ascend-FR-Direct FR-Direct-Yes 1
/external/clang/include/clang/CodeGen/
DCGFunctionInfo.h43 Direct, enumerator
75 KindFirst = Direct,
119 TheKind(Direct), PaddingInReg(false), InReg(false) {} in ABIArgInfo()
124 auto AI = ABIArgInfo(Direct);
235 bool isDirect() const { return TheKind == Direct; } in isDirect()
/external/mesa3d/src/mesa/tnl/
DNOTES61 - Direct the default vertex transformation stage to
67 - Direct the display list component of the tnl module to
79 - Direct the display list component to enable/disable caching
/external/mesa3d/src/mesa/drivers/dri/
Ddri.pc.in8 Description: Direct Rendering Infrastructure
/external/llvm/test/Object/
Dstackmap-dump.test14 CHECK-NEXT: #4: Direct R#4 + -8
/external/llvm/test/CodeGen/X86/
Dstatepoint-allocas.ll91 ; Direct Spill Slot [RSP+0]
120 ; Direct Spill Slot [RSP+0]
/external/llvm/tools/llvm-readobj/
DStackMapPrinter.h49 case StackMapParserT::LocationKind::Direct: in prettyPrintStackMap()
/external/llvm/lib/Fuzzer/test/
Dfuzzer-leak.test4 LEAK_DURING: Direct leak of 4 byte(s) in 1 object(s) allocated from:
/external/llvm/include/llvm/Object/
DStackMapParser.h100 Register = 1, Direct = 2, Indirect = 3, Constant = 4, ConstantIndex = 5 enumerator
135 assert((getKind() == LocationKind::Direct || in getOffset()
/external/llvm/test/tools/llvm-split/
Dscc-alias.ll27 ; Direct call to local alias
/external/eigen/doc/
DSparseLinearSystems.dox18 …e<Eigen/\link SparseCholesky_Module SparseCholesky\endlink></tt></td><td>Direct LLt factorization<…
22 …e<Eigen/\link SparseCholesky_Module SparseCholesky\endlink></tt></td><td>Direct LDLt factorization…
64 …stixLU</td><td>\link PaStiXSupport_Module PaStiXSupport \endlink</td><td>Direct LLt, LDLt, LU fact…
67 …lLLT</td><td>\link CholmodSupport_Module CholmodSupport \endlink</td><td>Direct LLt factorization<…
70 <tr><td>UmfPackLU</td><td>\link UmfPackSupport_Module UmfPackSupport \endlink</td><td>Direct LU fac…
73 <tr><td>SuperLU</td><td>\link SuperLUSupport_Module SuperLUSupport \endlink</td><td>Direct LU facto…
79 …soLU</td><td>\link PardisoSupport_Module PardisoSupport \endlink</td><td>Direct LLt, LDLt, LU fact…
/external/pdfium/third_party/libopenjpeg20/
D0005-jp2_apply_pclr.patch32 /* Direct use: */
D0022-jp2_apply_pclr_overflow.patch38 /* Direct use: */
/external/clang/docs/
DLeakSanitizer.rst35 Direct leak of 7 byte(s) in 1 object(s) allocated from:
/external/llvm/docs/
DStackMaps.rst342 uint8 : Register | Direct | Indirect | Constant | ConstantIndex
364 0x2 Direct Reg + Offset Frame index value
377 encoded as ``Direct`` locations in the form ``BP + Offset``. LLVM may
472 Direct Stack Map Entries
475 As shown in :ref:`stackmap-section`, a Direct stack map location
479 be loaded. Direct locations can communicate the address if an alloca,
501 stack map's location is a Direct location type.
/external/llvm/lib/DebugInfo/CodeView/
DTypeStreamMerger.cpp131 TypeIndex(SimpleTypeKind::NotTranslated, SimpleTypeMode::Direct)); in visitUnknownType()
/external/skia/resources/
Dslides_content2.lua117 - Direct support for sRGB
/external/python/cpython2/Doc/c-api/
Dbytearray.rst38 Direct API functions
/external/llvm/include/llvm/CodeGen/
DStackMaps.h135 Direct, enumerator
/external/ltp/runtest/
Ddio1 #DESCRIPTION:Direct IO tests
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h76 Direct = 0x00000000, // Not a pointer enumerator
/external/clang/lib/StaticAnalyzer/Core/
DRegionStore.cpp45 enum Kind { Default = 0x0, Direct = 0x1 }; enumerator
69 bool isDirect() const { return P.getInt() & Direct; } in isDirect()
195 return removeBinding(R, BindingKey::Direct). in removeBinding()
228 return Optional<SVal>::create(lookup(R, BindingKey::Direct)); in getDirectBinding()
414 assert(!B.lookup(R, BindingKey::Direct)); in BindDefault()
1160 B = B.addBinding(baseR, BindingKey::Direct, V); in VisitCluster()
1454 const SVal *V = B.lookup(R, BindingKey::Direct); in getBinding()
2019 return NewB.addBinding(BindingKey::Make(R, BindingKey::Direct), V); in bind()

12345