HomeSort by relevance Sort by last modified time
    Searched defs:index (Results 226 - 250 of 8401) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/dex/file/
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
25 private int index; field in class:IndexedItem
28 * Constructs an instance. The index is initially unassigned.
31 index = -1;
35 * Gets whether or not this instance has been assigned an index.
37 * @return {@code true} iff this instance has been assigned an index
40 return (index >= 0);
44 * Gets the item index.
46 * @return {@code >= 0;} the index
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader.java 51 int index = mRssList.getSelectedItemIndex(); local
52 if(index > -1){
53 outState.putInteger("lastIndexItem", index);
  /device/generic/goldfish/wifi/ipv6proxy/
address.cpp 86 unsigned int index = if_nametoindex(interfaceName.c_str()); local
87 if (index == 0) {
90 addr->sll_ifindex = index;
interface.h 25 // single interface. This includes the name and index of the interface as well
37 uint32_t index() const { return mIndex; } function in class:Interface
  /device/google/contexthub/firmware/external/arm/
arm_sin_cos_f32.c 176 * -# Calculation of the nearest integer table index
178 * -# Compute the fractional portion (fract) of the table index.
184 * a=Table[index-1];
185 * b=Table[index+0];
186 * c=Table[index+1];
187 * d=Table[index+2];
213 uint16_t index; /* Index variable */ local
234 /* Calculation of index of the table */
236 index = ((uint16_t)findex) & 0x1ff
302 uint16_t index; \/* Index variable *\/ local
    [all...]
  /device/google/cuttlefish_common/common/libs/net/
network_interface_manager.cpp 35 request.AddIfInfo(interface.Index(), interface.IsOperational());
46 request.AddAddrInfo(interface.Index(), interface.PrefixLength());
83 int32_t index = if_nametoindex(if_name.c_str()); local
84 if (index == 0) {
86 // by the kernel, because we specify IFLA_IFNAME, but open by index.
87 LOG(ERROR) << "Failed to get interface (" << if_name << ") index, "
89 index = if_nametoindex(if_name_alt.c_str());
90 if (index == 0) {
91 LOG(ERROR) << "Failed to get interface (" << if_name_alt << ") index.";
96 iface.reset(new NetworkInterface(index));
    [all...]
  /device/google/cuttlefish_common/host/frontend/vnc_server/
vnc_utils.h 53 int index = -1; member in struct:cvd::vnc::Stripe
  /device/linaro/bootloader/arm-trusted-firmware/common/
desc_image_load.c 34 * This function returns the index for given image_id, within the
40 int index; local
43 for (index = 0; index < bl_mem_params_desc_num; index++) {
44 if (bl_mem_params_desc_ptr[index].image_id == image_id)
45 return index;
58 int index; local
61 index = get_bl_params_node_index(image_id);
62 if (index >= 0
77 int index = 0; local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/auth/
img_parser_mod.c 36 unsigned int index, mod_num; local
39 for (index = 0; index < IMG_MAX_TYPES; index++) {
40 parser_lib_indices[index] = INVALID_IDX;
50 for (index = 0; index < mod_num; index++) {
53 validate_desc(&parser_lib_descs[index]);
56 parser_lib_descs[index].init()
    [all...]
  /external/ImageMagick/MagickCore/
colormap.c 215 index;
227 index=(ssize_t) (GetPixelIndex(image,q)+displace) % image->colors;
228 if (index < 0)
229 index+=(ssize_t) image->colors;
230 SetPixelIndex(image,(Quantum) index,q);
231 SetPixelViaPixelInfo(image,image->colormap+(ssize_t) index,q);
326 Assign index values to colormap entries.
352 index;
368 index=(Quantum) pixels[(ssize_t) GetPixelIndex(image,q)];
369 SetPixelIndex(image,index,q)
212 index; local
348 index; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
SeriesAndFormatterList.java 66 int index = seriesList.indexOf(series); local
67 if(index < 0) {
70 seriesList.remove(index);
71 formatterList.remove(index);
80 public FormatterType getFormatter(int index) {
81 return formatterList.get(index);
84 public SeriesType getSeries(int index) {
85 return seriesList.get(index);
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
ExtImplsLocationCriterion.java 19 private final Integer index; field in class:ExtImplsLocationCriterion
27 this.index = tyLoc.typeIndex;
62 if (index == -1 && leaf.getKind() == Tree.Kind.CLASS) {
68 if (index==-1) {
75 if (index < impls.size() && impls.get(index) == leaf) {
89 return index;
101 return "ExtImplsLocationCriterion: class " + classname + " at type index: " + index;
  /external/annotation-tools/annotation-file-utilities/src/annotator/scanner/
InitBlockScanner.java 10 * InitScanner scans the source tree and determines the index of a given
11 * initializer block, where index {@code i} corresponds to the (0-based)
27 // find the index of the current initializer within the
31 return bts.index;
34 private int index = -1; field in class:InitBlockScanner
39 this.index = -1;
49 index++;
LocalClassScanner.java 11 * LocalClassScanner determines the index of a tree for a local
12 * class. If the index is i, it is the ith local class with the class name in
19 * Given a local class, computes and returns its 1-based index in the given
24 * @return the index of the local class in the source code
30 // index number.
45 return lcs.index;
51 private int index; field in class:LocalClassScanner
56 * Creates a new LocalClassScanner that searches for the index of the given
62 this.index = 1;
68 // counting classes that aren't included in the index number
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
LocalVariableNode.java 70 * The local variable's index.
72 public int index; field in class:LocalVariableNode
85 * @param index the local variable's index.
93 final int index)
100 this.index = index;
109 mv.visitLocalVariable(name, desc, signature, start, end, index);
  /external/annotation-tools/scene-lib/src/annotations/el/
LocalLocation.java 11 * variable: slot index, scope start, and scope length.
15 * The slot index of the local variable.
17 public final int index; field in class:LocalLocation
34 public LocalLocation(int index, int scopeStart, int scopeLength) {
35 this.index = index;
46 this.index = -1;
60 return index == l.index && scopeStart == l.scopeStart
69 * <code>this</code> and <code>o</code> have equal {@link #index},
    [all...]
RelativeLocation.java 11 * instanceof, cast, or new: either the bytecode offset or the source code index.
21 * The source code index of the construct.
23 public final int index; field in class:RelativeLocation
26 * The type index used for intersection types in casts.
35 private RelativeLocation(int offset, int index, int type_index) {
37 this.index = index;
45 public static RelativeLocation createIndex(int index, int type_index) {
46 return new RelativeLocation(-1, index, type_index);
57 return "*" + index;
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 44 * current input position, index(), or some other marker so that
47 * track line/col info as well as input index so its markers are
52 /** Return the current input symbol index 0..n where n indicates the
53 * last symbol has been read. The index is the symbol about to be
56 int index(); method in interface:IntStream
58 /** Reset the stream so that next call to index would return marker.
59 * The marker will usually be index() but it doesn't have to be. It's
89 /** Set the input cursor to the position indicated by index. This is
95 * requirement and in that its argument is strictly an input cursor (index).
105 * The index is 0..n-1. A seek to position i means that LA(1) wil
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonToken.h 40 NSUInteger index; variable
55 @property (assign, getter=getTokenIndex, setter=setTokenIndex:) NSUInteger index; variable
95 // the index of this Token into the TokenStream
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonToken.h 40 NSUInteger index; variable
55 @property (assign, getter=getTokenIndex, setter=setTokenIndex:) NSUInteger index; variable
95 // the index of this Token into the TokenStream
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonToken.h 40 NSUInteger index; variable
55 @property (assign, getter=getTokenIndex, setter=setTokenIndex:) NSUInteger index; variable
95 // the index of this Token into the TokenStream
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
NonMonotonousSequenceException.java 43 * Index of the wrong value.
45 private final int index; field in class:NonMonotonousSequenceException
58 * @param index Index of the value that did not match the requirements.
62 int index) {
63 this(wrong, previous, index, MathUtils.OrderDirection.INCREASING, true);
71 * @param index Index of the value that did not match the requirements.
79 int index,
89 wrong, previous, index, index - 1)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Location.java 37 public long index; field in class:Location
46 index = 0;
52 public Location(byte tag, long classID, long methodID, long index) {
56 this.index = index;
64 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
76 && index == loc.index;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DOM2Helper.java 92 int index = qname.indexOf(':'); local
94 return (index < 0) ? qname : qname.substring(index + 1);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
PrefixResolverDefault.java 109 int index = aname.indexOf(':'); local
110 String p = isPrefix ? aname.substring(index + 1) : "";

Completed in 749 milliseconds

1 2 3 4 5 6 7 8 91011>>