Searched defs:Length (Results 1 - 25 of 160) sorted by relevance

1234567

/external/clang/test/Misc/
H A Dast-print-pragmas-xfail.cpp6 void run1(int *List, int Length) { argument
16 // CHECK-NEXT: while (i < Length)
17 while (i < Length) {
H A Dbackend-optimization-failure.cpp7 void test_switch(int *A, int *B, int Length) { argument
9 for (int i = 0; i < Length; i++) {
H A Dast-print-pragmas.cpp9 void test(int *List, int Length) { argument
13 // CHECK-NEXT: while (i < Length)
14 while (i < Length) {
24 // CHECK-NEXT: while (i - 1 < Length)
25 while (i - 1 < Length) {
35 // CHECK-NEXT: while (i - 2 < Length)
36 while (i - 2 < Length) {
43 void test_nontype_template_param(int *List, int Length) { argument
45 for (int i = 0; i < Length; i++) {
53 void test_templates(int *List, int Length) { argument
[all...]
/external/clang/test/Parser/
H A Dpragma-unroll.cpp6 void test(int *List, int Length) { argument
10 while (i + 1 < Length) {
15 while (i < Length) {
20 while (i - 1 < Length) {
25 while (i - 2 < Length) {
32 while (i-6 < Length) {
37 while (i-7 < Length) {
47 while (i-8 < Length) {
52 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int j = Length;
54 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int k = Length;
[all...]
H A Dpragma-loop.cpp7 void test_nontype_template_param(int *List, int Length) { argument
9 for (int i = 0; i < Length; i++) {
14 for (int i = 0; i < Length; i++) {
20 void test_nontype_template_vectorize(int *List, int Length) { argument
22 for (int i = 0; i < Length; i++) {
27 for (int i = 0; i < Length; i++) {
33 void test_nontype_template_interleave(int *List, int Length) { argument
35 for (int i = 0; i < Length; i++) {
40 for (int i = 0; i < Length; i++) {
46 void test_nontype_template_char(int *List, int Length) { argument
54 test_nontype_template_bool(int *List, int Length) argument
62 test_nontype_template_badarg(int *List, int Length) argument
71 test_type_template_vectorize(int *List, int Length) argument
79 test(int *List, int Length) argument
[all...]
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample2.h76 size_t Length() const { function in class:MyString
/external/libnfc-nxp/src/
H A DphFriNfc_IntNdefMap.c120 uint16_t Length)
123 if(Length == PH_FRINFC_NDEFMAP_MFUL_VAL0)
119 phFriNfc_NdefMap_SetCardState(phFriNfc_NdefMap_t *NdefMap, uint16_t Length) argument
H A DphFriNfc_MapTools.c65 uint32_t Length)
68 if(Length == PH_FRINFC_NDEFMAP_MFUL_VAL0)
64 phFriNfc_MapTool_SetCardState(phFriNfc_NdefMap_t *NdefMap, uint32_t Length) argument
/external/llvm/lib/Support/
H A DLineIterator.cpp88 size_t Length = 0; local
89 while (Pos[Length] != '\0' && !isAtLineEnd(&Pos[Length])) {
90 ++Length;
93 CurrentLine = StringRef(Pos, Length);
H A DUnicode.cpp345 unsigned Length; local
346 for (size_t i = 0, e = Text.size(); i < e; i += Length) {
347 Length = getNumBytesForUTF8(Text[i]);
348 if (Length <= 0 || i + Length > Text.size())
353 if (conversionOK != ConvertUTF8toUTF32(&Start, Start + Length, &Target,
H A DStringRef.cpp41 static int ascii_strncasecmp(const char *LHS, const char *RHS, size_t Length) { argument
42 for (size_t I = 0; I < Length; ++I) {
53 if (int Res = ascii_strncasecmp(Data, RHS.Data, std::min(Length, RHS.Length)))
55 if (Length == RHS.Length)
57 return Length < RHS.Length ? -1 : 1;
62 return Length >= Prefix.Length
[all...]
/external/protobuf/gtest/samples/
H A Dsample2.h77 size_t Length() const { function in class:MyString
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfEncryptionCommonDictionary_autogen.cpp35 int64_t SkPdfEncryptionCommonDictionary::Length(SkPdfNativeDoc* doc) { function in class:SkPdfEncryptionCommonDictionary
36 SkPdfNativeObject* ret = get("Length", "");
44 return get("Length", "") != NULL;
/external/clang/include/clang/Tooling/
H A DReplacementsYaml.h36 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
40 Length(R.getLength()), ReplacementText(R.getReplacementText()) {}
43 return clang::tooling::Replacement(FilePath, Offset, Length,
49 unsigned int Length; member in struct:llvm::yaml::MappingTraits::NormalizedReplacement
58 Io.mapRequired("Length", Keys->Length);
/external/clang/test/CodeGen/
H A Dpragma-unroll.cpp4 void while_test(int *List, int Length) { argument
9 while (i < Length) {
17 void do_test(int *List, int Length) { argument
25 } while (i < Length);
29 void for_test(int *List, int Length) { argument
31 for (int i = 0; i < Length; i++) {
51 void for_define_test(int *List, int Length, int Value) { argument
53 for (int i = 0; i < Length; i++) {
61 void for_template_test(A *List, int Length, A Value) { argument
63 for (int i = 0; i < Length;
71 for_template_define_test(A *List, int Length, A Value) argument
82 template_test(double *List, int Length) argument
[all...]
/external/clang/test/CodeGenCXX/
H A D2012-03-16-StoreAlign.cpp4 struct Length { struct
5 Length(double v) { function in struct:Length
9 bool operator==(const Length& o) const {
12 bool operator!=(const Length& o) const { return !(*this == o); }
22 static Length inchLength(double inch);
23 static bool getPageSizeFromName(const Length &A) {
24 static const Length legalWidth = inchLength(8.5);
30 // CHECK: @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth = linkonce_odr global %struct.Length zeroinitializer, align 4
31 // CHECK: store float %{{.*}}, float* getelementptr inbounds (%struct.Length, %struct.Length*
[all...]
/external/clang/test/PCH/
H A Dpragma-loop.cpp27 inline void run1(int *List, int Length) { argument
32 while (i < Length) {
38 inline void run2(int *List, int Length) { argument
43 while (i - 1 < Length) {
49 inline void run3(int *List, int Length) { argument
54 while (i - 3 < Length) {
60 inline void run4(int *List, int Length) { argument
63 while (i - 3 < Length) {
69 inline void run5(int *List, int Length) { argument
72 while (i - 3 < Length) {
78 run6(int *List, int Length) argument
88 run7(int *List, int Length) argument
[all...]
/external/clang/unittests/Format/
H A DFormatTestJS.cpp23 unsigned Length, const FormatStyle &Style) {
26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
22 format(llvm::StringRef Code, unsigned Offset, unsigned Length, const FormatStyle &Style) argument
H A DFormatTestJava.cpp23 unsigned Length, const FormatStyle &Style) {
26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
22 format(llvm::StringRef Code, unsigned Offset, unsigned Length, const FormatStyle &Style) argument
H A DFormatTestProto.cpp23 unsigned Length, const FormatStyle &Style) {
26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
22 format(llvm::StringRef Code, unsigned Offset, unsigned Length, const FormatStyle &Style) argument
/external/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h29 explicit Vector(unsigned Length) argument
30 : Length(Length), Data(new PBQPNum[Length]) {
32 // << this << " (length " << Length << ")\n";
36 Vector(unsigned Length, PBQPNum InitVal) argument
37 : Length(Length), Data(new PBQPNum[Length]) {
39 // << this << " (length " << Length << ", fil
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.cc46 int32_t FontData::Length() const { function in class:sfntly::FontData
47 return std::min<int32_t>(array_->Length() - bound_offset_, bound_length_);
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvreader.cpp86 int MkvReader::Length(long long* total, long long* available) { function in class:mkvparser::MkvReader
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.h26 uint32_t Length; member in struct:llvm::DWARFDebugArangeSet::Header
42 uint64_t Length; member in struct:llvm::DWARFDebugArangeSet::Descriptor
43 uint64_t getEndAddress() const { return Address + Length; }
H A DDWARFDebugLoc.h62 uint32_t Length; member in struct:llvm::DWARFDebugLocDWO::Entry

Completed in 660 milliseconds

1234567