HomeSort by relevance Sort by last modified time
    Searched defs:modified (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /external/llvm/lib/Target/Mips/
MipsOs16.cpp 118 bool modified = false; local
151 return modified;
  /external/vboot_reference/firmware/lib/cgptlib/
cgptlib.c 19 gpt->modified = 0;
122 int modified = 0; local
141 modified = 1;
154 modified = 1;
165 modified = 1;
176 modified = 1;
186 if (modified) {
  /frameworks/native/libs/ui/tests/
Region_test.cpp 49 Region modified = Region::createTJunctionFreeRegion(original); local
50 verifyNoTJunctions(modified);
52 EXPECT_EQ(modified.end() - modified.begin(), expectedCount);
54 EXPECT_TRUE((original ^ modified).isEmpty());
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 42 /** The list of apps that have been modified since the last notify() call. */
43 public ArrayList<ApplicationInfo> modified = new ArrayList<ApplicationInfo>(); field in class:AllAppsList
73 modified.clear();
154 modified.add(applicationInfo);
  /packages/apps/Launcher3/src/com/android/launcher3/
AllAppsList.java 45 /** The list of apps that have been modified since the last notify() call. */
46 public ArrayList<AppInfo> modified = new ArrayList<AppInfo>(); field in class:AllAppsList
82 modified.clear();
163 modified.add(applicationInfo);
  /external/e2fsprogs/intl/
bindtextdom.c 92 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/proguard/src/proguard/classfile/editor/
VariableEditor.java 40 private boolean modified; field in class:VariableEditor
67 modified = false;
79 modified = true;
100 if (!modified)
  /external/selinux/libsemanage/src/
database_llist.h 29 int modified; member in struct:dbase_llist
41 dbase->modified = 0;
66 dbase->modified = status;
75 return dbase->modified;
database_policydb.c 40 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 = 1
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-head-table.hh 118 LONGDATETIME modified; /* Number of seconds since 12:00 midnight, member in struct:OT::head
  /external/icu/icu4c/source/i18n/
collationdatabuilder.h 76 UBool hasMappings() const { return modified; }
246 UBool modified; member in class:CollationDataBuilder
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
robotparser.py 41 def modified(self): member in class:RobotFileParser
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
robotparser.py 41 def modified(self): member in class:RobotFileParser
  /external/vboot_reference/firmware/include/
gpt_misc.h 31 /* Bit masks for GptData.modified field. */
101 /* Which inputs have been modified? GPT_MODIFIED_* */
102 uint8_t modified; member in struct:__anon21138
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
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RuleLoader.java 179 long modified = file.lastModified(); local
180 if (prevModified.longValue() != modified) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
LocaleDisplayNames.java 303 * 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) {
332 this.modified = modified;
    [all...]
MessagePattern.java 399 StringBuilder modified=null; local
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.
    [all...]
  /external/skia/src/sfnt/
SkOTTable_head.h 77 SK_OT_LONGDATETIME modified; member in struct:SkOTTableHead
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxSessionManager.java 44 boolean modified = false; field in class:BordeauxSessionManager.Session
94 session.modified = true;
145 // Save the session if it's modified.
146 if (session.getValue().modified) {
164 session.modified = false;
  /external/messageformat/java/com/ibm/icu/text/
MessagePattern.java 399 StringBuilder modified=null; local
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.
    [all...]
  /external/openssh/
hostfile.c 471 int modified; member in struct:host_delete_ctx
517 ctx->modified = 1;
550 ctx.modified = 0;
599 ctx.modified = 1;
604 if (ctx.modified) {
  /frameworks/av/media/mtp/
MtpDevice.cpp 452 char created[100], modified[100]; local
454 formatDateTime(info->mDateModified, modified, sizeof(modified));
457 mData.putString(modified);
  /art/runtime/
instrumentation.cc 416 std::list<InstrumentationListener*>* modified; local
418 modified = new std::list<InstrumentationListener*>(*dex_pc_listeners_.get());
420 modified = new std::list<InstrumentationListener*>();
422 modified->push_back(listener);
423 dex_pc_listeners_.reset(modified);
427 std::list<InstrumentationListener*>* modified; local
429 modified = new std::list<InstrumentationListener*>(*field_read_listeners_.get());
431 modified = new std::list<InstrumentationListener*>();
433 modified->push_back(listener);
434 field_read_listeners_.reset(modified);
438 std::list<InstrumentationListener*>* modified; local
449 std::list<InstrumentationListener*>* modified; local
482 std::list<InstrumentationListener*>* modified = local
494 std::list<InstrumentationListener*>* modified = local
506 std::list<InstrumentationListener*>* modified = local
518 std::list<InstrumentationListener*>* modified = local
    [all...]
  /external/icu/icu4c/source/samples/layout/
sfnt.h 155 BigDate modified; member in struct:HEADTable
  /external/icu/icu4c/source/test/letest/
FontObject.h 118 BigDate modified; member in struct:HEADTable

Completed in 412 milliseconds

1 2 3 4 5 6 7