| /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*
|
| /dalvik/dx/src/com/android/dx/gen/ |
| Local.java | 24 public final class Local<T> { 30 private Local(Code code, Type<T> type) { 35 static <T> Local<T> get(Code code, Type<T> type) { 36 return new Local<T>(code, type); 40 * Assigns registers to this local.
|
| Code.java | 63 private final Local<?> thisLocal; 64 private final List<Local<?>> parameters = new ArrayList<Local<?>>(); 65 private final List<Local<?>> locals = new ArrayList<Local<?>>(); 75 : Local.get(this, method.declaringType); 77 parameters.add(Local.get(this, parameter)); 83 public <T> Local<T> newLocal(Type<T> type) { 87 Local<T> result = Local.get(this, type) [all...] |
| /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/llvm/lib/Target/PTX/MCTargetDesc/ |
| PTXBaseInfo.h | 27 Local = 2,
|
| /external/clang/lib/Lex/ |
| PreprocessingRecord.cpp | 56 Local = findLocalPreprocessedEntitiesInRange(Range); 58 // Check if range spans local entities. 60 return std::make_pair(iterator(this, Local.first), 61 iterator(this, Local.second)); 66 // Check if range spans local entities. 68 return std::make_pair(iterator(this, Local.first), 69 iterator(this, Local.second)); 74 if (Local.first == Local.second) 78 // Range spands loaded and local entities [all...] |
| /external/clang/test/Modules/ |
| module-private.cpp | 126 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}} local 128 __module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be declared __module_private__}}
|
| /external/clang/include/clang/AST/ |
| ExternalASTSource.h | 292 /// from an external source and partially added by local translation. The 300 SmallVector<T, LocalStorage> Local; 338 return Self->Local[Position]; 345 return &Self->Local[Position]; 439 return iterator(this, Local.size()); 443 Local.push_back(LocalValue); 457 Local.erase(Local.begin() + From.Position, Local.begin() + To.Position);
|
| /external/clang/test/SemaCXX/ |
| MicrosoftExtensions.cpp | 197 class Local {
|
| /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/llvm/lib/MC/ |
| ELFObjectWriter.cpp | 595 bool Local = isLocal(*it, isSignature, Used); 596 if (!Local && MCELF::GetBinding(*it) == ELF::STB_LOCAL) { 606 assert(!Local); 646 else if (Local) 657 // Set the symbol indices. Local symbols must come before all other 658 // symbols with non-local bindings. [all...] |
| /external/v8/src/ |
| d8.js | 103 Local: 1, [all...] |
| mirror-debugger.js | 194 Local: 1, 629 // Get the local property names. 646 // Get the local element names. [all...] |
| /external/v8/include/ |
| v8.h | 99 template <class T> class Local; 153 * There are two types of handles: local and persistent handles. 154 * Local handles are light-weight and transient and typically used in 155 * local operations. They are managed by HandleScopes. Persistent 257 * that return objects from within v8 return them in local handles. They 258 * are created within HandleScopes, and all local handles allocated within a 260 * is not necessary to explicitly deallocate local handles. 262 template <class T> class Local : public Handle<T> { 264 inline Local(); 265 template <class S> inline Local(Local<S> that [all...] |
| /prebuilt/sdk/tools/lib/ |
| dx.jar | |