HomeSort by relevance Sort by last modified time
    Searched full:get (Results 301 - 325 of 13186) sorted by null

<<11121314151617181920>>

  /development/pdk/docs/source/
index.jd 1 page.title=Get Involved
5 <p>Thanks for your interest in Android! Here are some ways you can get involved
22 <p>To get started, visit <a
29 out the source, pick a bug or feature, and get coding.</p>
30 <p>You can get started with by learning about the <a
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLFace.java 55 GLVertex vertex = mVertexList.get(last);
62 vertex = mVertexList.get(last);
79 GLVertex v0 = mVertexList.get(0);
80 GLVertex vn = mVertexList.get(last);
84 GLVertex v1 = mVertexList.get(i);
  /external/openssl/crypto/bn/asm/x86/
add.pl 19 &mov($r,&wparam(0)); # get r
20 &mov($a,&wparam(1)); # get a
21 &mov($b,&wparam(2)); # get b
22 &mov($num,&wparam(3)); # get num
51 &mov($num,&wparam(3)); # get num
sub.pl 19 &mov($r,&wparam(0)); # get r
20 &mov($a,&wparam(1)); # get a
21 &mov($b,&wparam(2)); # get b
22 &mov($num,&wparam(3)); # get num
51 &mov($num,&wparam(3)); # get num
  /external/webkit/LayoutTests/http/tests/appcache/
non-html.xhtml 22 req.open("GET", "/resources/network-simulator.php?command=" + (state ? "connect" : "disconnect"), false);
46 req.open("GET", "/resources/network-simulator.php?path=/appcache/resources/not-in-cache.txt", false);
54 document.getElementById('result').innerHTML = "FAILURE: Did not get the right exception"
61 req.open("GET", "/resources/network-simulator.php?path=/appcache/resources/simple.txt", false);
69 document.getElementById('result').innerHTML = "FAILURE: Did not get correct data from cached resource"
  /external/webkit/WebCore/accessibility/
AccessibilityMenuListOption.cpp 51 return m_element.get();
63 return !static_cast<HTMLOptionElement*>(m_element.get())->ownElementDisabled();
81 return static_cast<HTMLOptionElement*>(m_element.get())->selected();
89 static_cast<HTMLOptionElement*>(m_element.get())->setSelected(b);
94 return static_cast<HTMLOptionElement*>(m_element.get())->text();
  /external/webkit/WebCore/bindings/v8/
ScriptStringImpl.cpp 52 return v8StringToWebCoreString(m_handle.get());
57 return m_handle.get().IsEmpty();
62 return m_handle.get()->Length();
68 if (m_handle.get().IsEmpty())
71 m_handle.set(v8::String::Concat(m_handle.get(), v8String(s)));
  /external/webkit/WebCore/inspector/front-end/
Breakpoint.js 37 get enabled()
55 get sourceText()
66 get label()
72 get id()
77 get condition()
Database.js 38 get id()
43 get name()
53 get version()
63 get domain()
73 get displayDomain()
  /external/webkit/WebCore/page/
SecurityOriginHash.h 50 return hash(origin.get());
65 return equal(a, b.get());
69 return equal(a.get(), b);
73 return equal(a.get(), b.get());
  /external/webkit/WebCore/platform/cf/
RunLoopTimerCF.cpp 50 CFRunLoopTimerInvalidate(m_timer.get());
59 CFRunLoopAddTimer(schedulePair->runLoop(), m_timer.get(), schedulePair->mode());
66 schedule((*it).get());
73 CFRunLoopTimerInvalidate(m_timer.get());
79 return m_timer && CFRunLoopTimerIsValid(m_timer.get());
  /external/webkit/WebKitTools/QueueStatusServer/handlers/
updatestatus.py 38 def get(self): member in class:UpdateStatus
42 string_value = self.request.get(name)
58 queue_name = self.request.get("queue_name")
62 queue_status.message = self.request.get("status")
63 results_file = self.request.get("results_file")
  /frameworks/base/core/java/android/os/
RegistrantList.java 55 Registrant r = (Registrant) registrants.get(i);
70 get(int index) method in class:RegistrantList
72 return registrants.get(index);
79 Registrant r = (Registrant) registrants.get(i);
113 Registrant r = (Registrant) registrants.get(i);
  /frameworks/base/core/java/com/google/android/mms/pdu/
MultimediaMessagePdu.java 59 * Get body of the PDU.
77 * Get subject.
96 * Get To value.
115 * Get X-Mms-Priority value.
134 * Get Date value.
PduPart.java 206 * Get Content-id value.
211 return (byte[]) mPartHeader.get(P_CONTENT_ID);
224 * Get Char-set value
229 Integer charset = (Integer) mPartHeader.get(P_CHARSET);
252 * Get Content-Location value.
260 return (byte[]) mPartHeader.get(P_CONTENT_LOCATION);
281 * Get Content-Disposition value.
286 return (byte[]) mPartHeader.get(P_CONTENT_DISPOSITION);
304 * Get Content-Type value of part.
309 return (byte[]) mPartHeader.get(P_CONTENT_TYPE)
    [all...]
  /packages/apps/Camera/src/com/android/camera/gallery/
