HomeSort by relevance Sort by last modified time
    Searched full:local (Results 426 - 450 of 8806) sorted by null

<<11121314151617181920>>

  /frameworks/base/tests/BiDiTests/res/layout/
canvas2.xml 23 xmlns:local="http://schemas.android.com/apk/res/com.android.bidi"
36 local:text="@string/ltr"
48 local:text="@string/rtl"
60 local:text="@string/composing"
  /frameworks/compile/libbcc/
libbcc-gen-config-from-mk.mk 2 intermediates := $(local-intermediates-dir)
  /libcore/luni/src/main/java/java/util/
PropertyResourceBundle.java 82 Enumeration<String> local = getLocalKeys();
103 if (local.hasMoreElements()) {
110 if (local.hasMoreElements()) {
111 return local.nextElement();
  /ndk/tests/device/whole-static-libs/jni/
main.c 13 lib = dlopen("/data/local/ndk-tests/libbar.so", RTLD_NOW);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
debugreg.h 44 enabled. There are 4 fields of two bits. One bit is "local", meaning
50 #define DR_LOCAL_ENABLE_SHIFT 0 /* Extra shift to the local enable bit */
54 #define DR_LOCAL_ENABLE_MASK (0x55) /* Set local bits for all 4 regs */
67 #define DR_LOCAL_SLOWDOWN (0x100) /* Local slow the pipeline */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
netfilter_bridge.h 19 /* Packets coming from a local process. */
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/
crtbeginS.o 
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
if_pppolac.h 26 } local, remote; member in struct:sockaddr_pppolac
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
if_pppolac.h 26 } local, remote; member in struct:sockaddr_pppolac
  /prebuilt/sdk/11/renderscript/include/
rs_time.rsh 22 rsLocaltime(rs_tm *local, const rs_time_t *timer);
  /prebuilt/sdk/12/renderscript/include/
rs_time.rsh 22 rsLocaltime(rs_tm *local, const rs_time_t *timer);
  /prebuilt/sdk/13/renderscript/include/
rs_time.rsh 22 rsLocaltime(rs_tm *local, const rs_time_t *timer);
  /external/webkit/Source/WebCore/bindings/v8/
V8NPObject.cpp 177 static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key)
207 v8::Local<v8::FunctionTemplate> temp = v8::FunctionTemplate::New();
214 v8::Local<v8::Function> v8Function = functionTemplate->GetFunction();
222 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
234 v8::Handle<v8::Value> npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name)
240 v8::Handle<v8::Value> npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index)
246 v8::Handle<v8::Integer> npObjectQueryProperty(v8::Local<v8::String> name, const v8::AccessorInfo& info)
252 static v8::Handle<v8::Value> npObjectSetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> value
    [all...]
V8Proxy.cpp 234 v8::Local<v8::Context> context = v8::Context::GetCurrent();
299 v8::Local<v8::Context> context = v8::Local<v8::Context>::New(isolatedContext->context());
354 v8::Local<v8::Value> V8Proxy::evaluate(const ScriptSourceCode& source, Node* node)
362 v8::Local<v8::Value> result;
372 v8::Local<v8::String> code = v8ExternalString(source.source());
400 v8::Local<v8::Value> V8Proxy::runScript(v8::Handle<v8::Script> script, bool isInlineCode)
404 v8::Local<v8::Value> result = runScriptInternal(script, isInlineCode);
409 v8::Local<v8::Value> V8Proxy::runScriptInternal(v8::Handle<v8::Script> script, bool isInlineCode)
418 v8::Local<v8::String> code = v8ExternalString("throw RangeError('Recursion too deep')")
    [all...]
ScriptDebugServer.cpp 66 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
69 v8::Local<v8::Object> args = v8::Object::New();
75 v8::Handle<v8::Function> setBreakpointFunction = v8::Local<v8::Function>::Cast(m_debuggerScript.get()->Get(v8::String::New("setBreakpoint")));
87 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
90 v8::Local<v8::Object> args = v8::Object::New();
93 v8::Handle<v8::Function> removeBreakpointFunction = v8::Local<v8::Function>::Cast(m_debuggerScript.get()->Get(v8::String::New("removeBreakpoint")));
101 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
104 v8::Handle<v8::Function> clearBreakpoints = v8::Local<v8::Function>::Cast(m_debuggerScript.get()->Get(v8::String::New("clearBreakpoints")));
112 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
115 v8::Local<v8::Object> args = v8::Object::New()
    [all...]
