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

12345678

/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 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) {
/external/clang/test/Parser/
H A Dpragma-loop.cpp6 void test(int *List, int Length) { argument
12 while (i + 1 < Length) {
19 while (i < Length) {
26 while (i - 1 < Length) {
31 while (i - 2 < Length) {
36 while (i - 3 < Length) {
40 int VList[Length];
68 while (i-4 < Length) {
75 while (i-5 < Length) {
82 while (i-6 < Length) {
[all...]
/external/llvm/lib/Support/
H A DLineIterator.cpp63 size_t Length = 0; local
65 ++Length;
66 } while (Pos[Length] != '\0' && Pos[Length] != '\n');
68 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,
/external/chromium_org/testing/gtest/samples/
H A Dsample2.h76 size_t Length() const { function in class:MyString
/external/chromium_org/third_party/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/chromium_org/ui/gfx/geometry/
H A Dvector2d.cc31 float Vector2d::Length() const { function in class:gfx::Vector2d
/external/clang/test/PCH/
H A Dpragma-loop.cpp22 inline void run1(int *List, int Length) { argument
27 while (i < Length) {
33 inline void run2(int *List, int Length) { argument
38 while (i - 1 < Length) {
44 inline void run3(int *List, int Length) { argument
49 while (i - 3 < Length) {
/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/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/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dstringutil.h98 size_t Length() const { function in class:i18n::phonenumbers::StringHolder
/external/chromium_org/third_party/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/chromium_org/ui/base/l10n/
H A Dtime_format.h29 enum Length { enum in class:ui::TimeFormat
40 Length length,
72 Length length,
/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-loop.cpp4 void while_test(int *List, int Length) { argument
12 while (i < Length) {
20 void do_test(int *List, int Length) { argument
28 } while (i < Length);
32 void for_test(int *List, int Length) { argument
36 for (int i = 0; i < Length; i++) {
55 void disable_test(int *List, int Length) { argument
57 for (int i = 0; i < Length; i++) {
68 void for_define_test(int *List, int Length, int Value) { argument
71 for (int i = 0; i < Length;
79 for_template_test(A *List, int Length, A Value) argument
90 for_template_define_test(A *List, int Length, A Value) argument
104 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* @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth, i32 0, i32 0), align 1
33 bool bar(Length
[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 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.h27 explicit Vector(unsigned Length) argument
28 : Length(Length), Data(new PBQPNum[Length]) {
30 // << this << " (length " << Length << ")\n";
34 Vector(unsigned Length, PBQPNum InitVal) argument
35 : Length(Length), Data(new PBQPNum[Length]) {
37 // << 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/chromium_org/gin/
H A Darguments.h35 if (next_ >= info_->Length()) {
45 if (next_ >= info_->Length()) {
49 int remaining = info_->Length() - next_;
60 if (next_ >= info_->Length())
66 int Length() const { function in class:gin::Arguments
67 return info_->Length();
/external/chromium_org/sdch/open-vcdiff/src/
H A Dvarint_bigendian.cc110 int VarintBE<SignedIntegerType>::Length(SignedIntegerType v) { function in class:open_vcdiff::VarintBE
113 << " passed to VarintBE::Length,"

Completed in 865 milliseconds

12345678