Searched refs:dl (Results 1 - 25 of 311) sorted by relevance

1234567891011>>

/external/libppp/src/
H A Ddatalink.c88 struct datalink *dl = (struct datalink *)v; local
90 timer_Stop(&dl->dial.timer);
91 if (dl->state == DATALINK_OPENING)
92 log_Printf(LogCHAT, "%s: Redial timer expired.\n", dl->name);
96 datalink_StartDialTimer(struct datalink *dl, int Timeout) argument
100 timer_Stop(&dl->dial.timer);
103 dl->dial.timer.load = result ? result * SECTICKS : 1;
104 dl->dial.timer.func = datalink_OpenTimeout;
105 dl->dial.timer.name = "dial";
106 dl
115 datalink_HangupDone(struct datalink *dl) argument
189 datalink_ChoosePhoneNumber(struct datalink *dl) argument
211 datalink_LoginDone(struct datalink *dl) argument
254 struct datalink *dl = descriptor2datalink(d); local
415 datalink_RemoveFromSet(struct datalink *dl, fd_set *r, fd_set *w, fd_set *e) argument
423 struct datalink *dl = descriptor2datalink(d); local
450 struct datalink *dl = descriptor2datalink(d); local
481 struct datalink *dl = descriptor2datalink(d); local
527 datalink_ComeDown(struct datalink *dl, int how) argument
563 struct datalink *dl = (struct datalink *)v; local
573 struct datalink *dl = (struct datalink *)v; local
597 datalink_AuthReInit(struct datalink *dl) argument
605 datalink_GotAuthname(struct datalink *dl, const char *name) argument
612 datalink_NCPUp(struct datalink *dl) argument
658 datalink_CBCPComplete(struct datalink *dl) argument
666 datalink_CBCPFailed(struct datalink *dl) argument
673 datalink_AuthOk(struct datalink *dl) argument
741 datalink_AuthNotOk(struct datalink *dl) argument
752 struct datalink *dl = (struct datalink *)v; local
781 struct datalink *dl = (struct datalink *)v; local
794 struct datalink *dl; local
874 struct datalink *dl; local
936 datalink_Destroy(struct datalink *dl) argument
963 datalink_Up(struct datalink *dl, int runscripts, int packetmode) argument
1003 datalink_Close(struct datalink *dl, int how) argument
1029 datalink_Down(struct datalink *dl, int how) argument
1052 datalink_StayDown(struct datalink *dl) argument
1060 datalink_DontHangup(struct datalink *dl) argument
1271 datalink_State(struct datalink *dl) argument
1279 datalink_NewState(struct datalink *dl, unsigned state) argument
1295 struct datalink *dl, *cdl; local
1386 datalink2iov(struct datalink *dl, struct iovec *iov, int *niov, int maxiov, int *auxfd, int *nauxfd) argument
1426 datalink_Rename(struct datalink *dl, const char *name) argument
1433 datalink_NextName(struct datalink *dl) argument
1455 datalink_SetMode(struct datalink *dl, int mode) argument
1470 datalink_GetDialTimeout(struct datalink *dl) argument
[all...]
H A Dbundle.c199 struct datalink *dl; local
220 for (dl = bundle->links; dl; dl = dl->next)
221 physical_DeleteQueue(dl->physical);
225 bundle_LinkAdded(struct bundle *bundle, struct datalink *dl) argument
227 bundle->phys_type.all |= dl->physical->type;
228 if (dl->state == DATALINK_OPEN)
229 bundle->phys_type.open |= dl
247 struct datalink *dl; local
329 struct datalink *dl; local
372 struct datalink *dl; local
395 struct datalink *dl, *this_dl; local
444 struct datalink *dl; local
454 struct datalink *dl; local
514 struct datalink *dl; local
535 struct datalink *dl; local
647 struct datalink *dl; local
910 struct datalink *dl; local
946 bundle_LinkClosed(struct bundle *bundle, struct datalink *dl) argument
987 struct datalink *dl; local
1009 struct datalink *dl; local
1024 struct datalink *dl; local
1272 bundle_DatalinkLinkout(struct bundle *bundle, struct datalink *dl) argument
1288 bundle_DatalinkLinkin(struct bundle *bundle, struct datalink *dl) argument
1322 bundle_DatalinkClone(struct bundle *bundle, struct datalink *dl, const char *name) argument
1335 bundle_DatalinkRemove(struct bundle *bundle, struct datalink *dl) argument
1386 struct datalink *dl; local
1540 bundle_SendDatalink(struct datalink *dl, int s, struct sockaddr_un *sun) argument
1671 struct datalink *dl; local
1685 bundle_SetMode(struct bundle *bundle, struct datalink *dl, int mode) argument
1726 struct datalink *dl; local
1835 struct datalink *dl; local
1848 struct datalink *dl; local
1883 struct datalink *dl; local
1942 struct datalink *dl, *choice, *otherlinkup; local
1984 struct datalink *dl; local
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/blender/
H A DTestBlenderLoader.java61 DirectionalLight dl = new DirectionalLight();
62 dl.setDirection(new Vector3f(-0.1f,-0.7f,1).normalizeLocal());
63 dl.setColor(new ColorRGBA(0.44f, 0.30f, 0.20f, 1.0f));
64 rootNode.addLight(dl);
67 dl = new DirectionalLight();
68 dl.setDirection(new Vector3f(-0.6f,-1,-0.6f).normalizeLocal());
69 dl.setColor(new ColorRGBA(0.10f, 0.22f, 0.44f, 1.0f));
70 rootNode.addLight(dl);
73 dl = new DirectionalLight();
74 dl
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-byval.cpp25 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) { argument
28 if (dl == n)
/external/chromium/base/
H A Dnative_library_linux.cc26 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY); local
27 if (!dl && error)
30 return dl;
/external/jmonkeyengine/engine/src/test/jme3test/material/
H A DTestBumpModel.java76 DirectionalLight dl = new DirectionalLight();
77 dl.setDirection(new Vector3f(-0.1f,-0.7f,1).normalizeLocal());
78 dl.setColor(new ColorRGBA(0.44f, 0.30f, 0.20f, 1.0f));
79 rootNode.addLight(dl);
82 dl = new DirectionalLight();
83 dl.setDirection(new Vector3f(-0.6f,-1,-0.6f).normalizeLocal());
84 dl.setColor(new ColorRGBA(0.10f, 0.22f, 0.44f, 1.0f));
85 rootNode.addLight(dl);
88 dl = new DirectionalLight();
89 dl
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/model/
H A DTestMonkeyHead.java73 DirectionalLight dl = new DirectionalLight();
74 dl.setDirection(new Vector3f(-0.1f,-0.7f,1).normalizeLocal());
75 dl.setColor(new ColorRGBA(0.44f, 0.30f, 0.20f, 1.0f));
76 rootNode.addLight(dl);
79 dl = new DirectionalLight();
80 dl.setDirection(new Vector3f(-0.6f,-1,-0.6f).normalizeLocal());
81 dl.setColor(new ColorRGBA(0.10f, 0.22f, 0.44f, 1.0f));
82 rootNode.addLight(dl);
85 dl = new DirectionalLight();
86 dl
[all...]
/external/elfutils/libelf/
H A Delf_hash.c58 #include <dl-hash.h>
H A Delf_strptr.c159 struct Elf_Data_List *dl = &strscn->data_list; local
160 while (dl != NULL)
162 if (offset >= (size_t) dl->data.d.d_off
163 && offset < dl->data.d.d_off + dl->data.d.d_size)
165 result = (char *) dl->data.d.d_buf + (offset - dl->data.d.d_off);
169 dl = dl->next;
H A Delf_gnu_hash.c58 #include <dl-hash.h>
/external/quake/quake/src/WinQuake/
H A Dcl_main.cpp320 dlight_t *dl; local
325 dl = cl_dlights;
326 for (i=0 ; i<MAX_DLIGHTS ; i++, dl++)
328 if (dl->key == key)
330 memset (dl, 0, sizeof(*dl));
331 dl->key = key;
332 return dl;
338 dl = cl_dlights;
339 for (i=0 ; i<MAX_DLIGHTS ; i++, dl
365 dlight_t *dl; local
450 dlight_t *dl; local
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXFrameLowering.cpp39 DebugLoc dl = DebugLoc(); local
45 MachineInstr *MI = BuildMI(MBB, MBBI, dl,
48 BuildMI(MBB, MI, dl,
52 MachineInstr *MI = BuildMI(MBB, MBBI, dl,
55 BuildMI(MBB, MI, dl,
63 BuildMI(MBB, MBBI, dl,
67 BuildMI(MBB, MBBI, dl,
/external/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp35 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); local
55 BuildMI(MBB, MBBI, dl, TII.get(SP::SAVEri), SP::O6)
61 BuildMI(MBB, MBBI, dl, TII.get(SP::SETHIi), SP::G1).addImm(OffHi);
63 BuildMI(MBB, MBBI, dl, TII.get(SP::ORri), SP::G1)
65 BuildMI(MBB, MBBI, dl, TII.get(SP::SAVErr), SP::O6)
74 DebugLoc dl = MI.getDebugLoc(); local
81 BuildMI(MBB, I, dl, TII.get(SP::ADDri), SP::O6).addReg(SP::O6).addImm(Size);
91 DebugLoc dl = MBBI->getDebugLoc(); local
94 BuildMI(MBB, MBBI, dl, TII.get(SP::RESTORErr), SP::G0).addReg(SP::G0)
H A DSparcISelLowering.cpp84 DebugLoc dl, SelectionDAG &DAG) const {
108 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
123 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
124 Chain = DAG.getCopyToReg(Chain, dl, SP::I0, Val, Flag);
137 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other,
149 DebugLoc dl, SelectionDAG &DAG,
172 SDValue Arg = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
184 SDValue HiVal = DAG.getCopyFromReg(Chain, dl, VRegHi, MVT::i32);
194 LoVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
200 LoVal = DAG.getCopyFromReg(Chain, dl, loRe
80 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, DebugLoc dl, SelectionDAG &DAG) const argument
145 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
348 DebugLoc &dl = CLI.DL; local
888 DebugLoc dl = Op.getDebugLoc(); local
909 DebugLoc dl = Op.getDebugLoc(); local
927 DebugLoc dl = Op.getDebugLoc(); local
935 DebugLoc dl = Op.getDebugLoc(); local
948 DebugLoc dl = Op.getDebugLoc(); local
978 DebugLoc dl = Op.getDebugLoc(); local
1009 DebugLoc dl = Op.getDebugLoc(); local
1026 DebugLoc dl = Node->getDebugLoc(); local
1057 DebugLoc dl = Op.getDebugLoc(); local
1074 DebugLoc dl = Op.getDebugLoc(); local
1085 DebugLoc dl = Op.getDebugLoc(); local
1116 DebugLoc dl = Op.getDebugLoc(); local
1169 DebugLoc dl = MI->getDebugLoc(); local
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/export/
H A DTestAssetLinkNode.java105 DirectionalLight dl = new DirectionalLight();
106 dl.setDirection(new Vector3f(-0.1f,-0.7f,1).normalizeLocal());
107 dl.setColor(new ColorRGBA(0.44f, 0.30f, 0.20f, 1.0f));
108 rootNode.addLight(dl);
111 dl = new DirectionalLight();
112 dl.setDirection(new Vector3f(-0.6f,-1,-0.6f).normalizeLocal());
113 dl.setColor(new ColorRGBA(0.10f, 0.22f, 0.44f, 1.0f));
114 rootNode.addLight(dl);
117 dl = new DirectionalLight();
118 dl
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreRegisterInfo.h32 unsigned DstReg, int64_t Value, DebugLoc dl) const;
36 unsigned SrcReg, int Offset, DebugLoc dl) const;
40 unsigned DstReg, int Offset, DebugLoc dl) const;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h54 SDDbgValue(MDNode *mdP, SDNode *N, unsigned R, uint64_t off, DebugLoc dl, argument
55 unsigned O) : mdPtr(mdP), Offset(off), DL(dl), Order(O),
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl, argument
65 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
71 SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) : argument
72 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
H A DLegalizeTypesGeneric.cpp44 DebugLoc dl = N->getDebugLoc(); local
54 Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
55 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
61 Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
62 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
68 Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
69 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
74 Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
75 Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
82 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, InNV
206 DebugLoc dl = N->getDebugLoc(); local
248 DebugLoc dl = N->getDebugLoc(); local
292 DebugLoc dl = N->getDebugLoc(); local
313 DebugLoc dl = N->getDebugLoc(); local
347 DebugLoc dl = N->getDebugLoc(); local
385 DebugLoc dl = N->getDebugLoc(); local
417 DebugLoc dl = N->getDebugLoc(); local
433 DebugLoc dl = N->getDebugLoc(); local
486 DebugLoc dl = N->getDebugLoc(); local
510 DebugLoc dl = N->getDebugLoc(); local
[all...]
H A DLegalizeDAG.cpp82 SDValue Idx, DebugLoc dl);
84 SDValue Idx, DebugLoc dl);
90 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
95 DebugLoc dl);
99 unsigned NumOps, bool isSigned, DebugLoc dl);
116 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl);
123 DebugLoc dl);
125 DebugLoc dl);
127 DebugLoc dl);
129 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
184 ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl, SDValue N1, SDValue N2, ArrayRef<int> Mask) const argument
250 DebugLoc dl = CFP->getDebugLoc(); local
310 DebugLoc dl = ST->getDebugLoc(); local
431 DebugLoc dl = LD->getDebugLoc(); local
572 PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) argument
615 ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) argument
654 DebugLoc dl = ST->getDebugLoc(); local
702 DebugLoc dl = Node->getDebugLoc(); local
[all...]
H A DLegalizeIntegerTypes.cpp212 DebugLoc dl = N->getDebugLoc(); local
220 return DAG.getNode(ISD::BITCAST, dl, NOutVT, GetPromotedInteger(InOp));
224 return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT, GetSoftenedFloat(InOp));
231 return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
245 InOp = DAG.getNode(ISD::ANY_EXTEND, dl,
249 return DAG.getNode(ISD::BITCAST, dl, NOutVT, InOp);
256 return DAG.getNode(ISD::BITCAST, dl, NOutVT, GetWidenedVector(InOp));
259 return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
267 DebugLoc dl = N->getDebugLoc(); local
270 return DAG.getNode(ISD::SRL, dl, NV
286 DebugLoc dl = N->getDebugLoc(); local
312 DebugLoc dl = N->getDebugLoc(); local
332 DebugLoc dl = N->getDebugLoc(); local
345 DebugLoc dl = N->getDebugLoc(); local
354 DebugLoc dl = N->getDebugLoc(); local
377 DebugLoc dl = N->getDebugLoc(); local
387 DebugLoc dl = N->getDebugLoc(); local
418 DebugLoc dl = N->getDebugLoc(); local
456 DebugLoc dl = N->getDebugLoc(); local
520 DebugLoc dl = N->getDebugLoc(); local
576 DebugLoc dl = N->getDebugLoc(); local
621 DebugLoc dl = N->getDebugLoc(); local
706 DebugLoc dl = N->getDebugLoc(); local
899 DebugLoc dl = N->getDebugLoc(); local
966 DebugLoc dl = N->getDebugLoc(); local
1026 DebugLoc dl = N->getDebugLoc(); local
1043 DebugLoc dl = N->getDebugLoc(); local
1064 DebugLoc dl = N->getDebugLoc(); local
1367 DebugLoc dl = N->getDebugLoc(); local
1454 DebugLoc dl = N->getDebugLoc(); local
1523 DebugLoc dl = N->getDebugLoc(); local
1587 DebugLoc dl = N->getDebugLoc(); local
1613 DebugLoc dl = N->getDebugLoc(); local
1638 DebugLoc dl = N->getDebugLoc(); local
1660 DebugLoc dl = N->getDebugLoc(); local
1681 DebugLoc dl = N->getDebugLoc(); local
1701 DebugLoc dl = N->getDebugLoc(); local
1718 DebugLoc dl = N->getDebugLoc(); local
1737 DebugLoc dl = N->getDebugLoc(); local
1748 DebugLoc dl = N->getDebugLoc(); local
1767 DebugLoc dl = N->getDebugLoc(); local
1778 DebugLoc dl = N->getDebugLoc(); local
1805 DebugLoc dl = N->getDebugLoc(); local
1904 DebugLoc dl = N->getDebugLoc(); local
1916 DebugLoc dl = N->getDebugLoc(); local
2007 DebugLoc dl = Node->getDebugLoc(); local
2048 DebugLoc dl = N->getDebugLoc(); local
2068 DebugLoc dl = N->getDebugLoc(); local
2168 DebugLoc dl = N->getDebugLoc(); local
2198 DebugLoc dl = N->getDebugLoc(); local
2226 DebugLoc dl = N->getDebugLoc(); local
2246 DebugLoc dl = N->getDebugLoc(); local
2258 DebugLoc dl = N->getDebugLoc(); local
2280 DebugLoc dl = N->getDebugLoc(); local
2366 DebugLoc dl = N->getDebugLoc(); local
2386 DebugLoc dl = N->getDebugLoc(); local
2406 DebugLoc dl = N->getDebugLoc(); local
2433 DebugLoc dl = N->getDebugLoc(); local
2510 IntegerExpandSetCCOperands(SDValue &NewLHS, SDValue &NewRHS, ISD::CondCode &CCCode, DebugLoc dl) argument
2704 DebugLoc dl = N->getDebugLoc(); local
2787 DebugLoc dl = N->getDebugLoc(); local
2858 DebugLoc dl = N->getDebugLoc(); local
2880 DebugLoc dl = N->getDebugLoc(); local
2905 DebugLoc dl = N->getDebugLoc(); local
2928 DebugLoc dl = N->getDebugLoc(); local
2942 DebugLoc dl = N->getDebugLoc(); local
2958 DebugLoc dl = N->getDebugLoc(); local
2994 DebugLoc dl = N->getDebugLoc(); local
3004 DebugLoc dl = N->getDebugLoc(); local
3017 DebugLoc dl = N->getDebugLoc(); local
[all...]
/external/openssl/crypto/bn/
H A Dbn_mul.c73 cl, which is the common length ( basicall, min(len(a),len(b)) ), and dl,
76 a result array as parameter, it must have the length cl+abs(dl).
82 int cl, int dl)
89 if (dl == 0)
96 if (dl < 0)
99 fprintf(stderr, " bn_sub_part_words %d + %d (dl < 0, c = %d)\n", cl, dl, c);
106 if (++dl >= 0) break;
111 if (++dl >= 0) break;
116 if (++dl >
80 bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int cl, int dl) argument
207 bn_add_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int cl, int dl) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp29 ARMSelectionDAGInfo::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, argument
66 Loads[i] = DAG.getLoad(VT, dl, Chain,
67 DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
74 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
78 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
79 DAG.getNode(ISD::ADD, dl, MVT::i32, Dst,
85 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
105 Loads[i] = DAG.getLoad(VT, dl, Chain,
106 DAG.getNode(ISD::ADD, dl, MVT::i32, Src,
115 Chain = DAG.getNode(ISD::TokenFactor, dl, MV
143 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
[all...]
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp30 X86SelectionDAGInfo::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, argument
71 DAG, dl);
123 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
129 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
133 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
137 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
144 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
150 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
152 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
158 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Ty
178 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/renderer/
H A DTestParallelProjection.java56 DirectionalLight dl = new DirectionalLight();
57 dl.setColor(ColorRGBA.White);
58 dl.setDirection(Vector3f.UNIT_XYZ.negate());
60 rootNode.addLight(dl);
/external/markdown/markdown/extensions/
H A Ddef_list.py55 if sibling and sibling.tag == 'dl':
57 dl = sibling
58 if len(dl) and dl[-1].tag == 'dd' and len(dl[-1]):
62 dl = etree.SubElement(parent, 'dl')
65 dt = etree.SubElement(dl, 'dt')
69 dd = etree.SubElement(dl, 'dd')
80 LIST_TYPES = ['dl']
[all...]

Completed in 592 milliseconds

1234567891011>>