LruCache.java 69 return entry == null ? null : entry.get();
72 public synchronized V get(K key) { method in class:LruCache
74 V value = mLruMap.get(key);
76 Entry<K, V> entry = mWeakMap.get(key);
77 return entry == null ? null : entry.get();
  /packages/apps/Gallery/src/com/android/camera/gallery/
LruCache.java 65 return entry == null ? null : entry.get();
68 public synchronized V get(K key) { method in class:LruCache
70 V value = mLruMap.get(key);
72 Entry<K, V> entry = mWeakMap.get(key);
73 return entry == null ? null : entry.get();
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/
SoftReferenceTest.java 55 assertTrue("Initialization failed.", ((Boolean) sr.get())
83 assertTrue("Initialization failed.", ((Boolean) sr.get())
91 * @tests java.lang.ref.SoftReference#get()
95 notes = "Doesn't verified that get() can return null.",
96 method = "get",
102 assertTrue("Same object not returned.", bool == sr.get());
108 method = "get",
150 assertNull("get() should return null " +
151 "if OutOfMemoryError is thrown.", r.get());
161 assertNull("Object is not null.", ref.get());
    [all...]
  /development/pdk/docs/porting/
source_setup_guide.jd 43 % sudo apt-get install flex bison gperf libesd0-dev libwxgtk2.6-dev zlib1g-dev
69 % sudo apt-get install flex bison gperf libesd0-dev libwxgtk2.6-dev zlib1g-dev
77 % sudo apt-get install x-dev
78 % sudo apt-get install libx11-dev
79 % sudo apt-get install libncurses5-dev
89 % sudo apt-get install flex bison gperf libesd0-dev libwxgtk2.6-dev
91 % sudo apt-get install x-dev
92 % sudo apt-get install libx11-dev
93 % sudo apt-get install libncurses5-dev
94 % sudo apt-get install sun-java5-jd
    [all...]
  /external/webkit/WebCore/platform/mac/
GeolocationServiceMac.mm 83 [m_locationManager.get() stopUpdatingLocation];
84 m_locationManager.get().delegate = nil;
90 if (!m_locationManager.get()) {
92 m_locationManager.get().delegate = m_objcObserver.get();
95 if (!m_locationManager.get().locationServicesEnabled)
101 m_locationManager.get().desiredAccuracy = accuracy;
105 [m_locationManager.get() startUpdatingLocation];
113 [m_locationManager.get() stopUpdatingLocation];
118 [m_locationManager.get() stopUpdatingLocation]
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 72 b.get(dst, 0, dst.length);
83 value = (b.get() & 0xFF);
97 tmp = b.get() & 0xFF;
110 tmp = b.get() & 0xFF;
123 tmp = b.get() & 0xFF;
136 tmp = b.get() & 0xFF;
165 return b.get();
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form3rc.java 60 sb.append(regs.get(0).regString());
64 RegisterSpec lastReg = regs.get(size - 1);
73 sb.append(regs.get(0).regString());
128 int first = regs.get(0).getReg();
136 RegisterSpec one = regs.get(i);
165 int lastReg = regs.get(sz - 1).getNextReg();
166 firstReg = regs.get(0).getReg();
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
NetworkInterfaceTest.java 90 disallowedNames.add(((InetAddress) addresses.get(i))
92 disallowedNames.add(((InetAddress) addresses.get(i))
104 if (((String) disallowedNames.get(i)).equals(host)) {
190 !nextAddress.equals(notOkAddresses.get(i)));
201 !nextAddress.equals(notOkAddresses.get(i)));
216 if (nextAddress.equals(okAddresses.get(i))) {
227 if (nextAddress.equals(okAddresses.get(i))) {
237 // validate that we can get the interface by specifying the address.
242 "validate we cannot get the NetworkInterface with an address for which we have no privs",
245 .get(i)))
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/extensions/
ExpressionContext.java 37 * Get the current context node.
43 * Get the current context node list.
50 * Get the error listener.
56 * Get the value of a node as a number.
63 * Get the value of a node as a string.
70 * Get a variable based on it's qualified name.
82 * Get the XPathContext that owns this ExpressionContext.
  /external/guava/src/com/google/common/util/concurrent/
AbstractCheckedFuture.java 56 * Just like get but maps the exceptions into appropriate application-specific
61 return get();
78 return get(timeout, unit);
103 public V get() throws InterruptedException, ExecutionException { method in class:AbstractCheckedFuture
104 return delegate.get();
107 public V get(long timeout, TimeUnit unit) throws InterruptedException, method in class:AbstractCheckedFuture
109 return delegate.get(timeout, unit);

Completed in 156 milliseconds

<<11121314151617181920>>