/dalvik/dx/src/com/android/dx/dex/code/ |
DalvInsn.java | 218 int resultRequirement = hasResult ? registers.get(0).getCategory() : 0; 222 sourceRequirement += registers.get(i).getCategory(); 262 RegisterSpec r = registers.get(0);
|
/dalvik/tests/074-gc-thrash/src/ |
Main.java | 146 * Sleeps briefly, allowing other threads some CPU time to get started. 223 if (strong[i] != weak[i].get()) { 225 ", weak=" + weak[i].get()); 238 if (weak[i].get() != null) {
|
/development/samples/NotePad/src/com/example/android/notepad/ |
NotePadProvider.java | 110 qb.appendWhere(NoteColumns._ID + "=" + uri.getPathSegments().get(1)); 129 // Get the database and run the query 208 String noteId = uri.getPathSegments().get(1); 231 String noteId = uri.getPathSegments().get(1);
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
WeakHashtable.java | 36 * good liveliness for <code>get</code> and <code>put</code>. Various tradeoffs 67 * component's classes get garbage-collected. However there's still a 176 public Object get(Object key) { method in class:WeakHashtable 179 return super.get(referenceKey); 423 return reference.get();
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
CertPathValidatorUtilities.java | 304 if (list.get(0).equals(Integer.valueOf(GeneralName.uniformResourceIdentifier))) 308 String temp = (String) list.get(1); 583 PKIXPolicyNode node = (PKIXPolicyNode)policyNodeVec.get(j); 618 PKIXPolicyNode _node = (PKIXPolicyNode)policyNodeVec.get(j); 655 node.expectedPolicies = (Set)m_idp.get(id_p); 718 (Set)m_idp.get(id_p), 749 PKIXPolicyNode node2 = (PKIXPolicyNode)nodes.get(l); [all...] |
/external/chromium/base/ |
histogram.cc | 34 DCHECK(histogram.get() != NULL); 40 if (registered_histogram.get() != NULL && 41 registered_histogram.get() != histogram.get()) 118 // Get local (stack) copies of all effectively volatile class data so that we 210 // (effectively making one bucket get no values). We need to avoid: 213 // until we get a ratio that moves us along at least 2 units at a time. From 265 // Use the actual bucket widths (like a linear histogram) until the widths get 267 // get so big so fast (and we don't expect to see a lot of entries in the large 588 DCHECK(histogram.get() != NULL) [all...] |
worker_pool_linux_unittest.cc | 31 return pool_->num_idle_threads_cv_.get(); 52 // PostTask() calls get invoked. 127 peer_(pool_.get()), 139 if (pool_.get()) pool_->Terminate();
|
/external/chromium/net/disk_cache/ |
file_win.cc | 57 context_.handler = Singleton<CompletionHandler>::get(); 95 platform_file_, Singleton<CompletionHandler>::get()); 282 MessageLoopForIO::IOHandler* handler = Singleton<CompletionHandler>::get();
|
/external/chromium/net/socket_stream/ |
socket_stream.h | 107 URLRequestContext* context() const { return context_.get(); } 163 void SetDataOffset(size_t offset) { data_ = headers_.get() + offset; } 164 char* headers() const { return headers_.get(); }
|
socket_stream_unittest.cc | 184 delegate->SetOnConnected(NewCallback(delegate.get(), 190 NewCallback(delegate.get(), 194 new SocketStream(GURL("ws://example.com/demo"), delegate.get());
|
/external/emma/core/java12/com/vladium/emma/data/ |
MethodDescriptor.java | 145 IntSet blockIDs = (IntSet) lineMap.get (line); 162 final int [] blockIDs = ((IntSet) lineMap.get (line)).values (); 219 final int [] blocks = (int []) m_lineMap.get (lines [l]);
|
/external/emma/core/java12/com/vladium/emma/report/ |
SrcFileItem.java | 165 int [] data = (int []) fldata.get (mline); 172 final int [] lblocks = (int []) mlineMap.get (mline); 210 final int [] data = (int []) fldata.get (cline);
|
/external/guava/src/com/google/common/collect/ |
RegularImmutableList.java | 86 public E get(int index) { method in class:RegularImmutableList 148 result = get(index); 158 result = get(index - 1);
|
/external/libvpx/vp8/encoder/x86/ |
sad_ssse3.asm | 195 pop rcx ; get the address of do_jump 197 add rax, rcx ; get the absolute address of vp8_sad16x16x3_ssse3_jumptable 199 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable 306 pop rcx ; get the address of do_jump 308 add rax, rcx ; get the absolute address of vp8_sad16x8x3_ssse3_jumptable 310 movsxd rax, dword [rax + 4*rdx] ; get the 32 bit offset from the jumptable
|
/external/openssl/crypto/bio/ |
bss_rtcp.c | 80 char function; /* 'G'-get, 'P'-put, 'C'-confirm, 'X'-close */ 126 static int get ( io_channel chan, char *buffer, int maxlen, int *length ) function 203 status = get ( b->num, (char *) &ctx->msg, sizeof(ctx->msg), &length ); 239 status = get ( b->num, (char *) &ctx->msg, sizeof(ctx->msg), &length );
|
/external/protobuf/src/google/protobuf/compiler/ |
mock_code_generator.cc | 140 io::Printer printer(output.get(), '$'); 153 io::Printer printer(output.get(), '$'); 165 io::Printer printer(output.get(), '$');
|
/external/skia/include/core/ |
SkTypes.h | 311 void* get() const { return fPtr; } function in class:SkAutoFree 356 return get(); 374 void* get() const { return fPtr; } function in class:SkAutoSMalloc
|
/external/stlport/stlport/stl/ |
_queue.h | 91 : c(_STLP_PRIV _AsMoveSource(src.get().c)) {} 178 : c(_STLP_PRIV _AsMoveSource(src.get().c)), 179 comp(_STLP_PRIV _AsMoveSource(src.get().comp)) {}
|
/external/webkit/JavaScriptCore/parser/ |
Nodes.cpp | 125 ASSERT(!node->data()->m_arena.contains(node.get())); 143 ASSERT(!node->data()->m_arena.contains(node.get())); 190 ASSERT(!node->data()->m_arena.contains(node.get()));
|
/external/webkit/JavaScriptCore/runtime/ |
Collector.h | 207 bool get(size_t n) const { return !!(bits[n >> 5] & (1 << (n & 0x1F))); } function in struct:JSC::CollectorBitmap 215 if (get(startCell)) 261 return cellBlock(cell)->marked.get(cellOffset(cell));
|
/external/webkit/JavaScriptCore/wtf/ |
TCPageMap.h | 87 void* get(Number k) const { function in class:TCMalloc_PageMap1 127 void* get(Number k) const { function in class:TCMalloc_PageMap2 229 void* get(Number k) const { function in class:TCMalloc_PageMap3
|
/external/webkit/JavaScriptGlue/ |
JSValueWrapper.cpp | 47 return fValue.get(); 112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec)); 205 markStack.append(ptr->fValue.get());
|
/external/webkit/WebCore/bindings/js/ |
JSNodeCustom.cpp | 127 impl()->removeEventListener(args.at(0).toString(exec), JSEventListener::create(asObject(listener), this, false, currentWorld(exec)).get(), args.at(2).toBoolean(exec)); 139 Node* node = m_impl.get(); 155 for (Node* current = m_impl.get(); current; current = current->parentNode()) { 163 // get marked once. Nodes that aren't outermost need to mark the outermost
|
/external/webkit/WebCore/bridge/c/ |
c_instance.cpp | 141 JSValue resultValue = convertNPVariantToValue(exec, &resultVariant, m_rootObject.get()); 176 JSValue resultValue = convertNPVariantToValue(exec, &resultVariant, m_rootObject.get()); 215 JSValue resultValue = convertNPVariantToValue(exec, &resultVariant, m_rootObject.get());
|
/external/webkit/WebCore/dom/ |
Document.h | 272 DocumentType* doctype() const { return m_docType.get(); } 280 return m_documentElement.get(); 387 return m_styleSelector.get(); 478 DocLoader* docLoader() { return m_docLoader.get(); } 483 RenderArena* renderArena() { return m_renderArena.get(); } 490 // to get visually ordered hebrew and arabic pages right 532 Tokenizer* tokenizer() { return m_tokenizer.get(); } 582 Node* focusedNode() const { return m_focusedNode.get(); } 592 Node* hoverNode() const { return m_hoverNode.get(); } 595 Node* activeNode() const { return m_activeNode.get(); } [all...] |