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

1 2 3

  /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...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Local.java 20 public class Local
25 public Local(int index, Type type) {
  /external/v8/test/mjsunit/
arguments-apply.js 49 function Local() {
54 assertEquals(0, Local().length);
55 assertEquals(1, Local(1).length);
56 assertEquals(2, Local(2)[0]);
57 assertEquals(2, Local(3, 4).length);
58 assertEquals(3, Local(3, 4)[0]);
59 assertEquals(4, Local(3, 4)[1]);
debug-function-scopes.js 47 Local: 1,
  /external/dexmaker/src/main/java/com/google/dexmaker/
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/v8/test/mjsunit/es6/
debug-function-scopes.js 50 Local: 1,
  /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 {
warn-unused-local-typedef.cpp 1 // RUN: %clang_cc1 -fsyntax-only -Wunused-local-typedef -verify -std=c++1y %s
76 #pragma clang diagnostic ignored "-Wunused-local-typedef"
103 struct Local {
124 // Local typedefs can be used after the scope they were in has closed:
173 // Like sneaky(), but returning pointer to local type
186 // Like sneaky(), but returning templated struct referencing local type.
242 #pragma clang diagnostic ignored "-Wunused-local-typedef"
  /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/llvm/lib/Target/WebAssembly/
WebAssemblyAsmPrinter.cpp 170 MCInst Local;
171 Local.setOpcode(WebAssembly::LOCAL);
184 Local.addOperand(MCOperand::createImm(getRegType(VReg).SimpleTy));
191 Local.addOperand(MCOperand::createImm(getRegType(PReg).SimpleTy));
195 EmitToStreamer(*OutStreamer, Local);
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 126 enum Type { File, Local, LocalDyn, Common, Dynamic, Regular };
  /prebuilts/gdb/darwin-x86/lib/python2.7/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(
115 from thread import _local as local namespace
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/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(
115 from thread import _local as local namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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(
115 from thread import _local as local namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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(
115 from thread import _local as local namespace
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ReflectionTest.java 305 class Local {}
306 class $Local$1 {}
312 assertTrue(Local.class.isLocalClass());
313 assertTrue($Local$1.class.isLocalClass());
320 class Local {}
321 class $Local$1 {}
327 assertFalse(Local.class.isAnonymousClass());
328 assertFalse($Local$1.class.isAnonymousClass());
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 117 assert(0 && "Out-of bounds local preprocessed entity");
132 Local = findLocalPreprocessedEntitiesInRange(Range);
134 // Check if range spans local entities.
136 return std::make_pair(Local.first, Local.second);
141 // Check if range spans local entities.
143 return std::make_pair(Local.first, Local.second);
148 if (Local.first == Local.second
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 55 X0<&ti> x0d_addr; // expected-error {{refers to thread-local object}}
71 X2<ti> x2d_addr; // expected-error {{refers to thread-local object}}
83 struct Local { static int f() {} }; // expected-note {{here}}
84 X1<&Local::f> x1_no_linkage; // expected-error {{non-type template argument refers to function 'f' that does not have linkage}}
  /external/llvm/include/llvm/Object/
ELFYAML.h 78 std::vector<Symbol> Local;

Completed in 689 milliseconds

1 2 3