Searched defs:extract (Results 1 - 25 of 50) sorted by relevance

12

/external/icu/icu4c/source/common/unicode/
H A Durep.h125 void (*extract)(UReplaceable* rep, member in struct:UReplaceableCallbacks
H A Dutext.h653 * @param ut the UText from which to extract data.
654 * @param nativeStart the native index of the first character to extract.\
658 * character to extract. If the specified index is out of range,
1042 * Function type declaration for UText.extract().
1054 * @param ut the UText from which to extract data.
1055 * @param nativeStart the native index of the first characer to extract.
1057 * character to extract.
1265 UTextExtract *extract; member in struct:UTextFuncs
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableExtractor.java42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) { method in class:LocalVariableExtractor
51 * Constructs an instance. This method is private. Use {@link #extract}.
53 * @param method {@code non-null;} the method to extract from
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableExtractor.java51 * @param method {@code non-null;} the method to extract from
54 public static LocalVariableInfo extract(SsaMethod method) { method in class:LocalVariableExtractor
60 * Constructs an instance. This method is private. Use {@link #extract}.
62 * @param method {@code non-null;} the method to extract from
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp29 DWARFAbbreviationDeclaration::extract(DataExtractor Data, uint32_t* OffsetPtr) { function in class:DWARFAbbreviationDeclaration
H A DDWARFDebugArangeSet.cpp24 DWARFDebugArangeSet::extract(DataExtractor data, uint32_t *offset_ptr) { function in class:DWARFDebugArangeSet
H A DDWARFDebugRangeList.cpp22 bool DWARFDebugRangeList::extract(DataExtractor data, uint32_t *offset_ptr) { function in class:DWARFDebugRangeList
H A DDWARFDebugAbbrev.cpp25 bool DWARFAbbreviationDeclarationSet::extract(DataExtractor Data, function in class:DWARFAbbreviationDeclarationSet
32 while (AbbrDecl.extract(Data, OffsetPtr)) {
76 void DWARFDebugAbbrev::extract(DataExtractor Data) { function in class:DWARFDebugAbbrev
83 if (!AbbrDecls.extract(Data, &Offset))
H A DDWARFAcceleratorTable.cpp17 bool DWARFAcceleratorTable::extract() { function in class:llvm::DWARFAcceleratorTable
H A DDWARFDebugAranges.cpp21 void DWARFDebugAranges::extract(DataExtractor DebugArangesData) { function in class:DWARFDebugAranges
27 while (Set.extract(DebugArangesData, &Offset)) {
45 extract(ArangesData);
/external/clang/tools/clang-format/
H A Dclang-format.el59 (defun clang-format--extract (xml-node)
149 (setq operations (clang-format--extract (car (xml-parse-region)))))
/external/deqp/external/
H A Dfetch_sources.py53 def extract (pkg): function
57 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % pkg.dstDir)
106 help='Clean only, do not fetch/extract')
121 extract(pkg)
/external/libpng/contrib/examples/
H A Diccfrompng.c33 extract(FILE *fp, png_uint_32 *proflen) function
95 png_bytep profile = extract(fp, &proflen);
178 /* Exit code is true if any extract succeeds */
/external/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp56 void LiveIntervalUnion::extract(LiveInterval &VirtReg, const LiveRange &Range) { function in class:LiveIntervalUnion
/external/eigen/Eigen/src/Core/util/
H A DBlasUtil.h169 static inline ExtractType extract(const XprType& x) { return x; } function in struct:Eigen::internal::blas_traits
186 static inline ExtractType extract(const XprType& x) { return Base::extract(x.nestedExpression()); } function in struct:Eigen::internal::blas_traits
198 static inline ExtractType extract(const XprType& x) { return Base::extract(x.nestedExpression()); } function in struct:Eigen::internal::blas_traits
211 static inline ExtractType extract(const XprType& x) { return Base::extract(x.nestedExpression()); } function in struct:Eigen::internal::blas_traits
233 static inline ExtractType extract(const XprType& x) { return Base::extract(x.nestedExpression()); } function in struct:Eigen::internal::blas_traits
246 return blas_traits<T>::extract(
[all...]
/external/icu/icu4c/source/common/
H A Dunistr_cnv.cpp119 UnicodeString::extract(int32_t start, function in class:UnicodeString
123 return extract(start, length, target, dstSize, 0);
130 UnicodeString::extract(int32_t start, function in class:UnicodeString
205 UnicodeString::extract(char *dest, int32_t destCapacity, function in class:UnicodeString
H A Dcaniter.cpp221 source.extract(start, i-start, list[list_length++]); // add up to i
225 source.extract(start, i-start, list[list_length++]); // add last one
354 int32_t segLen = segment.extract(USeg, 256, status);
458 if (extract(&remainder, cp2, segment, segLen, i, status) == NULL) {
498 Hashtable *CanonicalIterator::extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status) { function in class:CanonicalIterator
499 //Hashtable *CanonicalIterator::extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status) {
500 //if (PROGRESS) printf(" extract: %s, ", UToS(Tr(UnicodeString(comp))));
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrieIterator.java20 * <p>The comparison of each codepoint value is done via extract(), which the
22 * <p>Method extract() can be overwritten to perform manipulations on
40 * the method extract(int) (equivalent to UTrieEnumValue). Independent of icu4j,
46 * subclass of TrieIterator and override the extract(int) method. The
47 * extract(int) method is analogus to UTrieEnumValue callback.
50 * a subclass of TrieIterator, override the extract method and iterate, e.g
60 * public int extract(int value){
101 // synwee: check that extract belongs to the child class
102 m_initialValue_ = extract(m_trie_.getInitialValue());
144 m_nextValue_ = extract(m_trie
161 protected int extract(int value) method in class:TrieIterator
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCanonicalIterator.java309 Set<String> remainder = extract(cp2, segment, i, workingBuffer);
344 Set remainder = extract(cp2, segment, i, workingBuffer);
366 private Set<String> extract(int comp, String segment, int segmentPos, StringBuffer buf) { method in class:CanonicalIterator
367 if (PROGRESS) System.out.println(" extract: " + Utility.hex(UTF16.valueOf(comp))
/external/mesa3d/src/mesa/tnl/
H A Dt_vertex.h74 tnl_extract_func extract; member in struct:tnl_format_info
/external/zlib/src/examples/
H A Dzran.c46 some lookahead and avoid many calls to extract() for small lengths.
244 the end of the uncompressed data, then extract() will return a value less
247 was generated. extract() may also return Z_ERRNO if there is an error on
249 local int extract(FILE *in, struct access *index, off_t offset, function
351 /* Demonstrate the use of build_index() and extract() by processing the file
396 len = extract(in, index, offset, buf, CHUNK);
/external/clang/test/SemaCXX/
H A Dconstexpr-printing.cpp4 constexpr int extract(const S &s);
7 constexpr S() : n(extract(*this)), m(0) {} // expected-note {{in call to 'extract(s1)'}}
8 constexpr S(int k) : n(k), m(extract(*this)) {}
12 constexpr int extract(const S &s) { return s.n; } // expected-note {{read of object outside its lifetime is not allowed in a constant expression}} function
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DMonitorBasedArrayBlockingQueue.java114 private E extract() { method in class:MonitorBasedArrayBlockingQueue
309 return extract();
323 return extract();
334 return extract();
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieTest.java133 protected int extract(int value) method in class:TrieTest._testEnumValue
/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h93 void extract(LiveInterval &VirtReg, const LiveRange &Range);
94 void extract(LiveInterval &VirtReg) { function in class:llvm::LiveIntervalUnion
95 extract(VirtReg, VirtReg);

Completed in 935 milliseconds

12