HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 326 - 350 of 5548) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 47 public IndexedItem get(Constant cst) { method in class:HeaderSection
  /dalvik/dx/src/com/android/dx/io/instructions/
AddressMap.java 40 public int get(int keyAddress) { method in class:AddressMap
41 Integer value = map.get(keyAddress);
  /dalvik/dx/src/com/android/dx/rop/cst/
ConstantPool.java 25 * Get the "size" of the constant pool. This corresponds to the
35 * Get the {@code n}th entry in the constant pool, which must
43 public Constant get(int n); method in interface:ConstantPool
46 * Get the {@code n}th entry in the constant pool, which must
58 * Get the {@code n}th entry in the constant pool, or
72 * Get all entries in this constant pool.
  /dalvik/dx/tests/118-find-usages/
Foo.java 49 @Override public T get(int index) { method in class:Foo.MyList
  /development/ndk/platforms/android-9/include/linux/
klist.h 24 void (*get)(struct klist_node *); member in struct:klist
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 74 Processes requests to add a new contact. GET presents an empty
79 def get(self): member in class:ContactInsertPage
96 Process requests to edit a contact's information. GET presents a form
101 def get(self): member in class:ContactEditPage
102 id = int(self.request.get('id'))
103 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
108 id = int(self.request.get('id'))
109 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
124 def get(self): member in class:ContactDeletePage
125 id = int(self.request.get('id')
141 def get(self): member in class:AvatarEditPage
169 def get(self): member in class:AvatarViewPage
184 def get(self): member in class:ContactsListPage
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
Injector.java 42 * Injector.get(this).inject();
59 public static Injector get(Activity activity) { method in class:Injector
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
StableArrayAdapter.java 34 mIdMap.put(objects.get(i), i);
44 return mIdMap.get(item);
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
StableArrayAdapter.java 37 mIdMap.put(objects.get(i), i);
44 return mIdMap.get(item);
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
StableArrayAdapter.java 37 mIdMap.put(objects.get(i), i);
44 return mIdMap.get(item);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_descrtut.py 25 def get(self, key, *args): member in class:defaultdict
28 return dict.get(self, key, *args)
117 def get(self, key, *args): member in class:defaultdict2
120 return dict.get(self, key, *args)
175 Instead, you can get the same information from the list type:
314 Attributes defined by get/set methods
319 ... def __init__(self, get, set=None):
320 ... self.__get = get
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ListExtensions.cs 123 public static object get( this IList list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
129 public static T get<T>( this IList<T> list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
136 public static T get<T>( this List<T> list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
TypeExtensions.cs 43 public static object get( this FieldInfo field, object obj ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
UnbufferedTokenStream.java 77 public Token get(int i) { method in class:UnbufferedTokenStream
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeNodeStream.java 35 /** Get a tree node at an absolute index i; 0..n-1.
39 public Object get(int i); method in interface:TreeNodeStream
41 /** Get tree node at current input pointer + i ahead where i=1 is next node.
67 * trees. E.g., get text of a node.
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
FastQueue.h 34 /** A queue that can dequeue and get(i) in O(1) and grow arbitrarily large.
35 * A linked list is fast at dequeue but slow at get(i). An array is
52 /** Get and remove first element in queue */
54 T o = get(0);
68 public T head() { return get(0); }
74 public T get(int i) { function in class:FastQueue
78 return data.get(p+i);
88 buf.append(get(i));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
ElitisticListPopulation.java 83 nextGeneration.addChromosome(oldChromosomes.get(i));
TournamentSelection.java 88 tournamentPopulation.addChromosome(chromosomes.get(rind));
  /external/autotest/client/bin/
test_config.py 23 @param cfg: Where we'll get configuration data. It can be either:
60 def get(self, section, option, default=None): member in class:config_loader
62 Get the value of a option.
79 return self.parser.get(section, option)
  /external/autotest/client/cros/
kernel_config.py 34 def get(self, key, default): member in class:KernelConfig
35 """Get the value associated to key or default if it does not exist
40 return self._config.get(key, default)
43 value = self._config.get(name, None)
  /external/autotest/client/tests/cgroup/
cgroup.py 291 self.values = self.get()
293 def get(self): member in class:cgroup.test_cpuset.per_cpu_load
295 Get the current values
311 vals = self.get()
355 raise error.TestFail("Failed to get no_cpus or no_cpus = 1")
  /external/autotest/frontend/client/src/autotest/common/
JSONArrayList.java 29 public T get(int index) { method in class:JSONArrayList
30 return (T) backingArray.get(index);
  /external/autotest/frontend/client/test/autotest/moblab/rpc/
CloudStorageInfoTest.java 12 assertNull(jsonInfo.get(CloudStorageInfo.JSON_FIELD_BOTO_KEY_ID));
13 assertNull(jsonInfo.get(CloudStorageInfo.JSON_FIELD_BOTO_SECRET_KEY));
14 assertNull(jsonInfo.get(CloudStorageInfo.JSON_FIELD_IMAGE_STORAGE_URL));
15 assertNull(jsonInfo.get(CloudStorageInfo.JSON_FIELD_RESULT_STORAGE_URL));
16 assertFalse(jsonInfo.get(CloudStorageInfo.JSON_FIELD_USE_EXISTING_BOTO_FILE).isBoolean()
26 jsonInfo.get(CloudStorageInfo.JSON_FIELD_BOTO_KEY_ID).isString().stringValue());
28 jsonInfo.get(CloudStorageInfo.JSON_FIELD_BOTO_SECRET_KEY).isString().stringValue());
30 jsonInfo.get(CloudStorageInfo.JSON_FIELD_IMAGE_STORAGE_URL).isString().stringValue());
32 jsonInfo.get(CloudStorageInfo.JSON_FIELD_RESULT_STORAGE_URL).isString().stringValue());
33 assertTrue(jsonInfo.get(CloudStorageInfo.JSON_FIELD_USE_EXISTING_BOTO_FILE).isBoolean(
    [all...]
  /external/autotest/server/
base_utils.py 50 def get(location, local_copy = False): function
51 """Get a file or directory to a local temporary directory.
54 location: the source of the material to get. This source may
63 directory on the local host. If the material to get was a
site_autotest.py 25 def get(self, location=None): member in class:SiteAutotest
29 installable_object.InstallableObject.get(self, location)
34 """Get repo to use for packages from host attribute, if possible.
49 logging.info('Get job repo url from host attributes: %s',
96 # Only try to get fetch location from host attribute if the test
131 Install autotest. If get() was not called previously, an

Completed in 633 milliseconds

<<11121314151617181920>>