V8AbstractEventListener.cpp 67 v8::Local<v8::Object> listener = v8::Local<v8::Object>::New(m_listener);
89 // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
95 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
137 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
143 v8::Local<v8::Value> returnValue;
155 v8::Local<v8::Value> savedEvent = v8Context->Global()->GetHiddenValue(eventSymbol);
200 v8::Local<v8::Object> V8AbstractEventListener::getReceiverObject(Event* event)
203 return v8::Local<v8::Object>::New(m_listener);
208 return v8::Local<v8::Object>()
    [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/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 465 local PROG
482 local SRCDIR="$1"
483 local DSTDIR="$2"
547 local URL="$1"
548 local DIR="$2"
549 local DST="$DIR/`basename $URL`"
561 local ARCHIVE="$1"
562 local SRCDIR="$2"
563 local SRCFILES
564 local TARFLAGS ZIPFLAG
    [all...]
  /external/bluetooth/bluez/src/
storage.c 288 int write_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class)
292 create_filename(filename, PATH_MAX, local, "classes");
302 int read_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t *class)
306 create_filename(filename, PATH_MAX, local, "classes");
324 int write_device_name(bdaddr_t *local, bdaddr_t *peer, char *name)
336 create_filename(filename, PATH_MAX, local, "names");
365 int write_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data)
374 create_filename(filename, PATH_MAX, local, "eir");
382 int read_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data)
387 create_filename(filename, PATH_MAX, local, "eir")
    [all...]
  /libcore/luni/src/main/java/javax/xml/namespace/
QName.java 40 * URI</strong>, <strong>local part</strong> and
49 * <strong><em>only</em></strong> the Namespace URI and local part.</p>
102 * <p>local part of this <code>QName</code>.</p>
118 * and local part.</p>
131 * <p>If the local part is <code>null</code> an
133 * A local part of "" is allowed to preserve
142 * The local part is not validated as a
148 * @param localPart local part of the <code>QName</code>
160 * local part and prefix.</p>
173 * <p>If the local part is <code>null</code> a
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalVariableList.java 25 * List of "local variable" entries, which are the contents of
143 * @param index {@code >= 0;} the variable's local index
151 * Gets the local variable information in this instance which matches
155 * @param item {@code non-null;} local variable information to match
156 * @return {@code null-ok;} the corresponding local variable information stored
175 * Gets the local variable information associated with a given address
176 * and local index, if any. <b>Note:</b> In standard classfiles, a
181 * @param index {@code >= 0;} the local variable index
182 * @return {@code null-ok;} the associated local variable information, or
200 * Item in a local variable table
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
IDBBindingUtilitiesTest.cpp 117 v8::Local<v8::Object> object = v8::Object::New();
130 v8::Local<v8::Object> object = v8::Object::New();
143 v8::Local<v8::Array> array = v8::Array::New();
156 v8::Local<v8::Object> object = v8::Object::New();
157 v8::Local<v8::Object> subProperty = v8::Object::New();
171 v8::Local<v8::Object> object = v8::Object::New();
172 v8::Local<v8::Array> array = v8::Array::New();
173 v8::Local<v8::Array> subArray = v8::Array::New();
188 v8::Local<v8::Object> object = v8::Object::New();
201 v8::Local<v8::Array> array = v8::Array::New()
    [all...]
  /system/core/adb/
SERVICES.TXT 54 host:transport-local
75 host-local:<request>
94 <host-prefix>:forward:<local>;<remote>
95 Asks the ADB server to forward local connections from <local>
99 host-serial/host-usb/host-local/host prefixes as described previously
102 the format of <local> is one of:
105 local:<path> -> Unix local domain socket on <path>
110 local:<path> -> Unix local domain socket on devic
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 19 * Represents the stack frame and local variable table at a particular point in time.
31 * Create a new frame with the specified local variable table size, and max stack size
33 * @param locals the number of local variable table entries
42 * Returns the local varaible table entry at index.
52 * Sets the local variable table entry at index to a type.
102 * Returns the number of local variable table entries, specified
105 * @return the number of local variable table entries
159 * Makes a shallow copy of the stack portion of this frame. The local
173 * The local variable table is left untouched.
202 * Merges all types on the stack and local variable table of this frame with that of the specifie
    [all...]
  /external/bluetooth/glib/gio/
glocalfile.c 131 GLocalFile *local; local
133 local = G_LOCAL_FILE (object);
135 g_free (local->filename);
224 g_local_file_init (GLocalFile *local)
327 * Returns: new local #GFile.
332 GLocalFile *local; local
334 local = g_object_new (G_TYPE_LOCAL_FILE, NULL);
335 local->filename = canonicalize_filename (filename);
337 return G_FILE (local);
483 GLocalFile *local = G_LOCAL_FILE (file) local
502 GLocalFile *local = G_LOCAL_FILE (file); local
510 GLocalFile *local = G_LOCAL_FILE (file); local
577 GLocalFile *local = G_LOCAL_FILE (file); local
598 GLocalFile *local = G_LOCAL_FILE (file); local
942 GLocalFile *local = G_LOCAL_FILE (file); local
1071 GLocalFile *local = G_LOCAL_FILE (file); local
1116 GLocalFile *local, *new_local; local
1188 GLocalFile *local = G_LOCAL_FILE (file); local
1238 GLocalFile *local = G_LOCAL_FILE (file); local
1256 GLocalFile *local = G_LOCAL_FILE (file); local
1280 GLocalFile *local = G_LOCAL_FILE (file); local
1347 GLocalFile *local = G_LOCAL_FILE (file); local
1705 GLocalFile *local = G_LOCAL_FILE (file); local
1988 GLocalFile *local = G_LOCAL_FILE (file); local
2031 GLocalFile *local = G_LOCAL_FILE (file); local
2060 GLocalFile *local = G_LOCAL_FILE (file); local
    [all...]

Completed in 1730 milliseconds

<<11121314151617181920>>