Searched defs:up (Results 1 - 25 of 148) sorted by relevance

123456

/external/libcxx/test/std/utilities/tuple/tuple.general/
H A Dtuple.smartptr.pass.cpp21 std::tuple<std::unique_ptr<char>> up; local
26 std::tuple<std::unique_ptr<char[]>> up; local
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeIterator.h44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
H A DANTLRBufferedTreeNodeStream.h63 id<ANTLRTree> up; variable
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeIterator.h44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
H A DANTLRBufferedTreeNodeStream.h63 id<ANTLRTree> up; variable
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeIterator.h44 id<ANTLRTree> up; variable
51 @property(retain, readwrite) id<ANTLRTree> up; variable
H A DANTLRBufferedTreeNodeStream.h63 id<ANTLRTree> up; variable
84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeIterator.h46 __strong id<ANTLRBaseTree> up; variable
56 @property(retain, readwrite) id<ANTLRBaseTree> up; variable
H A DANTLRBufferedTreeNodeStream.h64 id up; variable
85 @property (retain, getter=getUp, setter=setUp:) id up; variable
/external/libgsm/src/
H A Dtoast_audio.c42 static int get_u32 P2((f, up), FILE * f, unsigned long * up) argument
53 *up = (u<<8)|(unsigned char)i;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dvlan_ifconfig.c19 int ifconfig_helper(const char *if_name, int up) argument
41 if (up)
48 "for interface %s (up=%d): %s",
49 __func__, if_name, up, strerror(errno));
61 wpa_printf(MSG_DEBUG, "VLAN: Set interface %s up", if_name);
/external/wpa_supplicant_8/src/ap/
H A Dvlan_ifconfig.c19 int ifconfig_helper(const char *if_name, int up) argument
41 if (up)
48 "for interface %s (up=%d): %s",
49 __func__, if_name, up, strerror(errno));
61 wpa_printf(MSG_DEBUG, "VLAN: Set interface %s up", if_name);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dvlan_ifconfig.c19 int ifconfig_helper(const char *if_name, int up) argument
41 if (up)
48 "for interface %s (up=%d): %s",
49 __func__, if_name, up, strerror(errno));
61 wpa_printf(MSG_DEBUG, "VLAN: Set interface %s up", if_name);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs48 public object up; field in class:Antlr.Runtime.Tree.TreeIterator
67 up = adaptor.Create(TokenTypes.Up, "UP");
99 // if any queued up, use those first
115 // while we're out of siblings, keep popping back up towards root
118 nodes.Enqueue(up); // we're moving back up
/external/clang/test/OpenMP/
H A Dordered_codegen.cpp218 void foo_simd(int low, int up) { argument
222 for (int i = low; i < up; ++i) {
230 for (int i = low; i < up; ++i) {
/external/clang/test/SemaCXX/
H A Ddynamic-cast.cpp50 void up() function
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DTreeWalker.java18 abstract void up(); method in class:TreeWalker
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
H A Dauto_pointer.pass.cpp69 std::unique_ptr<A> up(std::move(ap));
70 assert(up.get() == p);
80 std::unique_ptr<A> up; local
81 up = std::move(ap);
82 assert(up.get() == p);
/external/skia/src/core/
H A DSkTypeface_remote.cpp39 auto up = this->getTypeface(); local
40 return (SkTypefaceProxy *)up;
/external/skqp/src/core/
H A DSkTypeface_remote.cpp39 auto up = this->getTypeface(); local
40 return (SkTypefaceProxy *)up;
/external/toybox/toys/lsb/
H A Dsu.c45 struct passwd *up; local
65 up = xgetpwnam(name);
66 xsetuser(up);
69 *(argv++) = TT.s ? TT.s : up->pw_shell;
79 xchdir(up->pw_dir);
83 setenv("HOME", up->pw_dir, 1);
84 setenv("SHELL", up->pw_shell, 1);
85 setenv("USER", up->pw_name, 1);
86 setenv("LOGNAME", up->pw_name, 1);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeIterator.cs51 public object up; field in class:Antlr.Runtime.Tree.TreeIterator
72 up = adaptor.Create( TokenTypes.Up, "UP" );
111 // if any queued up, use those first
136 // while we're out of siblings, keep popping back up towards root
140 nodes.Enqueue( up ); // we're moving back up
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeIterator.java48 public Object up; field in class:TreeIterator
67 up = adaptor.create(Token.UP, "UP");
94 // if any queued up, use those first
108 // while we're out of siblings, keep popping back up towards root
112 nodes.add(up); // we're moving back up
/external/python/cpython2/Mac/Modules/ae/
H A Daescan.py25 print "=== Done 'import aesupport'. It's up to you to compile AEmodule.c ===" namespace
/external/python/cpython2/Mac/Modules/res/
H A Dresscan.py24 print "=== Done 'import ressupport'. It's up to you to compile Resmodule.c ===" namespace

Completed in 563 milliseconds

123456