Searched refs:is (Results 351 - 375 of 7284) sorted by last modified time

<<11121314151617181920>>

/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.io.File) java.io.BufferedReader is java.util.Formatter stdout String line ProcessBuilder pb ...
/external/smali/
H A Dgradlew.bat27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
41 echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
/external/smali/smali/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/external/sonivox/arm-fm-22k/host_src/
H A Darm-fm-22k.mak4 # This makefile is intended for use with GNU make.
/external/sonivox/arm-fm-22k/lib_src/
H A Darm-fm-22k_lib.mak4 # This makefile is intended for use with GNU make.
/external/scrypt/
H A DScrypt.mk17 # in the NDK yet. This can be removed when a clang version that is fast enough
/external/sepolicy/
H A DAndroid.mk11 # is frozen, we should flip this to true. This forces any currently
/external/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
143 bool ByteArray::CopyFrom(InputStream* is, int32_t length) { argument
148 while ((bytes_read = is->Read(&b, 0, buffer_length)) > 0) {
163 bool ByteArray::CopyFrom(InputStream* is) { argument
168 while ((bytes_read = is->Read(&b, 0, buffer_length)) > 0) {
H A Dbyte_array.h11 * distributed under the License is distributed on an "AS IS" BASIS,
37 // Gets the maximum size of the array. This is the maximum number of bytes that
42 // Determines whether or not this array is growable or of fixed size.
78 // buffer is put into the array unless that would extend beyond the length and
131 // @param is the source
133 virtual bool CopyFrom(InputStream* is, int32_t length);
136 // @param is the source
137 virtual bool CopyFrom(InputStream* is);
140 // filledLength the length that is "filled" and readable counting from offset.
142 // growable is th
[all...]
H A Dfont_input_stream.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
23 FontInputStream::FontInputStream(InputStream* is) argument
24 : stream_(is), position_(0), length_(0), bounded_(false) {
27 FontInputStream::FontInputStream(InputStream* is, size_t length) argument
28 : stream_(is), position_(0), length_(length), bounded_(true) {
H A Dfont_input_stream.h11 * distributed under the License is distributed on an "AS IS" BASIS,
41 // January 1, 1904. The value is represented as a signed 64-bit
46 // defining another layer of abstraction. The wrapped output stream is
52 // @param is input stream to wrap
53 explicit FontInputStream(InputStream* is);
56 // @param is input stream to wrap
58 FontInputStream(InputStream* is, size_t length);
H A Dwritable_font_data.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
158 void WritableFontData::CopyFrom(InputStream* is, int32_t length) { argument
159 array_->CopyFrom(is, length);
162 void WritableFontData::CopyFrom(InputStream* is) { argument
163 array_->CopyFrom(is);
H A Dwritable_font_data.h11 * distributed under the License is distributed on an "AS IS" BASIS,
31 // Constructs a writable font data object. If the length is specified as
33 // is zero or less then a growable font data object will be created and the
58 // @return the number of bytes actually written; -1 if the index is outside
68 // @return the number of bytes actually written; -1 if the index is outside
88 // Writes padding to the FontData. The padding byte written is 0x00.
105 // @throws IndexOutOfBoundsException if index is outside the FontData's range
112 // @throws IndexOutOfBoundsException if index is outside the FontData's range
119 // @throws IndexOutOfBoundsException if index is outside the FontData's range
126 // @throws IndexOutOfBoundsException if index is outsid
[all...]
/external/sfntly/cpp/src/sfntly/
H A Dfont.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
216 InputStream* is) {
218 builder->LoadFont(is);
322 void Font::Builder::LoadFont(InputStream* is) { argument
323 // Note: we do not throw exception here for is. This is more of an assertion.
324 assert(is);
325 FontInputStream font_is(is);
335 // Note: we do not throw exception here for is. This is mor
215 GetOTFBuilder(FontFactory* factory, InputStream* is) argument
480 ReadHeader(FontInputStream* is, HeaderOffsetSortedSet* records) argument
524 LoadTableData(HeaderOffsetSortedSet* headers, FontInputStream* is, DataBlockMap* table_data) argument
[all...]
H A Dfont.h11 * distributed under the License is distributed on an "AS IS" BASIS,
33 // extracted out for easier reference from other classes. Offset is the
34 // one that is kept within class.
122 // An sfnt container font object. This object is immutable and thread safe. To
127 // immutable Font objects. The builder is a one use non-thread safe object and
128 // once the Font object has been created it is no longer usable. To create a
135 GetOTFBuilder(FontFactory* factory, InputStream* is);
160 // Get the table builder for the given tag. If there is no builder for that
167 // @return new empty table of the type specified by tag; if tag is not known
168 // then a generic OpenTypeTable is returne
[all...]
H A Dfont_factory.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
41 void FontFactory::LoadFonts(InputStream* is, FontArray* output) { argument
43 PushbackInputStream* pbis = down_cast<PushbackInputStream*>(is);
69 void FontFactory::LoadFontsForBuilding(InputStream* is, argument
71 PushbackInputStream* pbis = down_cast<PushbackInputStream*>(is);
111 CALLER_ATTACH Font* FontFactory::LoadSingleOTF(InputStream* is) { argument
113 builder.Attach(LoadSingleOTFForBuilding(is));
123 void FontFactory::LoadCollection(InputStream* is, FontArray* output) { argument
125 LoadCollectionForBuilding(is, &ba);
149 Font::Builder* FontFactory::LoadSingleOTFForBuilding(InputStream* is) { argument
166 LoadCollectionForBuilding(InputStream* is, FontBuilderArray* builders) argument
[all...]
H A Dfont_factory.h11 * distributed under the License is distributed on an "AS IS" BASIS,
36 // If a font is fingerprinted then a SHA-1 hash is generated at load time and
37 // stored in the font. This is useful for uniquely identifying fonts. By
38 // default this is turned on.
48 // the data in the stream cannot be parsed or is invalid an array of size zero
50 void LoadFonts(InputStream* is, FontArray* output);
57 // the data in the stream cannot be parsed or is invalid an array of size zero
66 // cannot be parsed or is invalid an array of size zero will be returned.
67 void LoadFontsForBuilding(InputStream* is, FontBuilderArra
[all...]
/external/sfntly/cpp/src/test/
H A Dbitmap_table_test.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
111 // Strike 4 Index Sub Table 1 is a Format 3
156 MemoryInputStream is; local
157 is.Attach(os.Get(), os.Size());
159 factory->LoadFonts(&is, &font_array);
164 // Strike 4 Index Sub Table 1 is a Format 4
H A Dfile_io_test.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
46 FileInputStream is; local
47 is.Open(SAMPLE_TTF_FILE);
48 EXPECT_EQ(length, (size_t)is.Available());
50 is.Read(&b2, 0, length);
51 is.Close();
56 is.Open(SAMPLE_TTF_FILE);
57 is.Skip(89);
58 is.Read(&b2, 0, 100);
63 is
106 FileInputStream is; local
133 FileInputStream is; local
[all...]
H A Dmemory_io_test.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
41 MemoryInputStream is; local
42 is.Attach(&(test_buffer[0]), kTestBufferLen);
43 EXPECT_EQ(is.Available(), (int32_t)kTestBufferLen);
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20
63 EXPECT_EQ(is
[all...]
H A Dname_editing_test.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
73 MemoryInputStream is; local
74 is.Attach(os.Get(), os.Size());
76 factory->LoadFonts(&is, &font_array);
122 MemoryInputStream is; local
123 is.Attach(os.Get(), os.Size());
125 factory->LoadFonts(&is, &font_array);
168 MemoryInputStream is; local
169 is.Attach(os.Get(), os.Size());
171 factory->LoadFonts(&is,
[all...]
H A Dserialization_test.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
47 MemoryInputStream is; local
48 is.Attach(os.Get(), os.Size());
49 factory3->LoadFonts(&is, &new_font_array);
113 MemoryInputStream is; local
114 is.Attach(os.Get(), os.Size());
115 factory3->LoadFonts(&is, &new_font_array);
H A Dtest_font_utils.cc11 * distributed under the License is distributed on an "AS IS" BASIS,
30 FileInputStream is; local
31 is.Open(font_path);
32 factory->LoadFontsForBuilding(&is, builders);
46 FileInputStream is; local
47 is.Open(font_path);
48 factory->LoadFonts(&is, fonts);
49 is.Close();
/external/skia/
H A DAndroid.mk20 # (a) If libskia is built in release, then define SK_RELEASE when building
22 # (b) If libskia is built with debugging (see step 2), then no changes are
/external/skia/bench/
H A DBitmapScaleBench.cpp4 * Use of this source code is governed by a BSD-style license that can be
23 BitmapScaleBench( int is, int os) { argument
24 fInputSize = is;
87 BitmapFilterScaleBench( int is, int os) : INHERITED(is, os) { argument

Completed in 240 milliseconds

<<11121314151617181920>>