HomeSort by relevance Sort by last modified time
    Searched defs:Local (Results 1 - 25 of 214) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
nested-struct.cpp 15 struct Local {
22 i = Local::my_number();
  /external/clang/test/CXX/class.access/class.friend/
p6.cpp 18 void local() { function
21 struct Local {
22 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
  /external/libunwind/doc/
libunwind.tex 64 \section{Local Unwinding}
67 within a running program. This is called \emph{local} unwinding. Say
121 useful for implementing non-local gotos and the exception handling
127 Normally, \Prog{libunwind} supports both local and remote unwinding
129 tell libunwind that your program only needs local unwinding, then a
135 employ both local-only and generic unwinding. That is, whether or not
195 unwinding works exactly like in the local case. That is, you can use
229 Note that, by definition, local unwinding is possible only for the
248 any routine that may be needed for \emph{local} unwinding is
249 signal-safe (e.g., \Func{unw\_step}() for local unwinding i
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
counting_includer.h 38 Local, // Only do " " include search
54 // Like includeSystem, but for "local" include search.
60 IncludeType::Local, include_depth);
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Local.java 24 public final class Local<T> {
30 private Local(Code code, TypeId<T> type) {
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type);
40 * Assigns registers to this local.
51 * Returns the number of registered required to hold this local.
  /external/eigen/demos/opengl/
trackball.h 21 enum Mode {Around, Local};
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 29 bool Local = GV.hasLocalLinkage();
30 if (Local || Delete) {
32 if (Local)
  /external/llvm/unittests/ADT/
PointerSumTypeTest.cpp 93 float Local = 1.616f;
94 b = SumType::create<Float>(&Local);
95 EXPECT_EQ(&Local, b.get<Float>());
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 12 struct Local {
25 struct Local {
  /external/clang/test/SemaCXX/
ms-friend-lookup.cpp 97 class Local {
  /frameworks/native/libs/vr/libpdx/private/pdx/
channel_handle.h 11 Local,
68 class ChannelHandle<ChannelHandleMode::Local> : public ChannelHandleBase {
111 using LocalChannelHandle = ChannelHandle<ChannelHandleMode::Local>;
116 // transferred across processes. You can convert this value to a local channel
file_handle.h 13 Local,
54 if (Mode == FileHandleMode::Local)
81 if (IsValid() && Mode == FileHandleMode::Local)
97 return FileHandle(Mode == FileHandleMode::Local ? dup(fd_) : fd_);
116 // Alias for a file handle in the local process' handle space.
117 using LocalHandle = FileHandle<FileHandleMode::Local>;
123 // so would close an unrelated file descriptor in the local handle space.
126 // Alias for borrowed handles in the local process' handle space. A borrowed
133 // transferred across processes. You can convert this value to a local file
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpDispatcher.c 238 EFI_IP_ADDRESS Local;
243 IP4_COPY_ADDRESS (&Local, &TcpAp->Tcp4Ap.StationAddress);
247 IP6_COPY_ADDRESS (&Local, &TcpAp->Tcp6Ap.StationAddress);
256 if (TcpFindTcbByPeer (&Local, *Port, IpVersion)) {
272 while (TcpFindTcbByPeer (&Local, *RandomPort, IpVersion)) {
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3-generic-lambda-1y.cpp 46 struct Local {
50 static Local localfi(int) { return Local{}; }
52 auto l4 = [](auto (*fp)(int)) -> int { return fp(3); }; //expected-error{{no viable conversion from returned value of type 'Local' to function return type 'int'}}
53 l4(&Local::ifi);
54 l4(&Local::cfi);
55 l4(&Local::dfi);
56 l4(&Local::localfi); //expected-note{{in instantiation of function template specialization}}
  /external/clang/test/Modules/
module-private.cpp 82 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}} local
84 __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}}
  /external/python/cpython2/Doc/includes/
tzinfo-examples.py 42 # A class capturing the platform's idea of local time.
79 Local = LocalTimezone()
  /external/python/cpython3/Doc/includes/
tzinfo-examples.py 7 # A class capturing the platform's idea of local time.
56 Local = LocalTimezone()
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/MCTargetDesc/
PTXBaseInfo.h 27 Local = 2,
  /prebuilts/go/darwin-x86/src/time/
zoneinfo.go 66 // Local represents the system's local time zone.
67 var Local *Location = &localLoc
70 // it even if a client has changed Local.
268 // If the name is "Local", LoadLocation returns Local.
283 if name == "Local" {
284 return Local, nil
  /prebuilts/go/linux-x86/src/time/
zoneinfo.go 66 // Local represents the system's local time zone.
67 var Local *Location = &localLoc
70 // it even if a client has changed Local.
268 // If the name is "Local", LoadLocation returns Local.
283 if name == "Local" {
284 return Local, nil
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading_local.py 16 def target(local, weaklist):
18 local.weak = weak
29 local = self._local()
32 t = threading.Thread(target=target, args=(local, weaklist))
40 # XXX _threading_local keeps the local of the last stopped thread alive.
44 # Assignment to the same thread local frees it sometimes (!)
45 local.someothervar = None
52 # of a threading.local derived class, the per-thread dictionary
56 class Local(self._local):
59 local = Local()
    [all...]
  /external/python/cpython2/Lib/test/
test_threading_local.py 16 def target(local, weaklist):
18 local.weak = weak
29 local = self._local()
32 t = threading.Thread(target=target, args=(local, weaklist))
40 # XXX _threading_local keeps the local of the last stopped thread alive.
44 # Assignment to the same thread local frees it sometimes (!)
45 local.someothervar = None
52 # of a threading.local derived class, the per-thread dictionary
56 class Local(self._local):
59 local = Local(
    [all...]
  /external/python/cpython3/Lib/test/
test_threading_local.py 16 def target(local, weaklist):
18 local.weak = weak
30 local = self._local()
33 t = threading.Thread(target=target, args=(local, weaklist))
41 # XXX _threading_local keeps the local of the last stopped thread alive.
45 # Assignment to the same thread local frees it sometimes (!)
46 local.someothervar = None
53 # of a threading.local derived class, the per-thread dictionary
57 class Local(self._local):
60 local = Local(
    [all...]
  /external/v8/src/debug/
debug-evaluate.cc 47 MaybeHandle<Object> DebugEvaluate::Local(Isolate* isolate,
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 126 enum Type { File, Local, LocalDyn, Common, Dynamic, Regular };

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 9