/external/icu/icu4c/source/common/ |
caniter.cpp | 221 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))));
|
normalizer2.cpp | 308 return destString.extract(dest, capacity, *pErrorCode); 349 safeMiddle.extract(0, 0x7fffffff, first+firstLength-safeMiddle.length()); 364 return firstString.extract(first, firstCapacity, *pErrorCode); 402 return destString.extract(decomposition, capacity, *pErrorCode); 421 return destString.extract(decomposition, capacity, *pErrorCode);
|
unorm.cpp | 163 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode); 170 return buffer.extract(dest, destCapacity, *pErrorCode); 255 extract(dest, destCapacity, *pErrorCode);
|
uset_props.cpp | 135 return pat.extract(result, resultCapacity, *ec);
|
/external/opencv3/3rdparty/openexr/Imath/ |
ImathEuler.h | 258 // The Euler-from-matrix extract() functions assume that the 260 // the extract() functions do not examine the matrix to verify 266 void extract(const Matrix33<T>&); 267 void extract(const Matrix44<T>&); 268 void extract(const Quat<T>&); 436 extract(M); 453 extract(M); 460 extract(M); 464 inline void Euler<T>::extract(const Quat<T> &q) function in class:Imath::Euler 466 extract(q.toMatrix33()) 470 void Euler<T>::extract(const Matrix33<T> &M) function in class:Imath::Euler 552 void Euler<T>::extract(const Matrix44<T> &M) function in class:Imath::Euler [all...] |
/cts/hostsidetests/services/activitymanager/src/android/server/cts/ |
ActivityManagerState.java | 297 stack.extract(dump, exitPatterns); 301 private void extract(LinkedList<String> dump, Pattern[] exitPatterns) { method in class:ActivityManagerState.ActivityStack 399 task.extract(dump, exitPatterns); 403 private void extract(LinkedList<String> dump, Pattern[] exitPatterns) { method in class:ActivityManagerState.ActivityTask 509 activity.extract(dump, exitPatterns); 513 private void extract(LinkedList<String> dump, Pattern[] exitPatterns) { method in class:ActivityManagerState.Activity
|
/toolchain/binutils/binutils-2.25/opcodes/ |
ppc-dis.c | 405 /* Extract the operand value from the PowerPC or POWER instruction. */ 413 /* Extract the value from the instruction. */ 414 if (operand->extract) 415 value = (*operand->extract) (insn, dialect, &invalid); 492 if (operand->extract) 493 (*operand->extract) (insn, dialect, &invalid); 546 if (operand->extract) 547 (*operand->extract) (insn, (ppc_cpu_t)0, &invalid); 630 /* Now extract and print the operands. */ 641 already made sure that the extract function considere [all...] |
/external/curl/packages/vms/ |
build_gnv_curl_pcsi_desc.com | 79 $ majorver = f$extract(0, 3, mmversion) 80 $ minorver = f$extract(3, 2, mmversion) 85 $ kit_type = f$edit(f$extract(0, 1, majorver), "upcase") 120 $ vernum = f$extract(1, f$length(node_swvers), node_swvers) 127 $ code = f$extract(0, 1, arch_type) 128 $ arch_code = f$extract(0, 1, arch_type)
|
/external/libhevc/common/arm/ |
ihevc_inter_pred_chroma_horz.s | 399 @vext.u8 d2,d0,d1,#2 @vector extract of src[0_2] 402 @vext.u8 d4,d0,d1,#4 @vector extract of src[0_4] 403 @vext.u8 d6,d0,d1,#6 @vector extract of src[0_6] 412 @vext.u8 d14,d12,d13,#2 @vector extract of src[0_2] 415 @vext.u8 d16,d12,d13,#4 @vector extract of src[0_4] 416 @vext.u8 d18,d12,d13,#6 @vector extract of src[0_6] 638 @vext.u8 d2,d0,d1,#2 @vector extract of src[0_2] 639 @vext.u8 d4,d0,d1,#4 @vector extract of src[0_4] 641 @vext.u8 d6,d0,d1,#6 @vector extract of src[0_6] 644 @vext.u8 d14,d12,d13,#2 @vector extract of src[0_2 [all...] |
/external/llvm/lib/IR/ |
Metadata.cpp | 842 APFloat AVal = mdconst::extract<ConstantFP>(A->getOperand(0))->getValueAPF(); 843 APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF(); 905 ConstantInt *ALow = mdconst::extract<ConstantInt>(A->getOperand(2 * AI)); 906 ConstantInt *BLow = mdconst::extract<ConstantInt>(B->getOperand(2 * BI)); 910 mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1))); 914 mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1))); 919 addRange(EndPoints, mdconst::extract<ConstantInt>(A->getOperand(2 * AI)), 920 mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1))); 924 addRange(EndPoints, mdconst::extract<ConstantInt>(B->getOperand(2 * BI)), 925 mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1))) [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalVariableExtractor.java | 42 * @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
|
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableExtractor.java | 42 * @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
|
/device/common/ |
generate-packages.sh | 34 EXTRACT_LIST_FILENAME=extract-lists.txt 134 SCRIPT=extract-$COMPANY-$DEVICE.sh
|
/external/autotest/server/ |
deb_kernel_unittest.py | 73 self.kernel.extract(self.host)
|
/external/chromium-trace/catapult/third_party/coverage/ci/ |
download_appveyor.py | 91 z.extract(name)
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
LocalVariableExtractor.java | 42 * @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/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
MonitorBasedArrayBlockingQueue.java | 114 private E extract() { method in class:MonitorBasedArrayBlockingQueue 309 return extract(); 323 return extract(); 334 return extract();
|
/external/icu/icu4c/source/samples/break/ |
break.cpp | 19 s.extract(0, s.length(), charBuf, sizeof(charBuf)-1, 0);
|
/external/icu/icu4c/source/test/intltest/ |
dadrcal.cpp | 117 testSetting.extract(0, testSetting.length(), toCalLoc, (const char*)0); 374 testSetting.extract(0, testSetting.length(), toCalLoc, (const char*)0); 397 locale.extract(0, locale.length(), fromCalLoc, (const char*)0); // default codepage. Invariant codepage doesn't have '@'! 467 testSetting.extract(0, testSetting.length(), testType, ""); 469 errln("Unable to extract 'Type'. Skipping..");
|
dcfmtest.cpp | 117 // Buffer size is len+1 so that s.extract() will nul-terminate the string. 118 s.extract(0, len, buf.getAlias(), len+1, US_INV); 139 int32_t requiredCapacity = s.extract(0, len, buf.getAlias(), capacity) + 1; 143 s.extract(0, len, buf.getAlias(), capacity); 345 expectedType.extract(0, 1, expectedTypeC, 2, US_INV);
|
/external/icu/icu4c/source/tools/gencolusb/ |
extract_unsafe_backwards.cpp | 83 int32_t len2 = pattern.extract(0, pattern.length(), buf2, "utf-8");
|
/external/llvm/lib/Analysis/ |
TypeBasedAliasAnalysis.cpp | 196 return mdconst::extract<ConstantInt>(Node->getOperand(2))->getZExtValue(); 237 : mdconst::extract<ConstantInt>(Node->getOperand(2)) 250 uint64_t Cur = mdconst::extract<ConstantInt>(Node->getOperand(Idx + 1)) 262 uint64_t Cur = mdconst::extract<ConstantInt>(Node->getOperand(TheIdx + 1))
|
/external/mesa3d/src/mesa/tnl/ |
t_vertex.h | 74 tnl_extract_func extract; member in struct:tnl_format_info 94 /* Extract a named attribute from a hardware vertex. Will have to
|
/external/opencv3/modules/features2d/perf/ |
perf_orb.cpp | 34 PERF_TEST_P(orb, extract, testing::Values(ORB_IMAGES))
|
/toolchain/binutils/binutils-2.25/include/opcode/ |
ppc.h | 198 /* A macro to extract the major opcode from an instruction. */ 204 /* A macro to extract the major opcode from a VLE instruction. */ 248 extract this operand type from an instruction, check this field. 266 long (*extract) (unsigned long instruction, ppc_cpu_t dialect, int *invalid); 298 the extract function, ignore the return value, and check the value 265 long (*extract) (unsigned long instruction, ppc_cpu_t dialect, int *invalid); member in struct:powerpc_operand
|