Searched defs:split (Results 176 - 200 of 244) sorted by relevance

12345678910

/external/clang/lib/AST/
H A DItaniumMangle.cpp2230 SplitQualType split = T.split(); local
2231 Qualifiers quals = split.Quals;
2232 const Type *ty = split.Ty;
2558 auto SplitReturnTy = ReturnTy.split();
H A DASTContext.cpp2164 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split();
2598 SplitQualType canonSplit = getCanonicalType(EltTy).split();
2625 SplitQualType split = type.getSplitDesugaredType(); local
2626 const Type *ty = split.Ty;
2746 return getQualifiedType(result, split.Quals);
2762 SplitQualType canonSplit = getCanonicalType(EltTy).split();
2805 SplitQualType canonElementType = getCanonicalType(elementType).split();
2864 SplitQualType canonSplit = getCanonicalType(elementType).split();
4513 SplitQualType split = T.getSplitDesugaredType();
4514 Qualifiers qs = split
4603 SplitQualType split = type.getSplitDesugaredType(); local
[all...]
/external/libnl/include/linux-private/linux/
H A Dpkt_sched.h425 __u32 split; member in struct:tc_cbq_fopt
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs.c654 bool split; local
680 split = false;
687 split = true;
708 if (split) {
1458 * output order. HMPF. Also need to split the output values manually.
1630 /* If there are more srcs than rows then we need to split alpha up */
1901 /* We split the row_mask and row_alpha as we want 128bit interleave */
/external/opencv/ml/include/
H A Dml.h681 CvDTreeSplit* split; member in struct:CvDTreeNode
889 virtual void write_split( CvFileStorage* fs, CvDTreeSplit* split );
/external/opencv/ml/src/
H A Dmltree.cpp269 // now calculate the maximum size of split,
810 node->split = 0;
847 CvDTreeSplit* split = (CvDTreeSplit*)cvSetNew( split_heap ); local
848 split->var_idx = vi;
849 split->ord.c = cmp_val;
850 split->ord.split_point = split_point;
851 split->inversed = inversed;
852 split->quality = quality;
853 split->next = 0;
855 return split;
861 CvDTreeSplit* split = (CvDTreeSplit*)cvSetNew( split_heap ); local
877 CvDTreeSplit* split = node->split; local
1385 CvDTreeSplit* split; local
1530 CvDTreeSplit *best_split = 0, *split = 0, *t; local
2171 CvDTreeSplit* split = data->new_split_cat( vi, 0 ); local
2445 CvDTreeSplit* split = node->split->next; local
2939 CvDTreeSplit* split = node->split; local
3025 CvDTreeSplit* split = node->split; local
3090 CvDTreeSplit* split; local
3194 CvDTreeSplit* split = 0; local
3323 CvDTreeSplit* split; local
[all...]
/external/parameter-framework/upstream/parameter/
H A DParameterMgr.cpp1218 return split(remoteCommand.getArgument(0), remoteCommand.getArgument(1), strResult)
2464 bool CParameterMgr::split(const string &strDomain, const string &strConfigurableElementPath, function in class:CParameterMgr
2492 bool isSuccess = getConfigurableDomains()->split(strDomain, pConfigurableElement, infos);
/external/python/cpython3/Lib/
H A Dturtle.py114 from os.path import isfile, split, join namespace
181 key, value = line.split("=")
221 head, tail = split(__file__)
3843 if x.split('.')[1] not in _alias_list])
/external/skia/src/pathops/
H A DSkPathOpsTSect.h177 bool split(SkTSpan* work, SkArenaAlloc* heap) { function in class:SkTSpan
544 // use line intersection to guess a better split than 0.5
973 // are split
1841 /* Each span has a range of opposite spans it intersects. After the span is split in two,
2176 // split it
2187 if (!half1->split(largest1, &sect1->fHeap)) {
2207 if (!half2->split(largest2, &sect2->fHeap)) {
/external/skqp/src/pathops/
H A DSkPathOpsTSect.h177 bool split(SkTSpan* work, SkArenaAlloc* heap) { function in class:SkTSpan
544 // use line intersection to guess a better split than 0.5
973 // are split
1841 /* Each span has a range of opposite spans it intersects. After the span is split in two,
2176 // split it
2187 if (!half1->split(largest1, &sect1->fHeap)) {
2207 if (!half2->split(largest2, &sect2->fHeap)) {
/external/iproute2/include/uapi/linux/
H A Dpkt_sched.h470 __u32 split; member in struct:tc_cbq_fopt
/external/kernel-headers/original/uapi/linux/
H A Dpkt_sched.h471 __u32 split; member in struct:tc_cbq_fopt
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c322 var split[4]; member in struct:__anon12855
327 v4x4 split[4]; member in struct:__anon12856
332 v8x8 split[4]; member in struct:__anon12857
337 v16x16 split[4]; member in struct:__anon12858
342 v32x32 split[4]; member in struct:__anon12859
347 var *split[4]; member in struct:__anon12860
364 node->split[i] = &vt->split[i].part_variances.none;
371 node->split[i] = &vt->split[
[all...]
/external/python/cpython2/Objects/
H A Dunicodeobject.c2350 /* On narrow builds we split characters outside the BMP into two
5357 #include "stringlib/split.h"
5844 PyObject *split(PyUnicodeObject *self, function
6064 list = split(self, NULL, -1);
7472 result = split((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit);
7480 "S.split([sep [,maxsplit]]) -> list of strings\n\
7494 if (!PyArg_ParseTuple(args, "|On:split", &substring, &maxcount))
7498 return split(self, NULL, maxcount);
7500 return split(self, (PyUnicodeObject *)substring, maxcount);
7915 {"split", (PyCFunctio
[all...]
/external/clang/include/clang/AST/
H A DType.h539 /// A std::pair-like structure for storing a qualified type split
644 SplitQualType split() const;
925 return getAsString(split());
927 static std::string getAsString(SplitQualType split) { argument
928 return getAsString(split.Ty, split.Quals);
937 print(split(), OS, Policy, PlaceHolder, Indentation);
939 static void print(SplitQualType split, raw_ostream &OS, argument
942 return print(split.Ty, split
953 getAsStringInternal(SplitQualType split, std::string &out, const PrintingPolicy &policy) argument
5270 inline SplitQualType QualType::split() const { function in class:clang::FunctionType::ExtInfo::FunctionProtoType::QualType
[all...]
/external/python/cpython3/Objects/
H A Dunicodeobject.c778 #include "stringlib/split.h"
788 #include "stringlib/split.h"
799 #include "stringlib/split.h"
810 #include "stringlib/split.h"
10241 split(PyObject *self, function
12821 return split(s, sep, maxsplit);
12825 "S.split(sep=None, maxsplit=-1) -> list of strings\n\
12840 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|On:split",
12845 return split(self, NULL, maxcount);
12848 return split(sel
[all...]
/external/toybox/generated/
H A Dglobals.h1331 // toys/posix/split.c
1545 struct split_data split; member in union:global_union
/external/error_prone/checkerframework/
H A Djavacutil-2.2.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/checkerframework/ org/checkerframework/javacutil/ org/checkerframework/javacutil/dist/ ...
/external/guice/extensions/struts2/lib/
H A Djetty-util-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/util/ org/mortbay/util/ajax/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/kotlinc/lib/
H A Dkotlin-annotation-processing.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/kotlin-annotation-processing.kotlin_module ...
/external/robolectric/v3/runtime/
H A Dtagsoup-1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/external/v8/src/
H A Dobjects.cc2833 FILE* file, const char* reason, int modify_index, int split,
2868 os << "+" << (descriptors - split) << " maps";
8979 // In case the map did not own its own descriptors, a split is forced by
19990 // Maybe split special_exports into indirect_exports and star_exports.
2832 PrintGeneralization( FILE* file, const char* reason, int modify_index, int split, int descriptors, bool descriptor_to_field, Representation old_representation, Representation new_representation, MaybeHandle<FieldType> old_field_type, MaybeHandle<Object> old_value, MaybeHandle<FieldType> new_field_type, MaybeHandle<Object> new_value) argument
/external/robolectric/v1/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 931 milliseconds

12345678910