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

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
queens.py 31 self.place(x, y)
41 def place(self, x, y): member in class:Queens
  /external/dtc/tests/
sw_tree1.c 88 void *place; local
141 CHECK(fdt_property_placeholder(fdt, "placeholder", place_len, &place));
142 memcpy(place, place_str, place_len);
  /external/libpcap/missing/
getopt.c 66 static char *place = EMSG; /* option letter processing */ local
75 if (optreset || !*place) { /* update scanning pointer */
77 if (optind >= nargc || *(place = nargv[optind]) != '-') {
78 place = EMSG;
81 if (place[1] && *++place == '-') { /* found "--" */
83 place = EMSG;
87 if ((optopt = (int)*place++) == (int)':' ||
95 if (!*place)
104 if (!*place)
    [all...]
  /external/python/cpython2/Demo/scripts/
queens.py 31 self.place(x, y)
41 def place(self, x, y): member in class:Queens
  /external/python/cpython3/Tools/demo/
queens.py 31 self.place(x, y)
41 def place(self, x, y): member in class:Queens
  /external/pdfium/fxbarcode/datamatrix/
BC_DefaultPlacement.cpp 57 void CBC_DefaultPlacement::place() { function in class:CBC_DefaultPlacement
  /system/core/logcat/include/log/
getopt.h 43 const char* place; member in struct:getopt_context
  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 45 /// @param pFragRef [in] the place to apply the relocation
81 Relocation::Address Relocation::place() const { function in class:mcld::Relocation
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
OffsettedItem.java 223 public final int place(Section addedTo, int offset) { method in class:OffsettedItem
  /dalvik/dx/src/com/android/dx/dex/file/
OffsettedItem.java 224 public final int place(Section addedTo, int offset) { method in class:OffsettedItem
  /external/pdfium/core/fpdfdoc/
csection.cpp 34 CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace& place,
37 place.nWordIndex, 0, pdfium::CollectionSize<int32_t>(m_WordArray));
40 return place;
70 CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace& place) const {
71 if (place.nLineIndex < 0)
74 if (place.nLineIndex >= pdfium::CollectionSize<int32_t>(m_LineArray))
77 CLine* pLine = m_LineArray[place.nLineIndex].get();
78 if (place.nWordIndex == pLine->m_LineInfo.nBeginWordIndex)
79 return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1)
128 CPVT_WordPlace place = GetBeginWordPlace(); local
    [all...]
cpdf_variabletext.cpp 95 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) {
97 m_CurPos = place;
201 CPVT_WordPlace place;
202 place.nSecIndex = 0;
203 AddSection(place);
208 AddLine(place, lineinfo);
216 CPVT_WordPlace CPDF_VariableText::InsertWord(const CPVT_WordPlace& place,
221 return place;
223 return place;
225 CPVT_WordPlace newplace = place;
359 CPVT_WordPlace place = GetBeginWordPlace(); local
431 CPVT_WordPlace place = GetBeginWordPlace(); local
882 CPVT_WordPlace place; local
    [all...]
cpvt_generateap.cpp 102 CPVT_WordPlace place = pIterator->GetWordPlace(); local
104 if (place.LineCmp(oldplace) != 0) {
140 oldplace = place;
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 107 static char *place = EMSG; /* option letter processing */ variable
202 current_argv = place;
391 if (optreset || !*place) { /* update scanning pointer */
394 place = EMSG;
411 if (*(place = nargv[optind]) != '-' ||
413 place[1] == '\0') {
415 (place[1] == '\0' && strchr(options, '-') == NULL)) {
417 place = EMSG; /* found non-option */
453 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 59 enum place { _ }; enum in namespace:ParameterPackExpansions
60 template<place...> struct places {};
63 template<place...X1, place...X2>
75 template<place> struct inner { typedef T type; };
79 template<place...X> struct takedrop_impl<places<X...>> {
81 template<place > class ...Drop>
  /external/mesa3d/src/getopt/
getopt_long.c 84 static char *place = EMSG; /* option letter processing */ variable
166 current_argv = place;
311 if (optreset || !*place) { /* update scanning pointer */
314 place = EMSG;
331 if (*(place = nargv[optind]) != '-' ||
332 (place[1] == '\0' && strchr(options, '-') == NULL)) {
333 place = EMSG; /* found non-option */
369 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /external/tcpdump/missing/
getopt_long.c 92 static const char *place = EMSG; /* option letter processing */ variable
199 current_argv = place;
392 if (!*place) { /* update scanning pointer */
394 place = EMSG;
411 if (*(place = nargv[optind]) != '-' ||
413 place[1] == '\0') {
415 (place[1] == '\0' && strchr(options, '-') == NULL)) {
417 place = EMSG; /* found non-option */
453 if (place[1] != '\0' && *++place == '-' && place[1] == '\0')
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
ia64-opc.c 308 PLACE matches OPCODE and is of type TYPE. */
311 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
313 if (main_table[place].opcode_type != type)
317 if (main_table[place].flags
323 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
338 o2 = elf64_ia64_operands + main_table[place].operands[2];
481 int place = ia64_dis_names[disent].insn_index;
485 if (opcode_verify (opcode, place, type)
533 /* Construct an ia64_opcode entry based on OPCODE, NAME and PLACE. */
536 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind
473 int place = ia64_dis_names[disent].insn_index; local
562 int place = ia64_dis_names[disent].insn_index; local
687 short place; local
    [all...]
m68k-dis.c 215 CODE is a "place to put an argument", or 'x' for a destination
620 val = fetch_arg (buffer, place, size, info); \
639 int place = d[1];
788 if (place == 'h')
856 if (place == 'k')
861 else if (place == 'C')
875 if (place == 's')
877 else if (place == 'C')
879 else if (place == '8')
881 else if (place == '3'
637 int place = d[1]; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
compat.c 592 int signvalue = 0, place = 0, caps = 0; local
616 convert[place++] =
620 } while (uvalue && (place < 20));
621 if (place == 20)
622 place--;
623 convert[place] = 0;
625 zpadlen = max - place;
626 spadlen = min - PADMAX(max, place) - (signvalue ? 1 : 0);
657 while (place > 0)
658 dopr_outch(buffer, currlen, maxlen, convert[--place]);
    [all...]
  /external/valgrind/exp-sgcheck/
pc_common.c 27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
351 const HChar *place, *legit, *how_invalid; local
387 if (cmp < 0) place = "before";
388 else if (cmp == 0) place = "inside";
389 else place = "after";
404 a, miss_size, place );
420 a, miss_size, place );
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 146 place(child, true);
294 place(v, true);
321 place(v, pt, false); method
332 public void place(View v, boolean animate) { method in class:DessertCaseView
333 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate); method
352 public synchronized void place(View v, Point pt, boolean animate) {
  /toolchain/binutils/binutils-2.27/gas/config/
tc-dlx.c 1004 char *place = fixP->fx_where + fixP->fx_frag->fr_literal; local
1065 number_to_chars_bigendian (place, val, fixP->fx_size);
tc-spu.c 954 char *place = fixP->fx_where + fixP->fx_frag->fr_literal;
1014 md_number_to_chars (place, val, 1);
1018 md_number_to_chars (place, val, 2);
1023 md_number_to_chars (place, val, 4);
1027 md_number_to_chars (place, val, 8);
1097 place[0] = (place[0] & (~mask >> 24)) | ((res >> 24) & 0xff);
1098 place[1] = (place[1] & (~mask >> 16)) | ((res >> 16) & 0xff);
1099 place[2] = (place[2] & (~mask >> 8)) | ((res >> 8) & 0xff)
952 char *place = fixP->fx_where + fixP->fx_frag->fr_literal; local
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
tlan.c 921 u8 place; local
928 for (place = 0x80; place != 0; place >>= 1) {
929 if (place & data)
978 u8 place; local
987 for (place = 0x80; place; place >>= 1) {
990 *data |= place;
    [all...]

Completed in 792 milliseconds

1 2 3 4 5 6 7