Searched defs:Local (Results 1 - 25 of 40) sorted by relevance

12

/external/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp21 struct Local { struct
/external/libunwind/doc/
H A Dlibunwind.tex64 \section{Local Unwinding}
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocal.java20 public class Local class
25 public Local(int index, Type type) { method in class:Local
/external/chromium_org/v8/test/mjsunit/
H A Darguments-apply.js49 function Local() { function
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]);
H A Ddebug-function-scopes.js47 Local: 1,
/external/chromium_org/chrome/common/mac/
H A Dlaunchd.h24 Local = 2, // /Library/Launch* enumerator in enum:Launchd::Domain
/external/chromium_org/v8/test/mjsunit/harmony/
H A Ddebug-function-scopes.js49 Local: 1,
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLocal.java24 public final class Local<T> { class
30 private Local(Code code, TypeId<T> type) { method in class:Local
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type);
/external/eigen/demos/opengl/
H A Dtrackball.h21 enum Mode {Around, Local}; enumerator in enum:Trackball::Mode
/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp29 bool Local = GV.hasLocalLinkage(); local
30 if (Local || Delete) {
32 if (Local)
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp12.cpp12 struct Local { struct
25 struct Local { struct
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dattributes.cpp38 {# Local variables #}
145 v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info member in class:v8
179 static void {{attribute.name}}ConstructorGetterCallback{{world_suffix}}(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Value>& info)
200 v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info
202 v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
209 {# Local variables #}
295 v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info member in class:v8
299 v8::Local<v8::Value> v8Value = info[0];
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp3-generic-lambda-1y.cpp46 struct Local { struct
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/
H A Dmodule-private.cpp86 __module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be declared __module_private__}} struct
/external/clang/include/clang/AST/
H A DMangle.h75 unsigned getBlockId(const BlockDecl *BD, bool Local) { argument
77 = Local? LocalBlockIds : GlobalBlockIds;
H A DExternalASTSource.h477 SmallVector<T, LocalStorage> Local; member in class:clang::LazyVector
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/temp/temp.arg/temp.arg.nontype/
H A Dp1.cpp80 struct Local { static int f() {} }; // expected-note {{here}} struct
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/
H A DELFYAML.h69 std::vector<Symbol> Local; member in struct:llvm::ELFYAML::LocalGlobalWeakSymbols
/external/chromium_org/v8/test/cctest/
H A Dtest-decls.cc57 Local<Context> context = Local<Context>::New(isolate, context_);
66 v8::Handle<Value> value = Local<Value>());
73 virtual v8::Handle<Value> Get(Local<String> key);
74 virtual v8::Handle<Value> Set(Local<String> key, Local<Value> value);
75 virtual v8::Handle<Integer> Query(Local<String> key);
85 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
91 static void HandleGet(Local<Strin
574 Check(const char* source, Expectations expectations, v8::Handle<Value> value = Local<Value>()) argument
[all...]
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp134 Local = findLocalPreprocessedEntitiesInRange(Range); local
138 return std::make_pair(Local.first, Local.second);
145 return std::make_pair(Local.first, Local.second);
150 if (Local.first == Local.second)
155 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second);
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp87 void chooseInstructionsToInstrument(SmallVectorImpl<Instruction*> &Local,
269 // 'Local' is a vector of insns within the same BB (no calls between).
272 SmallVectorImpl<Instruction*> &Local,
276 for (SmallVectorImpl<Instruction*>::reverse_iterator It = Local.rbegin(),
277 E = Local.rend(); It != E; ++It) {
296 Local.clear();
271 chooseInstructionsToInstrument( SmallVectorImpl<Instruction*> &Local, SmallVectorImpl<Instruction*> &All) argument
H A DDebugIR.cpp213 bool Local = F.hasInternalLinkage(); local
221 Sig, Local, IsDefinition, ScopeLine, FuncFlags, IsOptimized, &F);
/external/clang/test/CXX/class.access/
H A Dp4.cpp317 class Local { class
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDebuggerScript.js508 case ScopeType.Local:
/external/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp193 class Local { class

Completed in 634 milliseconds

12