HomeSort by relevance Sort by last modified time
    Searched full:oname (Results 26 - 50 of 95) sorted by null

12 3 4

  /external/vulkan-validation-layers/windowsRuntimeInstaller/
InstallerRT.nsi 441 File /oname=LICENSE.txt ..\COPYRIGHT.txt
534 File /oname=${APILOWER}-$FileVersion.dll ..\build32\loader\RelWithDebInfo\${APILOWER}-${VERSION_ABI_MAJOR}.dll
535 File /oname=${APILOWER}info-$FileVersion.exe ..\build32\demos\RelWithDebInfo\${APILOWER}info.exe
542 File /oname=${APILOWER}-$FileVersion.dll ..\build\loader\RelWithDebInfo\${APILOWER}-${VERSION_ABI_MAJOR}.dll
547 File /oname=${APILOWER}info-$FileVersion.exe ..\build\demos\RelWithDebInfo\${APILOWER}info.exe
549 File /oname=${APILOWER}info.exe ..\build\demos\RelWithDebInfo\${APILOWER}info.exe
550 File /oname=${APILOWER}info32.exe ..\build32\demos\RelWithDebInfo\${APILOWER}info.exe
560 File /oname=${APILOWER}-$FileVersion.dll ..\build32\loader\RelWithDebInfo\${APILOWER}-${VERSION_ABI_MAJOR}.dll
565 File /oname=${APILOWER}info-$FileVersion.exe ..\build32\demos\RelWithDebInfo\${APILOWER}info.exe
567 File /oname=${APILOWER}info.exe ..\build32\demos\RelWithDebInfo\${APILOWER}info.ex
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
esc.go 135 if fn != nil && fn.Op == ONAME && fn.Class() == PFUNC && fn.Name.Defn != nil {
403 e.theSink.Op = ONAME
545 if ln.Op != ONAME {
571 if ln.Op == ONAME && ln.Class() == PPARAMOUT {
770 if (n.Left.Op == OIND || n.Left.Op == ODOTPTR) && n.Left.Left.Op == ONAME && // dst is ONAME dereference
772 (n.Right.Left.Op == OIND || n.Right.Left.Op == ODOTPTR) && n.Right.Left.Left.Op == ONAME && // slice is applied to ONAME dereference
773 n.Left.Left == n.Right.Left.Left { // dst and src reference the same base ONAME
777 // Otherwise base ONAME value could change between the moment
    [all...]
sinit.go 53 if n.Op != ONAME {
204 if n.Op == ONAME && n.Ninit.Len() != 0 {
259 if n.Op != ONAME || n.Class() != PEXTERN || n.Name.Defn == nil || n.Name.Defn.Op != OAS {
272 if r.Op != ONAME {
296 case ONAME:
314 case ONAME:
381 case ONAME:
592 return n.Op == ONAME && n.Addable() && n.Class() != PAUTOHEAP && n.Class() != PEXTERN
1194 case ONAME:
1351 case as.Right.Op == ONAME && as.Right.Class() == PFUNC
    [all...]
subr.go 195 case ONAME, OPACK:
306 case ONAME:
327 // newname returns a new ONAME Node associated with symbol s.
334 // newname returns a new ONAME Node associated with symbol s at position pos.
350 n.Op = ONAME
455 // ONAME, OLITERAL, OTYPE, and non-iota ONONAME leaves.
486 case ONAME, ONONAME, OLITERAL, OTYPE:
967 if n.Op == ONAME || n.Op == OLITERAL {
1128 case ONAME:
1151 case OLITERAL, ONAME, OTYPE
    [all...]
inl.go 211 if n.Op != ONAME || n.Class() != PFUNC {
273 if n.Left.Op == ONAME && n.Left.Class() == PFUNC && isRuntimePkg(n.Left.Sym.Pkg) {
388 case ONAME, OTYPE, OLITERAL:
591 } else if n.Left.Op == ONAME && n.Left.Name != nil && n.Left.Name.Defn != nil {
641 // inlinableClosure takes an OCLOSURE node and follows linkage to the matching ONAME with
653 // reassigned takes an ONAME node, walks the function in which it is defined, and returns a boolean
660 if n.Op != ONAME {
849 if ln.Op != ONAME {
1134 case ONAME:
export.go 113 case ONAME:
331 importsym(pkg, s, ONAME)
332 if asNode(s.Def) != nil && asNode(s.Def).Op == ONAME {
racewalk.go 250 case ONAME:
403 if n.Op == ONAME && n.Sym != nil && n.Sym.Name != "" {
570 case ONAME, OLITERAL:
order.go 104 case ONAME, OLITERAL:
129 case ONAME, OLITERAL:
181 return islvalue(n) && (n.Op != ONAME || n.Class() == PEXTERN || n.IsAutoTmp())
836 if r.Right.Left.Op != ONAME {
1100 if lhs == nil || lhs.Op != ONAME || instrumenting {
    [all...]
typecheck.go 145 // But re-typecheck ONAME/OTYPE/OLITERAL/OPACK node in case context has changed.
148 case ONAME, OTYPE, OLITERAL, OPACK:
162 case ONAME:
266 if n.Op == ONAME && n.Etype != 0 && top&Ecall == 0 {
299 case ONAME:
802 if l.Orig != l && l.Op == ONAME {
866 n.Op = ONAME
1180 if l.Op == ONAME && l.Etype != 0 {
1268 if n.Op == OCALLFUNC && n.Left.Op == ONAME && isRuntimePkg(n.Left.Sym.Pkg) && n.Left.Sym.Name == "getg" {
    [all...]
walk.go 30 if ln.Op == ONAME && (ln.Class() == PAUTO || ln.Class() == PAUTOHEAP) {
38 if ln.Op == ONAME && (ln.Class() == PAUTO || ln.Class() == PAUTOHEAP) && ln.Name.Defn != nil && ln.Name.Defn.Op == OTYPESW && ln.Name.Used() {
44 if ln.Op != ONAME || (ln.Class() != PAUTO && ln.Class() != PAUTOHEAP) || ln.Sym.Name[0] == '&' || ln.Name.Used() {
120 if lhs.Op == ONAME {
150 if n.Op == ONAME {
351 if n.Op == ONAME {
485 if n.Op == ONAME && n.Class() == PAUTOHEAP {
501 case OTYPE, ONAME, OLITERAL:
635 // Replace OCLOSURE with ONAME/PFUNC.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
esc.go 135 if fn != nil && fn.Op == ONAME && fn.Class() == PFUNC && fn.Name.Defn != nil {
403 e.theSink.Op = ONAME
545 if ln.Op != ONAME {
571 if ln.Op == ONAME && ln.Class() == PPARAMOUT {
770 if (n.Left.Op == OIND || n.Left.Op == ODOTPTR) && n.Left.Left.Op == ONAME && // dst is ONAME dereference
772 (n.Right.Left.Op == OIND || n.Right.Left.Op == ODOTPTR) && n.Right.Left.Left.Op == ONAME && // slice is applied to ONAME dereference
773 n.Left.Left == n.Right.Left.Left { // dst and src reference the same base ONAME
777 // Otherwise base ONAME value could change between the moment
    [all...]
sinit.go 53 if n.Op != ONAME {
204 if n.Op == ONAME && n.Ninit.Len() != 0 {
259 if n.Op != ONAME || n.Class() != PEXTERN || n.Name.Defn == nil || n.Name.Defn.Op != OAS {
272 if r.Op != ONAME {
296 case ONAME:
314 case ONAME:
381 case ONAME:
592 return n.Op == ONAME && n.Addable() && n.Class() != PAUTOHEAP && n.Class() != PEXTERN
1194 case ONAME:
1351 case as.Right.Op == ONAME && as.Right.Class() == PFUNC
    [all...]
subr.go 195 case ONAME, OPACK:
306 case ONAME:
327 // newname returns a new ONAME Node associated with symbol s.
334 // newname returns a new ONAME Node associated with symbol s at position pos.
350 n.Op = ONAME
455 // ONAME, OLITERAL, OTYPE, and non-iota ONONAME leaves.
486 case ONAME, ONONAME, OLITERAL, OTYPE:
967 if n.Op == ONAME || n.Op == OLITERAL {
1128 case ONAME:
1151 case OLITERAL, ONAME, OTYPE
    [all...]
inl.go 211 if n.Op != ONAME || n.Class() != PFUNC {
273 if n.Left.Op == ONAME && n.Left.Class() == PFUNC && isRuntimePkg(n.Left.Sym.Pkg) {
388 case ONAME, OTYPE, OLITERAL:
591 } else if n.Left.Op == ONAME && n.Left.Name != nil && n.Left.Name.Defn != nil {
641 // inlinableClosure takes an OCLOSURE node and follows linkage to the matching ONAME with
653 // reassigned takes an ONAME node, walks the function in which it is defined, and returns a boolean
660 if n.Op != ONAME {
849 if ln.Op != ONAME {
1134 case ONAME:
export.go 113 case ONAME:
331 importsym(pkg, s, ONAME)
332 if asNode(s.Def) != nil && asNode(s.Def).Op == ONAME {
racewalk.go 250 case ONAME:
403 if n.Op == ONAME && n.Sym != nil && n.Sym.Name != "" {
570 case ONAME, OLITERAL:
order.go 104 case ONAME, OLITERAL:
129 case ONAME, OLITERAL:
181 return islvalue(n) && (n.Op != ONAME || n.Class() == PEXTERN || n.IsAutoTmp())
836 if r.Right.Left.Op != ONAME {
1100 if lhs == nil || lhs.Op != ONAME || instrumenting {
    [all...]
  /external/python/cpython3/Objects/
object.c 850 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ local
851 if (!oname)
853 result = PyObject_GetAttr(v, oname);
861 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ local
862 if (!oname)
864 result = PyObject_HasAttr(v, oname);
872 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ local
873 if (!oname)
875 result = PyObject_SetAttr(v, oname, w);
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 283 String oname; local
286 oname = name.substring(0, ix);
288 oname = name;
290 oname += ".java";
291 File fout = new File(outdir, oname);
    [all...]
  /external/scapy/scapy/layers/
tftp.py 57 fields_desc = [ StrNullField("oname",""),
329 opt = [x for x in options.options if x.oname.upper() == "BLKSIZE"]
423 opt = [x for x in options.options if x.oname.upper() == "BLKSIZE"]
inet.py 280 oname, ofmt = TCPOptions[0][onum]
287 opt.append((oname, oval))
295 for oname, oval in x:
296 if isinstance(oname, str):
297 if oname == "NOP":
300 elif oname == "EOL":
303 elif oname in TCPOptions[1]:
304 onum = TCPOptions[1][oname]
313 warning("option [%s] unknown. Skipped.", oname)
316 onum = oname
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_print.c 633 const char *oname = name; local
637 return ((size_t)(name - oname) - (name > oname));
651 return ((size_t)(name - oname));
  /external/clang/test/Sema/
attr-availability.c 13 ATSFontGetName(const char *oName) __attribute__((availability(macosx,introduced=8.0,deprecated=9.0, message="use CTFontCopyFullName"))); // expected-note {{'ATSFontGetName' has been explicitly marked deprecated here}}
  /external/libjpeg-turbo/release/
libjpeg-turbo.nsi.in 49 File "/oname=libjpeg-@DLL_VERSION@.dll" "@CMAKE_BINARY_DIR@\sharedlib\libjpeg-*.dll"
  /toolchain/binutils/binutils-2.27/ld/emultempl/
aix.em 847 const char *oname;
907 oname = ".text";
913 oname = ".text";
919 oname = ".data";
925 oname = ".data";
932 oname = ".bss";
937 os = lang_output_section_find (oname);
    [all...]

Completed in 1114 milliseconds

12 3 4