Searched refs:modified (Results 1 - 25 of 128) sorted by relevance

123456

/external/vboot_reference/cgpt/
H A Dcgpt_repair.c28 if (drive.gpt.modified & GPT_MODIFIED_HEADER1)
30 if (drive.gpt.modified & GPT_MODIFIED_ENTRIES1)
32 if (drive.gpt.modified & GPT_MODIFIED_ENTRIES2)
34 if (drive.gpt.modified & GPT_MODIFIED_HEADER2)
H A Dcgpt_legacy.c28 drive.gpt.modified |= (GPT_MODIFIED_HEADER1 | GPT_MODIFIED_ENTRIES1 |
34 drive.gpt.modified |= (GPT_MODIFIED_HEADER1 | GPT_MODIFIED_ENTRIES1 |
/external/proguard/src/proguard/classfile/editor/
H A DVariableEditor.java40 private boolean modified; field in class:VariableEditor
67 modified = false;
79 modified = true;
100 if (!modified)
/external/clang/test/SemaCXX/
H A Dnew-delete-0x.cpp25 expected-error {{variably modified type}} \
/external/vboot_reference/firmware/lib/cgptlib/
H A Dcgptlib.c19 gpt->modified = 0;
122 int modified = 0; local
141 modified = 1;
154 modified = 1;
165 modified = 1;
176 modified = 1;
186 if (modified) {
/external/vboot_reference/firmware/lib/
H A Dgpt_misc.c30 gptdata->modified = 0;
126 if (gptdata->modified) {
130 if (gptdata->modified & GPT_MODIFIED_HEADER1) {
144 if (gptdata->modified & GPT_MODIFIED_ENTRIES1) {
163 if (gptdata->modified & GPT_MODIFIED_HEADER2) {
173 if (gptdata->modified & GPT_MODIFIED_ENTRIES2) {
/external/selinux/libsemanage/src/
H A Ddatabase_llist.h29 int modified; member in struct:dbase_llist
41 dbase->modified = 0;
66 dbase->modified = status;
75 return dbase->modified;
H A Ddatabase_policydb.c40 int modified; member in struct:dbase_policydb
50 dbase->modified = 0;
162 if (!dbase->modified)
165 dbase->modified = 0;
172 /* Check if modified */
176 return dbase->modified;
199 tmp_dbase->modified = 0;
239 dbase->modified = 0;
250 dbase->modified = 1;
266 dbase->modified
[all...]
H A Ddatabase_llist.c85 dbase->modified = 0;
158 dbase->modified = 1;
186 dbase->modified = 1;
214 dbase->modified = 1;
300 dbase->modified = 1;
333 dbase->modified = 1;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DLocaleDisplayNames.java303 * Returns the modified locale for an input locale, such as sr → sr-Cyrl, where there is also an sr-Latn in the list
307 public final ULocale modified; field in class:LocaleDisplayNames.UiListItem
309 * Returns the name of the modified locale in the display locale, such as "Englisch (VS)" (for 'en-US', where the display locale is 'de').
315 * Returns the name of the modified locale in itself, such as "English (US)" (for 'en-US').
324 * @param modified modified for an input locale
325 * @param nameInDisplayLocale name of the modified locale in the display locale
326 * @param nameInSelf name of the modified locale in itself
330 public UiListItem(ULocale minimized, ULocale modified, String nameInDisplayLocale, String nameInSelf) { argument
332 this.modified
[all...]
H A DMessagePattern.java399 StringBuilder modified=null;
405 if(modified==null) {
406 modified=new StringBuilder(msg.length()+10).append(msg);
408 modified.insert(part.index, (char)part.value);
411 if(modified==null) {
414 return modified.toString();
788 // Some fields are not final because they are modified during pattern parsing.
/external/llvm/test/MC/Mips/
H A Dhigher-highest-addressing.s32 # Check the case where relocations are not modified by adding +1. The constant
43 # Check the case where %higher is modified by adding +1.
50 # Check the case where both %higher and %highest are modified by adding +1.
/external/boringssl/src/crypto/asn1/
H A Dtasn_utl.c137 enc->modified = 1;
150 enc->modified = 1;
171 enc->modified = 0;
180 if (!enc || enc->modified) {
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/
H A Dsessions_memcache.py46 if self.session is None or not self.session.modified:
/external/harfbuzz_ng/src/
H A Dhb-ot-head-table.hh118 LONGDATETIME modified; /* Number of seconds since 12:00 midnight, member in struct:OT::head
/external/e2fsprogs/intl/
H A Dbindtextdom.c92 modified, only the current value is returned.
94 modified nor returned. */
100 int modified; local
114 modified = 0;
167 modified = 1;
204 modified = 1;
315 modified = 1;
333 /* If we modified any binding, we flush the caches. */
334 if (modified)
/external/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp157 bool modified = false; variable
159 modified |= runOnFunction(F);
161 return modified;
331 bool modified = false; local
366 modified = true;
381 return modified;
535 bool modified = false;
541 modified |= removeUnreachableBlocks(F);
573 // We are inserting a poll, the function is modified
574 modified
[all...]
/external/messageformat/java/com/ibm/icu/text/
H A DMessagePattern.java399 StringBuilder modified=null;
405 if(modified==null) {
406 modified=new StringBuilder(msg.length()+10).append(msg);
408 modified.insert(part.index, (char)part.value);
411 if(modified==null) {
414 return modified.toString();
788 // Some fields are not final because they are modified during pattern parsing.
/external/llvm/lib/Target/Mips/
H A DMipsOs16.cpp118 bool modified = false; local
151 return modified;
/external/vboot_reference/firmware/include/
H A Dgpt_misc.h31 /* Bit masks for GptData.modified field. */
101 /* Which inputs have been modified? GPT_MODIFIED_* */
102 uint8_t modified; member in struct:__anon16871
129 * On return the modified field may be set, if the GPT data has been modified
182 * On return the modified field may be set, if the GPT data has been modified
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DComplexProperty.java111 * Sets the "modified" flag.
113 public void setModified(boolean modified) { argument
114 m_modified = modified;
/external/icu/icu4j/
H A Dadjust_icudt_path.mk3 # appends the path to a dynamically generated modified file to the list of
/external/libvpx/libvpx/tools/
H A Dftfy.sh10 options are given, then the modified files are left in the working tree.
95 MODIFIED_DIFF=modified.diff.$$
122 # Apply the style guide on new and modified files and collect its diff
/external/sqlite/android/
H A DAndroid.mk34 # to easily check what they modified works well or not.
/external/toybox/toys/pending/
H A Dfdisk.c60 int modified; member in struct:part_entry
249 partitions[num_parts-1].modified = 1;
307 pe->modified = change;
335 partitions[0].modified = 1;
527 partitions[i].modified = 0;
585 pe->modified = 1;
588 pe->modified = 1;
595 pe->modified = 1;
604 partitions[i].modified = 1;
623 partitions[i-1].modified
[all...]

Completed in 1156 milliseconds

123456