/external/clang/tools/scan-view/ |
startfile.py | 43 if (os.environ.get('DISPLAY') or sys.platform[:3] == 'win' or 152 if os.environ.get('KDE_FULL_SESSION') == 'true': 154 elif os.environ.get('GNOME_DESKTOP_SESSION_ID'): 175 def get(): function 195 if os.environ.get("DISPLAY"): 197 _open = get()
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
CatchTable.java | 49 public Entry get(int n) { method in class:CatchTable 75 Entry thisEntry = get(i); 76 Entry otherEntry = other.get(i);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ClassDefsSection.java | 67 public IndexedItem get(Constant cst) { method in class:ClassDefsSection 75 IndexedItem result = classDefs.get(type); 122 if (classDefs.get(type) != null) { 159 ClassDefItem c = classDefs.get(type);
|
ProtoIdsSection.java | 56 public IndexedItem get(Constant cst) { method in class:ProtoIdsSection 97 ProtoIdItem result = protoIds.get(prototype); 121 ProtoIdItem item = protoIds.get(prototype);
|
StringIdsSection.java | 58 public IndexedItem get(Constant cst) { method in class:StringIdsSection 65 IndexedItem result = strings.get((CstString) cst); 129 StringIdItem already = strings.get(value); 163 StringIdItem s = strings.get(string);
|
TypeIdsSection.java | 56 public IndexedItem get(Constant cst) { method in class:TypeIdsSection 64 IndexedItem result = typeIds.get(type); 110 TypeIdItem result = typeIds.get(type); 134 TypeIdItem result = typeIds.get(typePerSe); 158 TypeIdItem item = typeIds.get(type);
|
UniformItemSection.java | 66 public abstract IndexedItem get(Constant cst); method in class:UniformItemSection
|
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/ |
AnnotationsList.java | 50 Annotations a1 = list1.get(i); 51 Annotations a2 = list2.get(i); 76 public Annotations get(int n) { method in class:AnnotationsList
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstArray.java | 90 * Get the underlying list. 145 public Constant get(int n) { method in class:CstArray.List
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
DomFront.java | 84 SsaBasicBlock node = nodes.get(i); 127 SsaBasicBlock node = nodes.get(i); 159 SsaBasicBlock domParent = nodes.get(info.idom); 160 domParent.addDomChild(nodes.get(i)); 173 SsaBasicBlock nb = nodes.get(b);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
InterferenceGraph.java | 67 interference.get(regV).add(regW); 68 interference.get(regW).add(regV); 80 sb.append("Reg " + i + ":" + interference.get(i).toString()); 95 set.merge(interference.get(reg));
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
Bits.java | 58 public static boolean get(int[] bits, int idx) { method in class:Bits 224 if (Bits.get(bits, i)) {
|
/external/e2fsprogs/lib/ext2fs/ |
brel.h | 41 * Get a block relocation entry. 43 errcode_t (*get)(ext2_brel brel, blk_t old, member in struct:ext2_block_relocation_table 80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
FieldCollection.java | 28 public Field_info get (final int offset) method in class:FieldCollection 30 return (Field_info) m_fields.get (offset); 33 public int [] get (final ClassDef cls, final String name) method in class:FieldCollection 44 final Field_info field = (Field_info) m_fields.get (f); 74 _clone.m_fields.add (((Field_info) m_fields.get (f)).clone ()); 94 get (i).writeInClassFormat (out);
|
MethodCollection.java | 28 public Method_info get (final int offset) method in class:MethodCollection 30 return (Method_info) m_methods.get (offset); 33 public int [] get (final ClassDef cls, final String name) method in class:MethodCollection 44 final Method_info method = (Method_info) m_methods.get (m); 74 _clone.m_methods.add (((Method_info) m_methods.get (m)).clone ()); 94 get (i).writeInClassFormat (out);
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
ExceptionHandlerTable.java | 27 public Exception_info get (final int offset) method in class:ExceptionHandlerTable 29 return (Exception_info) m_exceptions.get (offset); 58 _clone.m_exceptions.add (((Exception_info) m_exceptions.get (e)).clone ()); 78 get (i).writeInClassFormat (out);
|
InnerClassesAttribute_info.java | 37 final InnerClass_info info = get (i); 59 public final InnerClass_info get (final int offset) method in class:InnerClassesAttribute_info 61 return (InnerClass_info) m_classes.get (offset); 90 s.append (" " + get (l)); 113 _clone.m_classes.add (((InnerClass_info) classes.get (e)).clone ()); 132 ((InnerClass_info) classes.get (l)).writeInClassFormat (out);
|
LineNumberTableAttribute_info.java | 86 public LineNumber_info get (final int offset) method in class:LineNumberTableAttribute_info 88 return (LineNumber_info) m_lines.get (offset); 117 s.append (" " + get (l)); 138 _clone.m_lines.add (((LineNumber_info) m_lines.get (e)).clone ()); 155 ((LineNumber_info) m_lines.get (l)).writeInClassFormat (out);
|
/external/emma/core/java12/com/vladium/util/ |
IntVector.java | 32 public int get (final int index) method in class:IntVector 35 throw new IndexOutOfBoundsException ("get[" + index + "] on vector of size " + m_size); 115 throw new IndexOutOfBoundsException ("get[" + index + "] on vector of size " + m_size);
|
/external/gtest/include/gtest/internal/ |
gtest-linked_ptr.h | 62 // raw pointer (e.g. via get()) concurrently, and 172 T* get() const { return value_; } function in class:testing::internal::linked_ptr 180 return value_ == ptr.get(); 184 return value_ != ptr.get(); 204 value_ = ptr->get(); 214 return ptr == x.get(); 219 return ptr != x.get();
|
/external/guava/guava/src/com/google/common/base/ |
Equivalence.java | 186 @Nullable public T get() { method in class:Equivalence.Wrapper
|
/external/guava/guava/src/com/google/common/collect/ |
EmptyImmutableMap.java | 37 @Override public Object get(@Nullable Object key) { method in class:EmptyImmutableMap
|
EmptyImmutableTable.java | 44 @Override public Object get(@Nullable Object rowKey, method in class:EmptyImmutableTable
|
ForwardingList.java | 75 public E get(int index) { method in class:ForwardingList 76 return delegate().get(index); 196 * of {@link #size} and {@link #get(int)}. If you override either of these
|
ForwardingMultimap.java | 77 public Collection<V> get(@Nullable K key) { method in class:ForwardingMultimap 78 return delegate().get(key);
|