/external/icu4c/io/ |
Makefile | 75 -include Makefile.local 78 .PHONY : all all-local install install-local clean clean-local \ 79 distclean distclean-local install-library install-headers dist \ 80 dist-local check check-local 86 all: all-local 87 install: install-local 88 clean: clean-local [all...] |
Makefile.in | 75 -include Makefile.local 78 .PHONY : all all-local install install-local clean clean-local \ 79 distclean distclean-local install-library install-headers dist \ 80 dist-local check check-local 86 all: all-local 87 install: install-local 88 clean: clean-local [all...] |
/external/icu4c/layout/ |
Makefile | 145 -include Makefile.local 148 .PHONY : all all-local install install-local clean clean-local \ 149 distclean distclean-local install-library install-headers dist \ 150 dist-local check check-local 156 all: all-local 157 install: install-local 158 clean: clean-local [all...] |
Makefile.in | 145 -include Makefile.local 148 .PHONY : all all-local install install-local clean clean-local \ 149 distclean distclean-local install-library install-headers dist \ 150 dist-local check check-local 156 all: all-local 157 install: install-local 158 clean: clean-local [all...] |
/external/icu4c/layoutex/ |
Makefile | 76 -include Makefile.local 79 .PHONY : all all-local install install-local clean clean-local \ 80 distclean distclean-local install-library install-headers dist \ 81 dist-local check check-local 87 all: all-local 88 install: install-local 89 clean: clean-local [all...] |
Makefile.in | 76 -include Makefile.local 79 .PHONY : all all-local install install-local clean clean-local \ 80 distclean distclean-local install-library install-headers dist \ 81 dist-local check check-local 87 all: all-local 88 install: install-local 89 clean: clean-local [all...] |
/external/icu4c/stubdata/ |
Makefile.in | 61 -include Makefile.local 64 .PHONY : all all-local install install-local clean clean-local \ 65 distclean distclean-local install-library dist \ 66 dist-local check check-local 72 all: all-local 73 install: install-local 74 clean: clean-local [all...] |
Makefile.org | 61 -include Makefile.local 64 .PHONY : all all-local install install-local clean clean-local \ 65 distclean distclean-local install-library dist \ 66 dist-local check check-local 72 all: all-local 73 install: install-local 74 clean: clean-local [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
LocalsArray.java | 28 * Representation of an array of local variables, with Java semantics. 76 * Sets the type stored at the given local index. If the given type 80 * local contains a category-2 value, then it too is invalidated by 83 * @param idx {@code >= 0, < getMaxLocals();} which local 84 * @param type {@code non-null;} new type for the local at {@code idx} 89 * Sets the type for the local indicated by the given register spec 99 * Invalidates the local at the given index. 101 * @param idx {@code >= 0, < getMaxLocals();} which local 106 * Gets the type stored at the given local index, or {@code null} 107 * if the given local is uninitialized / invalid [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
RegisterSpec.java | 49 /** {@code null-ok;} local variable info associated with this register, if any */ 50 private final LocalItem local; field in class:RegisterSpec 58 * @param local {@code null-ok;} the associated local variable, if any 62 LocalItem local) { 63 theInterningItem.set(reg, type, local); 97 * @param local {@code non-null;} the associated local variable 101 LocalItem local) { 102 if (local == null) 605 private LocalItem local; field in class:RegisterSpec.ForComparison [all...] |
LocalItem.java | 22 * A local variable item: either a name or a signature or both. 25 /** {@code null-ok;} local variable name */ 28 /** {@code null-ok;} local variable signature */ 36 * @param name {@code null-ok;} local variable name 37 * @param signature {@code null-ok;} local variable signature 51 * @param name {@code null-ok;} local variable name 52 * @param signature {@code null-ok;} local variable signature 66 LocalItem local = (LocalItem) other; local 68 return 0 == compareTo(local); 91 public int compareTo(LocalItem local) { [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
RegisterSpec.java | 50 * {@code null-ok;} local variable info associated with this register, 53 private final LocalItem local; field in class:RegisterSpec 61 * @param local {@code null-ok;} the associated local variable, if any 65 LocalItem local) { 67 theInterningItem.set(reg, type, local); 102 * @param local {@code non-null;} the associated local variable 106 LocalItem local) { 107 if (local == null) 612 private LocalItem local; field in class:RegisterSpec.ForComparison [all...] |
LocalItem.java | 22 * A local variable item: either a name or a signature or both. 25 /** {@code null-ok;} local variable name */ 28 /** {@code null-ok;} local variable signature */ 36 * @param name {@code null-ok;} local variable name 37 * @param signature {@code null-ok;} local variable signature 51 * @param name {@code null-ok;} local variable name 52 * @param signature {@code null-ok;} local variable signature 66 LocalItem local = (LocalItem) other; local 68 return 0 == compareTo(local); 91 public int compareTo(LocalItem local) { [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
V8EventListener.cpp | 38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext) 44 v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context) 46 v8::Local<v8::Object> listener = getListenerObject(context); 50 return v8::Local<v8::Function>(); 53 return v8::Local<v8::Function>::Cast(listener); 56 v8::Local<v8::Value> property = listener->Get(v8::String::NewSymbol("handleEvent")); 60 return v8::Local<v8::Function>::Cast(property); 63 return v8::Local<v8::Function>(); 66 v8::Local<v8::Value> V8EventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event) 69 v8::Local<v8::Function> handlerFunction = getListenerFunction(context) [all...] |
V8NPObject.h | 46 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo&); 48 v8::Handle<v8::Value> npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name); 49 v8::Handle<v8::Value> npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index); 52 v8::Handle<v8::Value> npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>, const v8::AccessorInfo&); 54 v8::Handle<v8::Value> npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value>); 55 v8::Handle<v8::Value> npObjectSetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, v8::Local<v8::Value>) [all...] |
/external/chromium/chrome/browser/chromeos/ |
plugin_selection_policy_unittest.cc | 181 FilePath("/usr/local/bin/test.so"))); 183 FilePath("/usr/local/bin/test.so"))); 185 FilePath("/usr/local/bin/test.so"))); 187 FilePath("/usr/local/bin/real.so"))); 193 FilePath("/usr/local/bin/test.so"))); 195 FilePath("/usr/local/bin/test.so"))); 197 FilePath("/usr/local/bin/test.so"))); 199 FilePath("/usr/local/bin/real.so"))); 205 FilePath("/usr/local/bin/test.so"))); 207 FilePath("/usr/local/bin/test.so"))) [all...] |
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/ |
phase1-up.sh | 4 # sa-up.sh local configuration for a new SA 6 PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin 53 LOCAL="${LOCAL_ADDR}" 57 LOCAL="${LOCAL}[${LOCAL_PORT}]" 64 -P out ipsec esp/tunnel/${LOCAL}-${REMOTE}/require; 66 -P in ipsec esp/tunnel/${REMOTE}-${LOCAL}/require; 77 -P fwd ipsec esp/tunnel/${REMOTE}-${LOCAL}/require;
|
/external/webkit/Source/JavaScriptCore/heap/ |
LocalScope.h | 30 #include "Local.h" 47 template <typename T> Local<T> release(Local<T>); // Destroys all other locals in the scope. 65 template <typename T> Local<T> LocalScope::release(Local<T> local) 67 typename Local<T>::ExternalType ptr = local.get(); 73 return Local<T>(slot, ptr);
|
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
qname.cc | 36 static int QName_Hash(const std::string & ns, const char * local) { 38 while (*local) { 40 result += *local; 41 local += 1; 53 AllocateOrFind(const std::string & ns, const char * local) { 54 int index = QName_Hash(ns, local); 60 return new QName::Data(ns, local); 62 if (qname_table[index].localPart_ == local && 72 Add(const std::string & ns, const char * local) { 73 int index = QName_Hash(ns, local); [all...] |
/external/webkit/Source/WebCore/manual-tests/ |
input-type-datetime-default-value.html | 3 <head><title>Default values for date/time input (type= date, datetime, datetime-local, month, time, week)</title></head> 13 <li>datetime-local: <input type="datetime-local" size="32" value="" /> 22 <li>datetime-local: <input type="datetime-local" size="32" value="foo" /> 31 <li>datetime-local: <input type="datetime-local" size="32" value="" step="foo" /> 40 <li>datetime-local: <input type="datetime-local" size="32" value="foo" step="foo" /> 49 <li>datetime-local: <input type="datetime-local" size="32" value="" step="any" / [all...] |
/external/bluetooth/bluez/src/ |
storage.h | 39 int write_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class); 40 int read_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t *class); 41 int write_device_name(bdaddr_t *local, bdaddr_t *peer, char *name); 43 int write_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data); 44 int read_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data); 45 int write_version_info(bdaddr_t *local, bdaddr_t *peer, uint16_t manufacturer, uint8_t lmp_ver, uint16_t lmp_subver); 46 int write_features_info(bdaddr_t *local, bdaddr_t *peer, unsigned char *page1, unsigned char *page2); 47 int read_remote_features(bdaddr_t *local, bdaddr_t *peer, unsigned char *page1, unsigned char *page2); 48 int write_lastseen_info(bdaddr_t *local, bdaddr_t *peer, struct tm *tm); 49 int write_lastused_info(bdaddr_t *local, bdaddr_t *peer, struct tm *tm) [all...] |
/external/clang/test/Analysis/ |
stack-addr-ps.cpp | 7 return s; // expected-warning{{reference to stack memory associated with local variable 's' returned}} 13 return s2; // expected-warning {{reference to stack memory associated with local variable 's1' returned}} 20 return s3; // expected-warning {{reference to stack memory associated with local variable 's1' returned}} 25 const int &get_reference1() { return get_value(); } // expected-warning {{returning reference to local temporary}} 29 return x; // expected-warning {{returning reference to local temporary}} 35 return x2; // expected-warning {{returning reference to local temporary}} 47 return &x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}} 53 return x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}} 59 return &x2; // expected-warning {{returning address of local temporary}} 70 return &x; // expected-warning {{address of stack memory associated with local variable 's1' returned} [all...] |
/external/webkit/LayoutTests/fast/cookies/ |
local-file-can-set-cookies.html | 3 <title>Local File Can Set Cookies</title> 12 description('This test checks that a local file can set cookies. See: rdar://problem/5379090 REGRESSION: Cannot set cookies for local files');
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8HTMLPlugInElementCustom.cpp | 48 static v8::Handle<v8::Value> npObjectNamedGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 55 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance()); 63 static v8::Handle<v8::Value> npObjectNamedSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 70 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance()); 77 v8::Handle<v8::Value> V8HTMLAppletElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 83 v8::Handle<v8::Value> V8HTMLEmbedElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 89 v8::Handle<v8::Value> V8HTMLObjectElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info [all...] |
/external/chromium/third_party/libevent/test/ |
test-init.c | 3 * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent
|