HomeSort by relevance Sort by last modified time
    Searched defs:Local (Results 1 - 25 of 51) 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/chromium_org/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/chromium_org/chrome/common/mac/
launchd.h 24 Local = 2, // /Library/Launch*
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-function-scopes.js 49 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.
Code.java 47 * All data manipulation takes place in local variables. Each parameter gets its
48 * own local by default; access these using {@link #getParameter
50 * parameter; it's available as {@link #getThis getThis()}. Allocate a new local
52 * with {@link #loadConstant loadConstant()}. Copy a value from one local to
55 * <p>Every local variable has a fixed type. This is either a primitive type (of
57 * the types they operate on. Not all operations are local on all types;
62 * #op(UnaryOp,Local,Local) op(UnaryOp, Local, Local)}. Transform two value
    [all...]
  /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/chromium_org/third_party/WebKit/Source/bindings/templates/
attributes.cpp 43 {# Local variables #}
57 {# FIXME: consider always using a local variable for value #}
71 {# FIXME: use a local variable to not call getter twice #}
98 {# FIXME: merge local variable assignment with above #}
157 v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info
191 static void {{attribute.name}}ConstructorGetterCallback{{world_suffix}}(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Value>& info)
212 v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info
214 v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
221 {# Local variables #}
307 v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& inf
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 12 struct Local {
25 struct Local {
  /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 'Local' to '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 86 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}} local
88 __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}}
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 131 Local,
  /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 119 assert(0 && "Out-of bounds local preprocessed entity");
134 Local = findLocalPreprocessedEntitiesInRange(Range);
136 // Check if range spans local entities.
138 return std::make_pair(Local.first, Local.second);
143 // Check if range spans local entities.
145 return std::make_pair(Local.first, Local.second);
150 if (Local.first == Local.second
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 52 X0<&ti> x0d_addr; // expected-error {{refers to thread-local object}}
68 X2<ti> x2d_addr; // expected-error {{refers to thread-local object}}
80 struct Local { static int f() {} }; // expected-note {{here}}
81 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 69 std::vector<Symbol> Local;
  /external/clang/include/clang/AST/
ExternalASTSource.h 469 /// from an external source and partially added by local translation. The
477 SmallVector<T, LocalStorage> Local;
515 return Self->Local[Position];
522 return &Self->Local[Position];
616 return iterator(this, Local.size());
620 Local.push_back(LocalValue);
634 Local.erase(Local.begin() + From.Position, Local.begin() + To.Position);
  /external/clang/test/CXX/class.access/
p4.cpp 123 A local; // expected-error {{variable of type 'test3::A' has private destructor}} local
317 class Local {

Completed in 744 milliseconds

1 2 3