/external/icu4c/i18n/unicode/ |
rbtz.h | 126 * to GMT to get local time in this time zone, taking daylight savings time into 132 * and time fields are local standard time. 143 * @param millis The reference date's milliseconds in day, local standard time 145 * @return The offset in milliseconds to add to GMT to get local time. 153 * daylight savings. This is the offset to add *to* UTC to get local time. 164 * @param millis The reference date's milliseconds in day, local standard time 167 * @return The offset in milliseconds to add to GMT to get local time. 176 * in time. Upon return, local-millis = GMT-millis + rawOffset + 183 * time or local wall time, depending on `local' [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
radiusclient.conf.in | 4 # authentication is used. possible values are: "radius" and "local". 5 # if you specify "radius,local" then the RADIUS server is asked 6 # first then the local one. if only one keyword is specified only 87 # LOCAL settings 89 # program to execute for local login
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8CustomVoidCallback.cpp | 40 V8CustomVoidCallback::V8CustomVoidCallback(v8::Local<v8::Object> callback, ScriptExecutionContext *context) 71 v8::Local<v8::Function> callbackFunction; 73 callbackFunction = v8::Local<v8::Function>::New(v8::Persistent<v8::Function>::Cast(callback)); 75 v8::Local<v8::Value> handleEventFunction = callback->Get(v8::String::NewSymbol("handleEvent")); 77 callbackFunction = v8::Local<v8::Function>::Cast(handleEventFunction);
|
V8HistoryCustom.cpp | 92 bool V8History::indexedSecurityCheck(v8::Local<v8::Object> host, uint32_t index, v8::AccessType type, v8::Local<v8::Value>) 99 bool V8History::namedSecurityCheck(v8::Local<v8::Object> host, v8::Local<v8::Value> key, v8::AccessType type, v8::Local<v8::Value>)
|
/external/webkit/Source/WebKit/android/jni/ |
WebCoreJni.h | 35 // A helper class that automatically deletes the local reference to the jobject 49 // Releases the local reference to the caller. The caller *must* delete the 50 // local reference when it is done with it. 79 // Returns a local reference to a new jstring. If validOnZeroLength is true then 88 // Returns a local reference to a new jstring. If validOnZeroLength is true then
|
/external/mksh/src/ |
check.pl | 319 local($sig, $exitcode) = ('', 1); 350 local($dir) = @_; 351 local($ret, $file); 352 local(@todo) = (); 379 local($file) = @_; 380 local($ret); 403 local(*test) = @_; 404 local($name) = $test{':full-name'}; 425 local($i); 426 local($type, $perm, $rest, $c, $len, $name) [all...] |
/system/core/adb/ |
transport_local.c | 45 * local transport it is connected. The list is used to detect when we're 46 * trying to connect twice to a given local transport. 58 D("remote local: read terminated (message)\n"); 74 D("remote local: terminated (data)\n"); 97 D("remote local: write terminated\n"); 199 D("transport: local %s init\n", HOST ? "client" : "server"); 202 fatal_errno("cannot create local socket %s thread", 277 int init_socket_transport(atransport *t, int s, int adb_port, int local) 292 if (HOST && local) { 300 D("local transport for port %d already registered (%p)?\n" [all...] |
/ndk/build/tools/ |
dev-system-import.sh | 131 local RET=$(echo "$@" | tr ' ' '\n' | sed -e 's!android-!!g' | tr '\n' ' ') 152 local DIR="$1" 154 local PATTERNS="$@" 314 local funcs="`extract_shared_library_functions $1`" 315 local vars="`extract_shared_library_variables $1`" 316 local numfuncs=`echo $funcs | wc -w` 317 local numvars=`echo $vars | wc -w` 322 local func var 341 local newfuncs="`extract_shared_library_functions $TMPO`" 342 local newvars="`extract_shared_library_variables $TMPO` [all...] |
dev-platform-import.sh | 158 local DIR="$1" 160 local PATTERNS="$@" 209 local src="$ANDROID_PRODUCT_OUT/system/lib/$1.so" 214 local dst="$PLATFORM_ROOT/lib/$1.so" 220 local src="$ANDROID_PRODUCT_OUT/obj/STATIC_LIBRARIES/$1_intermediates/$1.a" 225 local dst="$PLATFORM_ROOT/lib/$1.a" 232 local src="$ANDROID_PRODUCT_OUT/obj/lib/$1.o" 237 local dst="$PLATFORM_ROOT/lib/$1.o" 248 local srcdir="$1" 250 local heade [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/common/ |
wpa_ctrl.c | 56 struct sockaddr_in local; member in struct:wpa_ctrl 62 struct sockaddr_un local; member in struct:wpa_ctrl 92 ctrl->local.sun_family = AF_UNIX; 95 ret = os_snprintf(ctrl->local.sun_path, sizeof(ctrl->local.sun_path), 102 if (ret < 0 || (size_t) ret >= sizeof(ctrl->local.sun_path)) { 108 if (bind(ctrl->s, (struct sockaddr *) &ctrl->local, 109 sizeof(ctrl->local)) < 0) { 117 unlink(ctrl->local.sun_path); 126 chmod(ctrl->local.sun_path, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP) [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ExecutionStack.java | 38 * in the local variable table 40 private final boolean[] local; field in class:ExecutionStack 56 local = new boolean[maxStack]; 69 System.arraycopy(local, 0, result.local, 0, local.length); 141 local[i] = false; 182 * Flags the next value pushed onto the stack as having local info. 187 local[stackPtr] = true; 214 * stack, returning whether or not it has local info [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
V8Proxy.h | 169 v8::Local<v8::Value> evaluate(const ScriptSourceCode&, Node*); 172 v8::Local<v8::Value> runScript(v8::Handle<v8::Script>, bool isInlineCode); 175 v8::Local<v8::Value> runScriptInternal(v8::Handle<v8::Script> script, bool inline_code); 179 v8::Local<v8::Value> callFunction(v8::Handle<v8::Function>, v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> argv[]); 182 static v8::Local<v8::Value> callFunctionWithoutFrame(v8::Handle<v8::Function>, v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> argv[]); 185 v8::Local<v8::Value> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]); 235 static v8::Local<v8::Context> context(Frame*); 236 static v8::Local<v8::Context> mainWorldContext(Frame*); 237 static v8::Local<v8::Context> currentContext(); 268 v8::Local<v8::Context> context() [all...] |
/external/libpng/contrib/gregbook/ |
Makefile.sgi | 15 # and are both installed in /usr/local/{include,lib} (as indicated by the 26 PNGINC = -I/usr/local/include/libpng12 27 PNGLIB = -L/usr/local/lib -lpng12 # dynamically linked against libpng 28 #PNGLIB = /usr/local/lib/libpng12.a # statically linked against libpng 34 ZINC = -I/usr/local/include 35 ZLIB = -L/usr/local/lib -lz # dynamically linked against zlib 36 #ZLIB = /usr/local/lib/libz.a # statically linked against zlib
|
/external/v8/test/cctest/ |
cctest.h | 182 v8::Local<v8::Context> local() { function in class:LocalContext 183 return v8::Local<v8::Context>::New(context_); 191 static inline v8::Local<v8::Value> v8_num(double x) { 196 static inline v8::Local<v8::String> v8_str(const char* x) { 201 static inline v8::Local<v8::Script> v8_compile(const char* x) { 207 static inline v8::Local<v8::Value> CompileRun(const char* source) {
|
/external/wpa_supplicant_8/src/drivers/ |
netlink.c | 100 struct sockaddr_nl local; local 116 os_memset(&local, 0, sizeof(local)); 117 local.nl_family = AF_NETLINK; 118 local.nl_groups = RTMGRP_LINK; 119 if (bind(netlink->sock, (struct sockaddr *) &local, sizeof(local)) < 0)
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
AttributesImplSerializer.java | 95 * @param local the local name of the attribute 105 String local, 111 super.addAttribute(uri, local, qname, type, val); 132 m_buff.append('{').append(uri).append('}').append(local); 155 // Add quick look-up to find with uri/local name pair 157 String local = super.getLocalName(index); local 159 m_buff.append('{').append(uri).append('}').append(local); 209 * @param localName the local namer (after the ':' ) of the attribute name.
|
/external/bluetooth/bluez/doc/ |
gtk-doc.make | 49 all-local: html-build.stamp 51 all-local: 118 clean-local: 122 distclean-local: 127 maintainer-clean-local: clean 130 install-data-local: 147 uninstall-local: 161 dist-hook: dist-check-gtkdoc dist-hook-local 173 .PHONY : dist-hook-local docs
|
/external/webkit/Source/WebCore/page/ |
SecurityOrigin.h | 93 // Returns true if this SecurityOrigin can load local resources, such 94 // as images, iframes, and style sheets, and can link to local URLs. 98 // Note: A SecurityOrigin might be allowed to load local resources 99 // without being able to issue an XMLHttpRequest for a local URL. 104 // Explicitly grant the ability to load local resources to this 131 // The local SecurityOrigin is the most privileged SecurityOrigin. 132 // The local SecurityOrigin can script any document, navigate to local 184 AllowLocalLoadsForAll, // No restriction on local loads.
|
/dalvik/dx/src/com/android/dx/ssa/ |
ConstCollector.java | 60 * If true, allow one local var to be involved with a collected const. 164 * Each collected constant can be used by just one local 209 * TODO: Might be nice to try and figure out which local 217 // Count one local usage only. 269 * the definition of {@code origReg} is associated with a local 270 * variable, then insert a mark-local for {@code newReg} just below 288 * This is a mark-local. it will be updated when all uses 294 LocalItem local = localAssignment.getLocalItem(); local 299 // Now add a mark-local to the new reg immediately after. 300 newReg = newReg.withLocalItem(local); [all...] |
/dalvik/dx/tests/087-ssa-local-vars/ |
Blort.java | 4 // A local variable assigned from an argument 29 // "ase" is an unused local which still must be preserved 47 * Checks to see that local variable assignment is preserved through
|
/dalvik/vm/compiler/ |
Ralloc.cpp | 22 * Quick & dirty - make FP usage sticky. This is strictly a hint - local 53 * Local register allocation for simple traces. Most of the work for 54 * local allocation is done on the fly. Here we do some initialization
|
/external/chromium/chrome/browser/extensions/ |
extension_data_deleter.h | 29 // A helper class that takes care of removing local storage, databases and 39 // called. Cookies are deleted on the current thread, local storage and 58 // Deletes local storage for the extension. May only be called on the webkit
|
/external/chromium/chrome/browser/notifications/ |
balloon_collection_base.cc | 36 // Use a local list of balloons to close to avoid breaking 52 // Use a local list of balloons to close to avoid breaking 67 // Use a local list of balloons to close to avoid breaking
|
/external/dbus/bus/ |
session.conf.in | 2 Add a session-local.conf and edit that rather than changing this 32 <!-- This is included last so local configuration can override what's 34 <include ignore_missing="yes">session-local.conf</include>
|
/external/icu4c/tools/genrb/ |
rbutil.c | 26 /* go from "/usr/local/include/curses.h" to "/usr/local/include" */ 41 /* go from "/usr/local/include/curses.h" to "curses" */
|