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

12

/external/chromium_org/chrome/common/mac/
H A Dlaunchd.h24 Local = 2, // /Library/Launch* enumerator in enum:Launchd::Domain
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDebuggerScript.js508 case ScopeType.Local:
/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/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
H A Dp_shader_tokens.h123 unsigned Local : 1; /**< optimize as subroutine local variable? */ member in struct:tgsi_declaration
/external/chromium_org/v8/include/
H A Dv8.h102 template <class T> class Local;
186 * Local handles are light-weight and transient and typically used in
303 template<class F> friend class Local;
334 template <class T> class Local : public Handle<T> { class in namespace:v8
336 V8_INLINE Local();
337 template <class S> V8_INLINE Local(Local<S> that) function in class:v8::Local
348 template <class S> V8_INLINE static Local<T> Cast(Local<S> that) {
352 if (that.IsEmpty()) return Local<
356 template <class S> V8_INLINE Local(Handle<S> that) function in class:v8::Local
392 template <class S> V8_INLINE Local(S* that) : Handle<T>(that) { } function in class:v8::Local
5959 Local<T>::Local() : Handle<T>() { } function in class:v8::Local
[all...]
/external/chromium_org/v8/src/
H A Dd8.js85 Local: 1,
1292 case Debug.ScopeType.Local:
1293 result += 'Local';
H A Dmirror-debugger.js195 Local: 1,
1623 * 4: Local count
2251 var transient = this.scopeType() == ScopeType.Local ||
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc65 using ::v8::Local;
94 v8::Local<v8::String> profile_name =
105 static Local<Value> signature_expected_receiver;
151 Local<Context> local_env;
157 // Local context should still be live.
166 Local<Script> script = v8_compile(source);
188 static void TestSignature(const char* loop_js, Local<Value> receiver) {
219 isolate, IncrementingSignatureCallback, Local<Value>(), sig);
234 Local<Value> fun_instance = fun->InstanceTemplate()->NewInstance();
235 Local<Valu
9939 AccessControlNamedGetter( Local<String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
9946 AccessControlNamedSetter( Local<String>, Local<Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
22367 SetterWhichExpectsThisAndHolderToDiffer( Local<String>, Local<Value>, const v8::PropertyCallbackInfo<void>& info) argument
[all...]
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/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/v8/test/mjsunit/harmony/
H A Ddebug-function-scopes.js49 Local: 1,
/external/clang/include/clang/AST/
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);
H A DMangle.h75 unsigned getBlockId(const BlockDecl *BD, bool Local) { argument
77 = Local? LocalBlockIds : GlobalBlockIds;
/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/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp21 struct Local { struct
/external/clang/test/CXX/class.access/
H A Dp4.cpp317 class Local { class
/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/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp12.cpp12 struct Local { struct
25 struct Local { struct
/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/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/test/SemaCXX/
H A DMicrosoftExtensions.cpp193 class Local { class
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/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

Completed in 6116 milliseconds

12