HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 1276 - 1300 of 2528) sorted by null

<<51525354555657585960>>

  /dalvik/dx/src/com/android/dx/util/
IntList.java 171 public int get(int n) { method in class:IntList
287 return get(size - 1);
301 result = get(size-1);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 63 m.get(mMatrix, mTop, MATRIX_SIZE);
74 mMatrix[mTop + i] = fixedToFloat(m.get());
84 m.get(mTemp, MATRIX_SIZE, MATRIX_SIZE);
97 mTemp[MATRIX_SIZE + i] = fixedToFloat(m.get());
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
CustomArrayAdapter.java 66 return mIdMap.get(item);
75 mIdMap.put(mData.get(i), mCounter++);
80 mIdMap.put(mData.get(position), ++mCounter);
91 ListItemObject obj = mData.get(position);
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/
AsyncTask.java 321 postResultIfNotInvoked(get());
335 final boolean wasTaskInvoked = mTaskInvoked.get();
459 return mCancelled.get();
507 public final Result get() throws InterruptedException, ExecutionException { method in class:AsyncTask
508 return mFuture.get();
526 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:AsyncTask
528 return mFuture.get(timeout, unit);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoManager.java 35 * The class is implemented as a singleton; the only way to get an PhotoManager instance is to
379 * @param imageView The ImageView that will get the resulting Bitmap
404 downloadTask.setByteBuffer(sInstance.mPhotoCache.get(downloadTask.getImageURL()));
  /development/scripts/app_engine_server/
memcache_zipserve.py 22 class to serve HTTP GET requests. Memcache is used to increase response speed
78 def get(self, name): member in class:create_handler.HandlerWrapper
90 """Handles get requests for a given URL.
92 Serves a GET request from a series of zip files. As files are served they are
119 Called 'True' get because it does the work when called from the wrapper
120 class' get method. Some logic is applied to the request to serve files
202 # for processing (so as to get 404 as appropriate). This is needed
241 redirect_data = memcache.get(memcache_key)
515 Get the file from the source, it must not have been in the memcache. If
575 zip_archive = self.zipfile_cache.get(zipfilename
    [all...]
  /device/generic/goldfish/camera/
Converters.h 250 inline void get(uint8_t* pY, uint8_t* pU, uint8_t* pV) const function in struct:android::YUVPixel
  /external/android-mock/tests/com/google/android/testing/mocking/
ClassTypeTests.java 54 assertUnorderedContentsSame(expectedMethods.get(clazz.getClassName()), getMethodNames(clazz));
127 expectedMethods.put(expectedNames.get(0), new ArrayList<String>(Arrays.asList(new String[] {
129 expectedMethods.put(expectedNames.get(1), new ArrayList<String>(Arrays.asList(new String[] {
131 expectedMethods.get(expectedNames.get(0)).addAll(
133 expectedMethods.get(expectedNames.get(1)).addAll(
154 expectedMethods.get(
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontreenodestream.h 67 /// Get tree node at current input pointer + i ahead where i=1 is next node.
86 /// trees. E.g., get text of a node.
121 /// Get a tree node at an absolute index i; 0..n-1.
125 pANTLR3_BASE_TREE (*get) (struct ANTLR3_TREE_NODE_STREAM_struct * tns, ANTLR3_INT32 i); member in struct:ANTLR3_TREE_NODE_STREAM_struct
antlr3tokenstream.h 124 /** Get Token at current input pointer + i ahead where i=1 is next Token.
132 /** Get a token at an absolute index i; 0..n-1. This is really only
139 pANTLR3_COMMON_TOKEN (*get) (struct ANTLR3_TOKEN_STREAM_struct * tokenStream, ANTLR3_UINT32 i); member in struct:ANTLR3_TOKEN_STREAM_struct
154 * Leeds market used to say; "Get the lot!"
260 * in the stream (this causes the buffer to fill if we have not get any yet)
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontreenodestream.c 57 static pANTLR3_BASE_TREE get (pANTLR3_TREE_NODE_STREAM tns, ANTLR3_INT32 k);
202 stream->tnstream->get = get;
344 stream->tnstream->get = get;
563 return tns->ctns->nodes->get(tns->ctns->nodes, tns->ctns->p - k);
566 /// Get tree node at current input pointer + i ahead where i=1 is next node.
600 return tns->ctns->nodes->get(tns->ctns->nodes, tns->ctns->p + k - 1);
943 get (pANTLR3_TREE_NODE_STREAM tns, ANTLR3_INT32 k) function
950 return tns->ctns->nodes->get(tns->ctns->nodes, k)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 64 * to initialize with first token. The ctor doesn't get a token.
141 public Token get(int i) { method in class:BufferedTokenStream
145 return tokens.get(i);
148 /** Get all tokens from start..stop inclusively */
149 public List get(int start, int stop) { method in class:BufferedTokenStream
155 Token t = tokens.get(i);
166 return tokens.get(p-k);
178 return tokens.get(tokens.size()-1);
181 return tokens.get(i);
212 Token t = tokens.get(i)
    [all...]
LegacyCommonTokenStream.java 103 channelOverrideMap.get(new Integer(t.getType()));
147 while ( i<n && ((Token)tokens.get(i)).getChannel()!=channel ) {
154 while ( i>=0 && ((Token)tokens.get(i)).getChannel()!=channel ) {
216 Token t = (Token)tokens.get(i);
235 /** Get the ith token from the current position 1..n where k=1 is the
250 return (Token)tokens.get(tokens.size()-1);
252 //System.out.println(tokens.get(p+k-1));
262 return (Token)tokens.get(tokens.size()-1); // must be EOF
266 return (Token)tokens.get(i);
293 return (Token)tokens.get(i)
299 public Token get(int i) { method in class:LegacyCommonTokenStream
304 public List get(int start, int stop) { method in class:LegacyCommonTokenStream
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeNodeStream.java 70 public Object get(int i) { method in class:DebugTreeNodeStream
71 return input.get(i);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTreeNodeStream.java 88 if ( level==0 && hasNilRoot ) return it.next(); // don't give last UP; get EOF
93 t = it.next(); // t is now DOWN, so get first real node next
116 public Object get(int i) { method in class:CommonTreeNodeStream
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectStreamClassTest.java 107 public int get() { method in class:ObjectStreamClassTest.SyntheticTest.X
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ProcessBuilderTest.java 46 assertEquals("command", pb.command().get(0));
63 assertEquals("cmd", pb.command().get(0));
73 assertEquals("cmd", pb.command().get(0));
77 assertEquals("cmd", pb.command().get(0));
78 assertEquals("arg", pb.command().get(1));
118 env.get(null);
124 assertNull(env.get(new Object()));
125 // Android's get doesn't throw (because it's just a regular HashMap).
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathValidatorExceptionTest.java 284 CertPath cp = mcp.get("X.509");
312 CertPath cp = mcp.get("X.509");
365 public CertPath get(String s) { method in class:CertPathValidatorExceptionTest.myCertPath
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 220 commandLine = new StringBuilder(args.get(0));
223 commandLine.append(args.get(i));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Sequence.java 136 seq.addElement(v.get(i));
ASN1Set.java 154 set.addElement(v.get(i));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 29 Attribute a = Attribute.getInstance(v.get(i));
62 Object value = attributes.get(oid);
93 public Attribute get(DERObjectIdentifier oid) method in class:AttributeTable
95 return get(new ASN1ObjectIdentifier(oid.getId()));
104 public Attribute get( method in class:AttributeTable
107 Object value = attributes.get(oid);
137 Object value = attributes.get(oid);
224 out.put(key, in.get(key));
  /external/chromium/chrome/browser/chromeos/input_method/
xkeyboard.cc 120 Display* get() const { function in class:chromeos::input_method::__anon1664::ScopedDisplay
136 return Singleton<XKeyboard, LeakySingletonTraits<XKeyboard> >::get();
166 if (!display.get()) {
170 XAutoRepeatOn(display.get());
172 XAutoRepeatOff(display.get());
184 if (!display.get()) {
191 if (XkbSetAutoRepeatRate(display.get(), XkbUseCoreKbd,
216 if (!CrosLibrary::Get()->EnsureLoaded()) {
395 if (!display.get()) {
399 XkbGetState(display.get(), XkbUseCoreKbd, &status)
    [all...]
  /external/chromium/chrome/browser/profiles/
profile_io_data.cc 95 Profile* get() { function in class:__anon2075::ChromeCookieMonsterDelegate::ProfileGetter
117 if (profile_getter_->get()) {
121 Source<Profile>(profile_getter_->get()),
150 // where a url request originates from. This is used to get a suggested
275 DCHECK(profile_params_.get());
292 io_thread_globals->extension_event_router_forwarder.get(),
298 CreateDnsCertProvenanceChecker(io_thread_globals->dnsrr_resolver.get(),
304 io_thread_globals->proxy_script_fetcher_context.get(),
314 resource_context_.set_host_resolver(io_thread_globals->host_resolver.get());
321 LazyInitializeInternal(profile_params_.get());
    [all...]
  /external/chromium/chrome/common/
sqlite_utils.h 191 sqlite3_stmt* get() const { function in class:scoped_sqlite3_stmt_ptr

Completed in 683 milliseconds

<<51525354555657585960>>