/external/llvm/tools/lto/ |
LTOModule.h | 129 /// getTargetOptions - Fill the TargetOptions object with the options 131 static void getTargetOptions(llvm::TargetOptions &Options);
|
/external/mesa3d/src/egl/main/ |
egldisplay.h | 133 /* options that affect how the driver initializes the display */ 137 } Options;
|
/external/regex-re2/re2/ |
filtered_re2.cc | 25 const RE2::Options& options, int* id) { 26 RE2* re = new RE2(pattern, options); 30 if (options.log_errors()) {
|
set.cc | 15 RE2::Set::Set(const RE2::Options& options, RE2::Anchor anchor) { 16 options_.Copy(options);
|
re2.cc | 36 const int RE2::Options::kDefaultMaxMem; // initialized in re2.h 39 RE2::Options::Options(RE2::CannedOptions opt) 127 RE2::RE2(const StringPiece& pattern, const Options& options) { 128 Init(pattern, options); 131 int RE2::Options::ParseFlags() const { 138 case RE2::Options::EncodingUTF8: 140 case RE2::Options::EncodingLatin1: 172 void RE2::Init(const StringPiece& pattern, const Options& options) [all...] |
/external/smack/src/org/xbill/DNS/ |
KEYBase.java | 58 if (Options.check("multiline")) {
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
SerializeOptions.java | 10 package com.adobe.xmp.options; 18 * Options for {@link XMPMetaFactory#serializeToBuffer(XMPMeta, SerializeOptions)}. 22 public final class SerializeOptions extends Options 93 * Constructor using inital options 94 * @param options the inital options 95 * @throws XMPException Thrown if options are not consistant. 97 public SerializeOptions(int options) throws XMPException 99 super(options); 352 * <em>Note:</em> This options can only be set by unit tests [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoSource.java | 129 public Bitmap next(BitmapFactory.Options options, int longSide, int shortSide) { 143 image = load(imageData, options, longSide, shortSide); 153 options, longSide, shortSide); 159 public Bitmap load(ImageData data, BitmapFactory.Options options, int longSide, int shortSide) { 168 options.inJustDecodeBounds = true; 169 options.inSampleSize = 1; 170 image = BitmapFactory.decodeStream(new BufferedInputStream(bis), null, options); 171 int rawLongSide = Math.max(options.outWidth, options.outHeight) [all...] |
/external/chromium_org/third_party/codesighs/ |
msmap2tsv.c | 162 ** Options to control how we perform. 193 Options; 198 ** Command line options. 730 int fillSymbolSizeFromDB(Options* inOptions, MSMap_Module* inModule, MSMap_Symbol* inoutSymbol, const char* inMangledName) 2215 Options options; local [all...] |
maptsvdifftool.c | 53 ** Options to control how we perform. 78 Options; 83 ** Command line options. 98 static Switch gSummarySwitch = {"--summary", "-s", 0, NULL, "Only output a single line." DESC_NEWLINE "The cumulative size changes." DESC_NEWLINE "Overrides all other output options."}; 353 int difftool(Options* inOptions) 1296 Options options; local [all...] |
/development/samples/RenderScript/Levels/src/com/android/rs/levels/ |
LevelsRSActivity.java | 187 final BitmapFactory.Options options = new BitmapFactory.Options(); local 188 options.inPreferredConfig = Bitmap.Config.ARGB_8888; 189 Bitmap b = BitmapFactory.decodeResource(getResources(), resource, options);
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/ |
NetworkUtilities.java | 240 final BitmapFactory.Options options = new BitmapFactory.Options(); local 242 null, options);
|
/external/bison/build-aux/ |
vc-list-files | 38 Options:
|
/external/ceres-solver/internal/ceres/ |
program_evaluator.h | 103 ProgramEvaluator(const Evaluator::Options &options, Program* program) 104 : options_(options), 106 jacobian_writer_(options, program), 108 jacobian_writer_.CreateEvaluatePreparers(options.num_threads)) { 112 << "only options.num_threads=1 is supported."; 117 options.num_threads)); 348 Evaluator::Options options_;
|
/external/chromium_org/net/url_request/ |
url_request_context_builder.cc | 102 CookieOptions* options) OVERRIDE { 141 base::Thread::Options(base::MessageLoop::TYPE_IO, 0)); 151 base::Thread::Options(base::MessageLoop::TYPE_DEFAULT, 0));
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
version_set.h | 153 const Options* options, 284 const Options* const options_;
|
/external/chromium_org/tools/grit/grit/ |
grit_runner.py | 124 Global options: 151 class Options(object): 166 """Reads options from the start of args and returns the remainder.""" 228 options = Options() 229 args = options.ReadOptions(args) # args may be shorter after this 240 os.stat(options.input) 249 ' from the current directory.' % options.input) 252 if options.psyco: 259 if options.hash [all...] |
/external/chromium_org/tools/traceline/traceline/ |
main.cc | 63 // Encapsulate the configuration options to the playground. 64 class Options { 66 Options() 96 Playground(HANDLE proc, const Options& options) 100 options_(options) { 1233 Playground::Options options; local [all...] |
/external/eigen/Eigen/src/Geometry/ |
RotationBase.h | 88 template<int Mode, int Options> 89 inline Transform<Scalar,Dim,Mode> operator*(const Transform<Scalar,Dim,Mode,Options>& t) const
|
Translation.h | 124 template<int Mode, int Options> 125 inline Transform<Scalar,Dim,Mode> operator* (const Transform<Scalar,Dim,Mode,Options>& t) const
|
/external/eigen/test/ |
permutationmatrices.cpp | 19 Options = MatrixType::Options };
|
/external/jdiff/src/jdiff/ |
JDiff.java | 146 * parse the options it does not recognize. It then calls 153 return Options.optionLength(option); 157 * After parsing the available options using {@link #optionLength}, 158 * Javadoc invokes this method with an array of options-arrays. 160 * @param options an array of String arrays, one per option 162 * @return true if no errors were found, and all options are 165 public static boolean validOptions(String[][] options, 167 return Options.validOptions(options, reporter);
|
/external/llvm/lib/CodeGen/ |
LLVMTargetMachine.cpp | 40 // Enable or disable FastISel. Both options are needed, because 78 TargetOptions Options, 81 : TargetMachine(T, Triple, CPU, FS, Options) { 99 // Set PassConfig options provided by TargetMachine.
|
/external/llvm/lib/MC/ |
MachObjectWriter.cpp | 380 const std::vector<std::string> &Options, bool is64Bit) 383 for (unsigned i = 0, e = Options.size(); i != e; ++i) 384 Size += Options[i].size() + 1; 389 const std::vector<std::string> &Options) 391 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit()); 397 Write32(Options.size()); 399 for (unsigned i = 0, e = Options.size(); i != e; ++i) { 401 const std::string &Option = Options[i]; 844 // Write the linker options load commands. [all...] |
/external/llvm/lib/Target/ |
TargetLoweringObjectFile.cpp | 131 if (isSuitableForBSS(GVar, TM.Options.NoZerosInBSS)) 141 if (isSuitableForBSS(GVar, TM.Options.NoZerosInBSS)) {
|