HomeSort by relevance Sort by last modified time
    Searched refs:required (Results 76 - 100 of 3728) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/lldb/source/Interpreter/
OptionGroupBoolean.cpp 21 bool required,
30 m_option_definition.required = required;
OptionGroupString.cpp 21 bool required,
31 m_option_definition.required = required;
OptionGroupUInt64.cpp 21 bool required,
31 m_option_definition.required = required;
  /frameworks/base/keystore/java/android/security/
KeyStoreParameter.java 10 * Unless required by applicable law or agreed to in writing, software
106 public Builder setEncryptionRequired(boolean required) {
107 if (required) {
118 * @throws IllegalArgumentException if a required field is missing
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
address_field_util.h 9 // Unless required by applicable law or agreed to in writing, software
35 // Clears |fields|, parses |required|, and adds the required fields to |fields|.
38 void ParseAddressFieldsRequired(const std::string& required,
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
RecyclableBufferedInputStream.java 13 * Unless required by applicable law or agreed to in writing, software
29 * drawback is that some extra space is required to hold the buffer and that
279 int required; local
289 required = byteCount - copylength;
291 required = byteCount;
297 * If we're not marked and the required size is greater than the
300 if (markpos == -1 && required >= localBuf.length) {
301 read = localIn.read(buffer, offset, required);
303 return required == byteCount ? -1 : byteCount - required;
    [all...]
  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 11 * Unless required by applicable law or agreed to in writing, software
26 * drawback is that some extra space is required to hold the buffer and that
268 int required; local
278 required = byteCount - copylength;
280 required = byteCount;
286 * If we're not marked and the required size is greater than the
289 if (markpos == -1 && required >= localBuf.length) {
290 read = localIn.read(buffer, byteOffset, required);
292 return required == byteCount ? -1 : byteCount - required;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
DateTimeChooser.h 63 bool required; member in struct:WebCore::DateTimeChooserParameters
  /external/lldb/include/lldb/Interpreter/
OptionGroupBoolean.h 32 bool required,
OptionGroupString.h 30 bool required,
OptionGroupUInt64.h 30 bool required,
OptionGroupFile.h 32 bool required,
90 bool required,
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverPropertyInfoTest.java 11 * Unless required by applicable law or agreed to in writing, software
77 assertEquals(testRequired, aDriverPropertyInfo.required);
83 aDriverPropertyInfo.required = updateRequired;
89 assertEquals(updateRequired, aDriverPropertyInfo.required);
  /external/llvm/test/MC/AsmParser/
macro-qualifier-diagnostics.s 24 # CHECK: warning: pointless default value for required parameter 'parameter' in macro 'pointless_default'
33 # CHECK: error: missing value for required parameter 'parameter' in macro 'missing_required_parameter'
42 # CHECK: error: missing value for required parameter 'second' in macro 'missing_second_required_argument'
51 # CHECK: error: missing value for required parameter 'second' in macro 'second_third_required'
55 # CHECK: error: missing value for required parameter 'third' in macro 'second_third_required'
61 # CHECK: error: missing value for required parameter 'second' in macro 'second_third_required'
  /libcore/luni/src/test/java/libcore/java/sql/
OldDriverPropertyInfoTest.java 11 * Unless required by applicable law or agreed to in writing, software
61 boolean required = info[0].required;
62 assertFalse(required);
  /external/chromium_org/third_party/libphonenumber/src/resources/
phonemetadata.proto 10 * Unless required by applicable law or agreed to in writing, software
35 required string pattern = 1;
43 required string format = 2;
152 required string id = 9;
  /external/chromium_org/build/toolchain/win/
setup_toolchain.py 23 """Extracts environment variables required for the toolchain from the
47 for required in ('SYSTEMROOT', 'TEMP', 'TMP'):
48 if required not in result:
50 'required to be set to valid path' % required)
  /external/chromium_org/remoting/host/installer/mac/Scripts/
remoting_postflight.sh 65 auth required pam_deny.so
66 account required pam_permit.so
67 password required pam_deny.so
68 session required pam_deny.so
  /external/chromium_org/sandbox/win/src/
interception.cc 166 // a new FunctionInfo is required per function
244 size_t required = offsetof(DllPatchInfo, dll_name) + local
246 required = RoundUpToMultiple(required, sizeof(size_t));
247 if (*buffer_bytes < required)
250 *buffer_bytes -= required;
251 *buffer = reinterpret_cast<char*>(*buffer) + required;
255 dll_info->record_bytes = required;
256 dll_info->offset_to_functions = required;
284 size_t required = offsetof(FunctionInfo, function) local
    [all...]
  /external/chromium_org/tools/site_compare/commands/
measure.py 37 ["-log", "--logfile"], "File to write output", type="string", required=True)
timeload.py 36 type="string", required=True)
39 type="string", required=False)
43 type="string", required=False)
66 ["-log", "--logfile"], "File to write output", type="string", required=True)
  /external/lldb/include/lldb/
lldb-private-types.h 59 bool required; // This option is required (in the current usage level) member in struct:lldb_private::__anon29038
  /frameworks/wilhelm/tests/examples/
slesTestEffectCapabilities.cpp 10 * Unless required by applicable law or agreed to in writing, software
80 SLboolean required[MAX_NUMBER_INTERFACES]; local
83 /* Initialize arrays required[] and iidArray[] */
85 required[i] = SL_BOOLEAN_FALSE;
90 required[0] = SL_BOOLEAN_TRUE;
93 result = slCreateEngine( &sl, 1, EngineOption, 1, iidArray, required);
  /external/chromium_org/native_client_sdk/src/doc/reference/
nacl-manifest-format.rst 23 section that discusses each field in detail. The only field that is required
29 // Required
32 // Only required for glibc
60 // url is required
68 // url is required
102 // Required: at least one entry
117 // Required: at least one entry
262 required to load the Native Client application.
  /external/lldb/examples/python/
disasm-stress-test.py 7 parser.add_argument('--arch', required=True, action='store', help='The architecture whose disassembler is to be tested')
8 parser.add_argument('--bytes', required=True, action='store', type=int, help='The byte width of instructions for that architecture')
9 parser.add_argument('--random', required=False, action='store_true', help='Enables non-sequential testing')
10 parser.add_argument('--start', required=False, action='store', type=int, help='The first instruction value to test')
11 parser.add_argument('--skip', required=False, action='store', type=int, help='The interval between instructions to test')
12 parser.add_argument('--log', required=False, action='store', help='A log file to write the most recent instruction being tested')
13 parser.add_argument('--time', required=False, action='store_true', help='Every 100,000 instructions, print an ETA to standard out')
14 parser.add_argument('--lldb', required=False, action='store', help='The path to LLDB.framework, if LLDB should be overridden')

Completed in 4346 milliseconds

1 2 34 5 6 7 8 91011>>