HomeSort by relevance Sort by last modified time
    Searched refs:character (Results 126 - 150 of 548) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/v8/src/
uri.h 175 uint16_t character = vector[i]; local
178 if (character == '%' &&
187 } else if (character == '%' &&
195 return character;
debug-agent.cc 264 char c = '\0'; // One character receive buffer.
265 char prev_c = '\0'; // Previous character.
276 // Add character to header buffer.
398 uint16_t character = message[i]; local
399 utf8_len += unibrow::Utf8::Length(character, previous);
400 previous = character;
420 // Write next UTF-8 encoded character to buffer.
421 uint16_t character = message[i]; local
423 unibrow::Utf8::Encode(buffer + buffer_position, character, previous);
426 // Send buffer if full or last character is encoded
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CTableCombo.java 240 e.character = event.character;
247 if (event.character == SWT.ESC) {
251 if (event.character == SWT.CR || event.character == '\t') {
266 e.character = event.character;
369 if (event.character == SWT.ESC) { // escape key cancels popup
372 if (event.character == SWT.CR) {
384 if (event.character == '+')
    [all...]
  /external/llvm/include/llvm/ADT/
Twine.h 103 /// A char value reinterpreted as a pointer, to render as a character.
139 char character; member in union:llvm::Twine::Child
291 LHS.character = Val;
297 LHS.character = static_cast<char>(Val);
303 LHS.character = static_cast<char>(Val);
  /external/sfntly/cpp/src/sample/subtly/
font_assembler.cc 98 // generated by this code without removing any character.
103 int32_t character = it->first; local
105 if (character != last_chararacter + 1) { // new segment
110 // start_code = character
116 Segment(character, -1, 0, last_offset);
120 last_chararacter = character;
font_info.cc 146 fprintf(stderr, "Error creating character map.\n");
180 int32_t character = character_iterator->Next(); local
181 if (!predicate_ || (*predicate_)(character)) {
183 (std::make_pair(character,
184 GlyphId(cmap_->GlyphId(character), font_id_)));
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestWalkingChar.java 81 * A walking animated character followed by a 3rd person camera on a terrain with LOD.
87 //character
88 CharacterControl character; field in class:TestWalkingChar
296 character = new CharacterControl(capsule, 0.01f);
299 model.addControl(character);
300 character.setPhysicsLocation(new Vector3f(-140, 15, -10));
302 getPhysicsSpace().add(character);
339 if (!character.onGround()) {
349 character.setViewDirection(walkDirection);
358 character.setWalkDirection(walkDirection)
    [all...]
  /external/chromium_org/third_party/libxml/src/
triostr.c 654 Find first occurrence of a character in a string.
657 @param character Character to be found.
658 @param A pointer to the found character, or NULL if character was not found.
662 TRIO_ARGS2((string, character),
664 int character)
668 return strchr(string, character);
675 Find last occurrence of a character in a string.
678 @param character Character to be found
    [all...]
  /external/libxml2/
triostr.c 654 Find first occurrence of a character in a string.
657 @param character Character to be found.
658 @param A pointer to the found character, or NULL if character was not found.
662 TRIO_ARGS2((string, character),
664 int character)
668 return strchr(string, character);
675 Find last occurrence of a character in a string.
678 @param character Character to be found
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
cmap_table.h 112 // mapping to the glyph id it isn't always possible to tell if a character
161 // Abstract CMap character iterator
202 // Gets the glyph id for the character code provided.
203 // The character code provided must be in the encoding used by the cmap
205 virtual int32_t GlyphId(int32_t character) = 0;
258 virtual int32_t GlyphId(int32_t character);
298 virtual int32_t GlyphId(int32_t character);
300 // Returns how many bytes would be consumed by a lookup of this character
303 // return the number of bytes consumed from this "character" - either 1 or 2
304 virtual int32_t BytesConsumed(int32_t character);
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.h 112 // mapping to the glyph id it isn't always possible to tell if a character
161 // Abstract CMap character iterator
202 // Gets the glyph id for the character code provided.
203 // The character code provided must be in the encoding used by the cmap
205 virtual int32_t GlyphId(int32_t character) = 0;
258 virtual int32_t GlyphId(int32_t character);
298 virtual int32_t GlyphId(int32_t character);
300 // Returns how many bytes would be consumed by a lookup of this character
303 // return the number of bytes consumed from this "character" - either 1 or 2
304 virtual int32_t BytesConsumed(int32_t character);
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 69 /** What character index in the stream did the current token start at?
75 /** The line on which the first character of the token resides */
78 /** The character position of first character within the line */
  /external/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 14 // non-alphanumeric character with a dot, then fix up the oddly placed dots.
  /external/chromium-libpac/test/js-unittest/
passthrough.js 14 // non-alphanumeric character with a dot, then fix up the oddly placed dots.
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
passthrough.js 14 // non-alphanumeric character with a dot, then fix up the oddly placed dots.
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLSrcsetParser.cpp 45 inline bool isComma(CharType character)
47 return character == ',';
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.cpp 82 // FIXME: The dominant-baseline and the baseline-table components are set by determining the predominant script of the character data content.
155 float SVGTextLayoutEngineBaseline::calculateGlyphOrientationAngle(bool isVerticalText, const SVGRenderStyle* style, const UChar& character) const
163 unsigned int unicodeRange = findCharUnicodeRange(character);
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
charmap.pl 8 # Each set bit represents a character property.
10 # RFC2253 character properties
11 my $RFC2253_ESC = 1; # Character escaped with \
12 my $ESC_CTRL = 2; # Escaped control character
15 my $PSTRING_CHAR = 0x10; # Valid PrintableString character
16 my $RFC2253_FIRST_ESC = 0x20; # Escaped with \ if first character
17 my $RFC2253_LAST_ESC = 0x40; # Escaped with \ if last character
68 * Mask of various character properties
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractComboBoxPropertyEditor.java 130 if (event.character > 0x20 && !(withAlt || withCtrl)) {
132 m_dropDelayedText = "" + event.character;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 25 (* Otherwise, just return the character as its ascii value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 25 (* Otherwise, just return the character as its ascii value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 25 (* Otherwise, just return the character as its ascii value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 25 (* Otherwise, just return the character as its ascii value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 25 (* Otherwise, just return the character as its ascii value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
lexer.ml 25 (* Otherwise, just return the character as its ascii value. *)

Completed in 1403 milliseconds

1 2 3 4 56 7 8 91011>>