HomeSort by relevance Sort by last modified time
    Searched defs:Local (Results 26 - 50 of 67) sorted by null

12 3

  /external/v8/src/debug/
debug-evaluate.cc 47 MaybeHandle<Object> DebugEvaluate::Local(Isolate* isolate,
mirrors.js 260 Local: 1,
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 28 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, v8::Local<v8::Value> pValue, Type t)
52 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, v8::Local<v8::Object> pJsObj)
86 void CJS_Value::Attach(v8::Local<v8::Value> pValue, Type t) {
97 m_pValue = v8::Local<v8::Value>();
121 v8::Local<v8::Object> pObj =
126 v8::Local<v8::Object> CJS_Value::ToV8Object() const {
138 v8::Local<v8::Value> CJS_Value::ToV8Value() const {
142 v8::Local<v8::Array> CJS_Value::ToV8Array() const {
144 return v8::Local<v8::Array>::Cast(
146 return v8::Local<v8::Array>()
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
local.py 3 webapp2_extras.local
6 This module implements thread-local utilities.
8 This implementation comes from werkzeug.local.
38 class Local(object):
39 """A container for thread-local objects.
94 """Acts as a proxy for a local object.
102 from webapp2_extras import Local
103 l = Local()
113 To create proxies to :class:`Local` object, call the object as shown above.
122 def __init__(self, local, name=None)
    [all...]
  /external/clang/include/clang/AST/
ExternalASTSource.h 479 /// from an external source and partially added by local translation. The
487 SmallVector<T, LocalStorage> Local;
522 return Self->Local.begin()[this->I];
536 return iterator(this, Local.size());
540 Local.push_back(LocalValue);
554 Local.erase(&*From, &*To);
  /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/opencv3/modules/core/include/opencv2/core/
ocl.hpp 305 enum { LOCAL=1, READ_ONLY=2, WRITE_ONLY=4, READ_WRITE=6, CONSTANT=8, PTR_ONLY = 16, NO_SIZE=256 };
309 static KernelArg Local() { return KernelArg(LOCAL, 0); }
  /external/avahi/avahi-sharp/
Client.cs 108 Local = 8,
  /external/dexmaker/src/main/java/com/google/dexmaker/
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/pdfium/xfa/src/fxjse/src/
value.cpp 246 v8::Local<v8::String> hMessage = v8::String::NewFromUtf8(
249 v8::Local<v8::Value> hError;
276 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
323 v8::Local<v8::Value> hValue = v8::Number::New(m_pIsolate, FXJSE_ftod(fFloat));
329 v8::Local<v8::FunctionTemplate> hClass =
330 v8::Local<v8::FunctionTemplate>::New(m_pIsolate, lpClass->m_hTemplate);
331 v8::Local<v8::Object> hObject = hClass->InstanceTemplate()->NewInstance();
337 v8::Local<v8::Array> hArrayObject = v8::Array::New(m_pIsolate, uValueCount);
341 hArrayObject->Set(i, v8::Local<v8::Value>::New(
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 25 * - Binding - Global, Local, Weak
70 enum Binding { Global = 0, Weak = 1, Local = 2, Absolute = 3, NoneBinding };
188 // shouldForceLocal - check if this symbol should be forced to local
266 * visibility|Local|Com|Def|Dyn|Weak|
  /external/guava/guava-tests/test/com/google/common/reflect/
InvokableTest.java 452 class Local {}
453 Constructor<?> constructor = Local.class.getDeclaredConstructors() [0];
464 class Local {}
465 Constructor<?> constructor = Local.class.getDeclaredConstructors() [0];
475 * This class demonstrates a bug in getParameters() when the local class is inside static
480 class Local {
482 Local(LocalClassWithSeeminglyHiddenThisInStaticInitializer outer) {}
484 Constructor<?> constructor = Local.class.getDeclaredConstructors() [0];
TypeTokenTest.java 93 class Local<T> {}
94 TypeToken<Local<String>> type = new TypeToken<Local<String>>() {};
95 assertEquals(Types.newParameterizedType(Local.class, String.class),
97 assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType());
105 class Local<T> {}
106 TypeToken<Local<String>> type = new TypeToken<Local<String>>() {};
107 assertEquals(Types.newParameterizedType(Local.class, String.class),
109 assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType())
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 328 /// Is this a local edge within the loop, an exit from the loop, or a
331 enum DistType { Local, Exit, Backedge };
335 Weight() : Type(Local), Amount(0) {}
356 add(Node, Amount, Weight::Local);
401 /// edge is local/exit/backedge is in the context of LoopHead. Otherwise,
402 /// every edge should be a local edge (since all the loops are packaged up).
539 /// During the block frequency algorithm, the local graphs are defined in a
704 /// - Each successor is categorized as \a Weight::Local, a local edge
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 258 Local,
  /external/mesa3d/src/gallium/include/pipe/
p_shader_tokens.h 123 unsigned Local : 1; /**< optimize as subroutine local variable? */
192 * GLOBAL/LOCAL/PRIVATE/INPUT compute memory spaces.
556 * register that follows. The register can be now fetched into local storage
  /external/opencv3/3rdparty/include/opencl/1.2/CL/
cl.hpp     [all...]
  /external/v8/include/
v8.h 111 template <class T> class Local;
202 * There are two types of handles: local and persistent handles.
203 * Local handles are light-weight and transient and typically used in
204 * local operations. They are managed by HandleScopes. Persistent
211 * a Local<Object>); the value will still be governed by a handle
216 class Local {
218 V8_INLINE Local() : val_(0) {}
220 V8_INLINE Local(Local<S> that)
224 * handles. For example, converting from a Local<String> to
    [all...]
  /external/guice/lib/build/
cglib-3.1.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 
cglib-nodep-2.2.3.jar 
  /external/guice/extensions/persist/lib/
cglib-nodep-3.0.jar 
  /prebuilts/devtools/tools/lib/
cglib-nodep-3.1.jar 

Completed in 360 milliseconds

12 3