HomeSort by relevance Sort by last modified time
    Searched defs:extend (Results 51 - 75 of 309) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
APSInt.h 85 APSInt extend(uint32_t width) const { function in class:llvm::APSInt
295 return compareValues(I1, I2.extend(I1.getBitWidth()));
297 return compareValues(I1.extend(I2.getBitWidth()), I2);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
APSInt.h 85 APSInt extend(uint32_t width) const { function in class:llvm::APSInt
295 return compareValues(I1, I2.extend(I1.getBitWidth()));
297 return compareValues(I1.extend(I2.getBitWidth()), I2);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
APSInt.h 85 APSInt extend(uint32_t width) const { function in class:llvm::APSInt
295 return compareValues(I1, I2.extend(I1.getBitWidth()));
297 return compareValues(I1.extend(I2.getBitWidth()), I2);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
APSInt.h 85 APSInt extend(uint32_t width) const { function in class:llvm::APSInt
295 return compareValues(I1, I2.extend(I1.getBitWidth()));
297 return compareValues(I1.extend(I2.getBitWidth()), I2);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
APSInt.h 85 APSInt extend(uint32_t width) const { function in class:llvm::APSInt
295 return compareValues(I1, I2.extend(I1.getBitWidth()));
297 return compareValues(I1.extend(I2.getBitWidth()), I2);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
vec.h 654 bool extend = nelems ? !vec_safe_space (v, nelems) : false; local
655 if (extend)
657 return extend;
    [all...]
  /system/tpm/tpm_manager/server/
tpm2_nvram_impl.cc 217 bool extend = (nvram_public.attributes & trunks::TPMA_NV_EXTEND) != 0; local
226 extend ? trunks::TPM_CC_NV_Extend : trunks::TPM_CC_NV_Write,
248 using_owner_authorization, extend,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_abcoll.py 669 def extend(self, values): member in class:MutableSequence
670 'S.extend(iterable) -- extend sequence by appending elements from the iterable'
689 self.extend(values)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_abcoll.py 585 def extend(self, values): member in class:MutableSequence
598 self.extend(values)
  /external/fio/
file.h 26 FIO_FILE_extend = 1 << 2, /* needs extend */
172 FILE_FLAG_FNS(extend); variable
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_l_y_f.py 308 self.coordinates.extend (coordinates)
309 self.flags.extend(flags)
661 allEndPts.extend(e + offset for e in endPts)
662 allCoords.extend(coordinates)
663 allFlags.extend(flags)
956 self.extend(iterable)
979 c._a.extend(self._a)
1007 self._a.extend(tuple(p))
1009 def extend(self, iterable): member in class:GlyphCoordinates
1012 self._a.extend(p
    [all...]
  /external/libmojo/third_party/jinja2/
environment.py 314 def extend(self, **attributes): member in class:Environment
    [all...]
  /external/protobuf/python/google/protobuf/internal/
well_known_types.py 602 repeated_destination.extend(repeated_source)
693 def extend(self, elem_seq): member in class:ListValue
  /external/python/cpython2/Lib/
_abcoll.py 672 def extend(self, values): member in class:MutableSequence
673 'S.extend(iterable) -- extend sequence by appending elements from the iterable'
692 self.extend(values)
  /external/tensorflow/tensorflow/python/debug/cli/
debugger_cli_common.py 250 def extend(self, other): member in class:RichTextLines
251 """Extend this instance of RichTextLines with another instance.
268 self._lines.extend(other.lines)
406 new_screen_output.font_attr_segs[i].extend(match_segs)
503 out.lines.extend(wlines)
681 lines.extend(traceback.format_exc().split("\n"))
720 help_info.extend(self._help_intro)
727 help_info.extend(RichTextLines(lines))
902 self._comp_dict[context_word].extend(new_comp_items)
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkNotificationManager.java 229 builder.extend(new Notification.TvExtender().setChannelId(channelId));
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationTest.java 79 nb.extend(new Notification.CarExtender().setColor(Color.RED));
80 nb.extend(new Notification.TvExtender().setChannelId("different channel"));
81 nb.extend(new Notification.WearableExtender().setDismissalId("dismiss"));
105 nb.extend(new Notification.CarExtender().setColor(Color.RED));
106 nb.extend(new Notification.TvExtender().setChannelId("different channel"));
107 nb.extend(new Notification.WearableExtender().setDismissalId("dismiss"));
156 nb.extend(new Notification.CarExtender().setColor(Color.RED));
157 nb.extend(new Notification.TvExtender().setChannelId("different channel"));
158 nb.extend(new Notification.WearableExtender().setDismissalId("dismiss"));
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_abcoll.py 648 def extend(self, values): member in class:MutableSequence
649 'S.extend(iterable) -- extend sequence by appending elements from the iterable'
668 self.extend(values)
  /prebuilts/gdb/linux-x86/lib/python2.7/
_abcoll.py 648 def extend(self, values): member in class:MutableSequence
649 'S.extend(iterable) -- extend sequence by appending elements from the iterable'
668 self.extend(values)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_abcoll.py 648 def extend(self, values): member in class:MutableSequence
649 'S.extend(iterable) -- extend sequence by appending elements from the iterable'
668 self.extend(values)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_abcoll.py 648 def extend(self, values): member in class:MutableSequence
649 'S.extend(iterable) -- extend sequence by appending elements from the iterable'
668 self.extend(values)
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
FileUseMap.java 168 * <p>The entry cannot extend beyong the end of the map. If necessary, extend the map using
169 * {@link #extend(long)}.
353 void extend(long size) { method in class:FileUseMap
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
NotificationPresets.java 109 builder.extend(wearableOptions);
163 builder.extend(wearableOptions);
195 builder.extend(wearableOptions);
220 builder.extend(wearableOptions);
243 builder.extend(wearableOptions);
265 secondPageBuilder.extend(new NotificationCompat.WearableExtender()
269 builder.extend(wearableOptions);
290 .extend(new NotificationCompat.WearableExtender()
297 .extend(new NotificationCompat.WearableExtender()
302 builder.extend(wearableOptions)
    [all...]
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java 391 .extend(new NotificationCompat.WearableExtender()
396 builder.extend(new NotificationCompat.WearableExtender().addPages(pages));
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
NotificationPresets.java 109 builder.extend(wearableOptions);
163 builder.extend(wearableOptions);
195 builder.extend(wearableOptions);
220 builder.extend(wearableOptions);
243 builder.extend(wearableOptions);
265 secondPageBuilder.extend(new NotificationCompat.WearableExtender()
269 builder.extend(wearableOptions);
290 .extend(new NotificationCompat.WearableExtender()
297 .extend(new NotificationCompat.WearableExtender()
302 builder.extend(wearableOptions)
    [all...]

Completed in 881 milliseconds

1 23 4 5 6 7 8 91011>>