HomeSort by relevance Sort by last modified time
    Searched defs:find (Results 126 - 150 of 1457) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
ElementPath.py 184 if elem.find(tag) is not None:
281 # Find first matching object.
283 def find(elem, path, namespaces=None): function
290 # Find all matching objects.
296 # Find text for first matching object.
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
BoundLocationCriterion.java 1 package annotator.find;
ConstructorInsertion.java 1 package annotator.find;
LocalVariableCriterion.java 1 package annotator.find;
NewInsertion.java 1 package annotator.find;
65 if (matcher.find() && matcher.start() == 0) {
  /external/clang/test/SemaTemplate/
example-typelist.cpp 83 struct find : find<typename List::tail, T> { }; struct in inherits:find
86 struct find<cons<T, Tail>, T> { struct
91 struct find<nil, T> { struct
95 int find0[is_same<find<unsigned_inttypes, unsigned int>::type,
98 int find1[is_same<find<unsigned_inttypes, int>::type, nil>::value? 1 : -1];
  /external/emma/core/java12/com/vladium/jcd/cls/
IConstantCollection.java 64 * @see IConstantCollection#find(int, IConstantComparator)
115 int find (int type, IConstantComparator comparator); method in interface:IConstantCollection
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
AbstractListIndexOfTester.java 37 protected abstract int find(Object o); method in class:AbstractListIndexOfTester
48 0, find(getOrderedElements().get(0)));
53 -1, find(samples.e3)); method
59 -1, find(null)); method
67 -1, find(null)); method
77 -1, find(samples.e3)); method
85 getNullLocation(), find(null)); method
91 -1, find(WrongType.VALUE)); method
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
EnumConstantLocator.java 67 public BodyDeclaration find(CompilationUnit cu) { method in class:EnumConstantLocator
68 AbstractTypeDeclaration typeDeclaration = typeLocator.find(cu);
MethodLocator.java 62 public MethodDeclaration find(CompilationUnit cu) { method in class:MethodLocator
63 AbstractTypeDeclaration typeDeclaration = typeLocator.find(cu);
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 41 public static BasicBlock find(BasicBlock[] blocks, int pos) method in class:BasicBlock
382 BasicBlock handler = find(blocks, et.handlerPc(i));
  /external/mesa3d/src/gallium/state_trackers/clover/util/
algorithm.hpp 158 find(F &&f, R &&r) { function in namespace:clover
  /external/mockito/src/main/java/org/mockito/internal/debugging/
WarningsFinder.java 23 public void find(FindingsListener findingsListener) { method in class:WarningsFinder
  /external/python/cpython2/Lib/xml/etree/
ElementPath.py 184 if elem.find(tag) is not None:
281 # Find first matching object.
283 def find(elem, path, namespaces=None): function
290 # Find all matching objects.
296 # Find text for first matching object.
  /external/python/cpython3/Lib/xml/etree/
ElementPath.py 188 if elem.find(tag) is not None:
295 # Find first matching object.
297 def find(elem, path, namespaces=None): function
301 # Find all matching objects.
307 # Find text for first matching object.
  /external/replicaisland/src/com/replica/replicaisland/
PhasedObjectManager.java 71 public BaseObject find(int phase) { method in class:PhasedObjectManager
73 int index = getObjects().find(mSearchDummy, false);
78 index = getPendingObjects().find(mSearchDummy, false);
  /external/skia/src/core/
SkFlattenable.cpp 16 uint32_t SkNamedFactorySet::find(SkFlattenable::Factory factory) { function in class:SkNamedFactorySet
17 uint32_t index = fFactorySet.find(factory);
  /external/skia/src/shaders/gradients/
SkGradientBitmapCache.cpp 84 bool SkGradientBitmapCache::find(const void* buffer, size_t size, SkBitmap* bm) const { function in class:SkGradientBitmapCache
  /external/skqp/src/core/
SkFlattenable.cpp 16 uint32_t SkNamedFactorySet::find(SkFlattenable::Factory factory) { function in class:SkNamedFactorySet
17 uint32_t index = fFactorySet.find(factory);
  /external/skqp/src/shaders/gradients/
SkGradientBitmapCache.cpp 84 bool SkGradientBitmapCache::find(const void* buffer, size_t size, SkBitmap* bm) const { function in class:SkGradientBitmapCache
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVBasicBlock.h 64 auto Loc = find(I);
70 auto Loc = find(I);
96 SPIRVInstructionVector::const_iterator find(const SPIRVInstruction *Inst) function in class:SPIRV::SPIRVBasicBlock
98 return std::find(InstVec.begin(), InstVec.end(), Inst);
  /external/swiftshader/src/OpenGL/common/
NameSpace.hpp 74 return map.find(name) != map.end();
89 auto element = map.find(name);
107 ObjectType *find(GLuint name) const function in class:gl::NameSpace
109 auto element = map.find(name);
  /external/v8/tools/
splaytree.js 97 * @param {number} key Key to find and remove from the tree.
128 * @param {number} key Key to find in the tree.
131 SplayTree.prototype.find = function(key) { method in class:SplayTree
  /frameworks/base/core/java/android/app/slice/
SliceQuery.java 49 SliceItem icon = SliceQuery.find(item, SliceItem.FORMAT_IMAGE);
107 public static SliceItem find(Slice s, String type, String hints, String nonHints) { method in class:SliceQuery
108 return find(s, type, new String[]{ hints }, new String[]{ nonHints });
114 public static SliceItem find(Slice s, String type) { method in class:SliceQuery
115 return find(s, type, (String[]) null, null);
121 public static SliceItem find(SliceItem s, String type) { method in class:SliceQuery
122 return find(s, type, (String[]) null, null);
128 public static SliceItem find(SliceItem s, String type, String hints, String nonHints) { method in class:SliceQuery
129 return find(s, type, new String[]{ hints }, new String[]{ nonHints });
135 public static SliceItem find(Slice s, String type, String[] hints, String[] nonHints) method in class:SliceQuery
144 public static SliceItem find(SliceItem s, String type, String[] hints, String[] nonHints) { method in class:SliceQuery
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MachineDominanceFrontier.h 73 iterator find(MachineBasicBlock *B) { function in class:llvm::MachineDominanceFrontier
74 return Base.find(B);
77 const_iterator find(MachineBasicBlock *B) const { function in class:llvm::MachineDominanceFrontier
78 return Base.find(B);

Completed in 1025 milliseconds

1 2 3 4 56 7 8 91011>>