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

1 2

  /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 14 void local() { function
17 struct Local {
18 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
  /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]);
  /external/chromium/chrome/common/
launchd_mac.h 24 Local = 2, // /Library/Launch*
  /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 63 bool Local = I->isDiscardableIfUnused();
64 if (Local)
67 if (Local || Delete)
83 bool Local = I->isDiscardableIfUnused();
84 if (Local)
87 if (Local || Delete)
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 12 struct Local {
25 struct Local {
  /external/webkit/Source/JavaScriptCore/heap/
Local.h 34 LocalScope. Use Locals for local values on the stack. It is an error to
35 create a Local outside of any LocalScope.
40 template <typename T> class Local : public Handle<T> {
47 Local(JSGlobalData&, ExternalType = ExternalType());
48 Local(JSGlobalData&, Handle<T>);
49 Local(const Local<T>&); // Adopting constructor. Used to return a Local to a calling function.
51 Local& operator=(ExternalType);
52 Local& operator=(Handle<T>)
    [all...]
  /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 134 Local,
  /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 51 X0<&ti> x0d_addr; // expected-error {{refers to thread-local object}}
67 X2<ti> x2d_addr; // expected-error {{refers to thread-local object}}
79 struct Local { static int f() {} }; // expected-note {{here}}
80 X1<&Local::f> x1_no_linkage; // expected-error {{non-type template argument refers to function 'f' that does not have linkage}}
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 187 class Local {
  /external/clang/include/clang/AST/
ExternalASTSource.h 355 /// from an external source and partially added by local translation. The
363 SmallVector<T, LocalStorage> Local;
401 return Self->Local[Position];
408 return &Self->Local[Position];
502 return iterator(this, Local.size());
506 Local.push_back(LocalValue);
520 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 {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/
DebugInstructionIterator.java 170 Local[] locals = new Local[registerCount];
199 locals[registerNum] = new Local(registerNum, name, type, null);
211 locals[registerNum] = new Local(registerNum, name, type, signature);
219 Local local = locals[registerNum]; local
220 if (local == null) {
225 local.name, local.type, local.signature)
232 Local local = locals[registerNum]; local
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 27 * - Binding - Global, Local, Weak
80 Local = 2,
279 * |length of m_Name|reserved|Symbol|Type |ELF visibility|Local|Com|Def|Dyn|Weak|
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 111 // This holds the symbol table index of the last local symbol.
906 bool Local = isLocal(*it, isSignature, Used);
907 if (!Local && MCELF::GetBinding(*it) == ELF::STB_LOCAL) {
917 assert(!Local);
    [all...]
  /external/v8/src/
d8.js 108 Local: 1,
    [all...]
mirror-debugger.js 195 Local: 1,
631 // Get the local property names.
648 // Get the local element names.
    [all...]
  /external/v8/include/
v8.h 102 template <class T> class Local;
156 * There are two types of handles: local and persistent handles.
157 * Local handles are light-weight and transient and typically used in
158 * local operations. They are managed by HandleScopes. Persistent
259 * that return objects from within v8 return them in local handles. They
260 * are created within HandleScopes, and all local handles allocated within a
262 * is not necessary to explicitly deallocate local handles.
264 template <class T> class Local : public Handle<T> {
266 inline Local();
267 template <class S> inline Local(Local<S> that
    [all...]
  /external/smack/asmack-master/lib/
jstun.jar 
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 

Completed in 1513 milliseconds

1 2